Add config option to use long platform names

This PR includes a few options to support the auto-configuration of
platform name filters...first, it makes the update of platform names in
the database unconditional for all games.  I only have about 50 titles
in my library and I did not see a significant performance impact from
this, but testing would be appreciated from somebody with a larger
library.

Second, it adds a system config option to use long platform names
(Manufacturer - System) style instead of the official platform names.  A
hardcoded list of platform names is included for the most common
systems.  This option is off by default.

Thirdly there is a small change in gui/widgets/sidebar.py that I had to
make, but I'm not sure the full consequences of.  It constructs the
unfiltered list of platforms only out of the active platform names.  The
only possible negative effect I can think of is that when adding a game
that is the first on a new platform, it won't show up in the filter list
until the next application restart.

Lastly I renamed some icons and made the old names into symlinks in
order to support multiple naming conventions for the same platform.  I'm
using the short version (no manufacturer name) as the "canonical" style.
This commit is contained in:
matoro 2020-07-04 15:12:08 -06:00 committed by Mathieu Comandon
parent 23d342ab19
commit b11a16e1ea
41 changed files with 2010 additions and 6 deletions

3
.gitignore vendored
View file

@ -30,3 +30,6 @@ venv
.venv
env
.env
# glade recovery files
*.ui~

View file

@ -9,7 +9,8 @@ from gettext import gettext as _
from gi.repository import GLib, GObject, Gtk
from lutris import runtime
# Lutris Modules
from lutris import pga, runtime, settings
from lutris.command import MonitoredCommand
from lutris.config import LutrisConfig
from lutris.database import categories as categories_db
@ -261,9 +262,61 @@ class Game(GObject.Object):
if not self.runner:
logger.warning("Game has no runner, can't set platform")
return
self.platform = self.runner.get_platform()
if not self.platform:
LONG_PLATFORM_OVERRIDES = {
"Odyssey": "Magnavox Odyssey",
"Intellivision": "Mattel Intellivision",
"PC-8000 / PC-8800 series": "NEC PC-88",
"Vectrex": "GCE Vectrex",
"VIC20": "Commodore VIC20",
"CPC": "Amstrad CPC",
"MSX": "Microsoft MSX",
"Nintendo Entertainment System": "Nintendo NES",
"Master System": "Sega Master System",
"PC-98": "NEC PC-98",
"ZX81": "Sinclair ZX81",
"ZX Spectrum (various)": "Sinclair ZX Spectrum",
"Game Boy/Game Boy Color": "Nintendo Game Boy/Game Boy Color",
"Game Gear": "Sega Game Gear",
"Genesis": "Sega Genesis",
"Lynx": "Atari Lynx",
"Neo Geo": "SNK Neo Geo",
"32X": "Sega 32X",
"X68000": "Sharp X68000",
"Super Nintendo Entertainment System": "Nintendo SNES",
"Jaguar": "Atari Jaguar",
"PC-FX": "NEC PC-FX",
"PlayStation": "Sony PlayStation",
"Saturn": "Sega Saturn",
"Virtual Boy": "Nintendo Virtual Boy",
"WonderSwan/Color": "Bandai WonderSwan/WonderSwan Color",
"Dreamcast": "Sega Dreamcast",
"Game Boy Advance": "Nintendo Game Boy Advance",
"Gamecube": "Nintendo Gamecube",
"Neo Geo Pcket (Color)": "SNK Neo Geo Pocket/Neo Geo Pocket Color",
"PlayStation 2": "Sony PlayStation 2",
"Xbox": "Microsoft Xbox",
"DS": "Nintendo DS",
"PlayStation 3": "Sony PlayStation 3",
"PlayStation Portable": "Sony PlayStation Portable",
"Wii": "Nintendo Wii",
"Xbox 360": "Microsoft Xbox 360",
"3DS": "Nintendo 3DS",
"PlayStation Vita": "Sony PlayStation Vita",
"Wii U": "Nintendo Wii U",
"Switch": "Nintendo Switch",
"PlayStation 4": "Sony PlayStation 4",
"Stadia": "Google Stadia",
"Xbox One": "Microsoft Xbox One"
}
platform_name = self.runner.get_platform() # short platform name from official runner
if not platform_name:
logger.warning("Can't get platform for runner %s", self.runner.human_name)
return
if settings.read_setting("use_long_platform_names") == "True":
if platform_name in LONG_PLATFORM_OVERRIDES:
platform_name = LONG_PLATFORM_OVERRIDES.get(platform_name)
self.platform = platform_name
def save(self, save_config=False):
"""

View file

@ -109,6 +109,7 @@ class GameDialogCommon:
prefs_box.pack_start(cache_help_label, False, False, 6)
prefs_box.pack_start(self._get_hide_on_game_launch_box(), False, False, 6)
prefs_box.pack_start(self._get_use_long_platform_names(), False, False, 6)
info_sw = self.build_scrolled_window(prefs_box)
self._add_notebook_tab(info_sw, _("Lutris preferences"))
@ -156,10 +157,23 @@ class GameDialogCommon:
box.pack_start(checkbox, True, True, 0)
return box
def _get_use_long_platform_names(self):
box = Gtk.Box(spacing=12, margin_right=12, margin_left=12)
checkbox = Gtk.CheckButton(label=_("Use long platform names (Manufacturer - System) (requires restart)"))
if settings.read_setting("use_long_platform_names") == "True":
checkbox.set_active(True)
checkbox.connect("toggled", self._on_platform_name_change)
box.pack_start(checkbox, True, True, 0)
return box
def _on_hide_client_change(self, widget):
"""Save setting for hiding the game on game launch"""
settings.write_setting("hide_client_on_game_start", widget.get_active())
def _on_platform_name_change(self, widget):
"""Save setting for using long platform names"""
settings.write_setting("use_long_platform_names", widget.get_active())
def _on_cache_path_set(self, entry):
if self.timer_id:
GLib.source_remove(self.timer_id)

View file

@ -206,7 +206,10 @@ class LutrisSidebar(Gtk.ListBox):
self.add(RunnerSidebarRow(runner_name, "runner", runner.human_name, icon, application=self.application))
self.add(SidebarRow(None, "platform", _("All"), None))
for platform in self.platforms:
# what are the consequences of changing this to only use active platforms?
# maybe the platform list is not automatically updated when a game from a
# new platform is added?
for platform in self.active_platforms:
icon_name = (platform.lower().replace(" ", "").replace("/", "_") + "-symbolic")
icon = Gtk.Image.new_from_icon_name(icon_name, Gtk.IconSize.MENU)
self.add(SidebarRow(platform, "platform", platform, icon))

View file

@ -138,8 +138,8 @@ def fill_missing_platforms():
"""
pga_games = get_games(filters={"installed": 1})
for pga_game in pga_games:
if pga_game.get("platform") or not pga_game["runner"]:
continue
# if pga_game.get("platform") or not pga_game["runner"]:
# continue
game = Game(game_id=pga_game["id"])
game.set_platform_from_runner()
if game.platform:

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="180"
height="180"
version="1.1"
id="svg1113"
sodipodi:docname="nintendo3ds-symbolic.svg"
viewBox="0 0 126 126"
inkscape:version="0.92.3 (2405546, 2018-03-11)">
<metadata
id="metadata1119">
<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="defs1117" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1868"
inkscape:window-height="1015"
id="namedview1115"
showgrid="false"
scale-x="0.7"
inkscape:zoom="3.3714851"
inkscape:cx="113.15822"
inkscape:cy="59.775442"
inkscape:window-x="49"
inkscape:window-y="28"
inkscape:window-maximized="0"
inkscape:current-layer="svg1113" />
<g
id="g1130"
transform="matrix(0.99298569,0,0,0.99298569,-114.84374,-101.14053)">
<path
inkscape:connector-curvature="0"
style="opacity:0.4"
id="path1085"
d="m 130.6,177 c 0,0.3 -0.3,0.6 -0.6,0.6 h -10.9 c -0.3,0 -0.6,-0.3 -0.6,-0.6 v -7.9 c 0,-0.3 0.3,-0.6 0.6,-0.6 H 130 c 0.3,0 0.6,0.3 0.6,0.6 z m -0.5,-10.9 -11.1,0.001 c -1.6,0 -2.9,1.3 -2.9,2.9 v 7.9 c 0,1.6 1.3,2.9 2.9,2.9 h 11.1 c 1.6,0 2.9,-1.3 2.9,-2.9 v -7.9 c 0,-1.6 -1.3,-2.9 -2.9,-2.9" />
<path
style="opacity:0.6"
inkscape:connector-curvature="0"
id="path1101"
d="m 130.6,161.6 c 0,0.3 -0.3,0.6 -0.6,0.6 h -10.9 c -0.3,0 -0.6,-0.3 -0.6,-0.6 v -7.9 c 0,-0.3 0.3,-0.6 0.6,-0.6 H 130 c 0.3,0 0.6,0.3 0.6,0.6 z m -0.5,-10.9 H 119 c -1.6,0 -2.9,1.3 -2.9,2.9 v 8 c 0,1.6 1.3,2.9 2.9,2.9 h 11.1 c 1.6,0 2.9,-1.3 2.9,-2.9 v -8 c 0,-1.6 -1.3,-2.9 -2.9,-2.9" />
<path
inkscape:connector-curvature="0"
id="path1103"
d="m 213.1,174.2 c 2.6,1 8.2,1.9 12.6,1.9 4.8,0 6.8,-1.6 6.8,-3.7 0,-1.8 -1.8,-2.9 -7.1,-4.9 -7.1,-2.6 -12.2,-4.7 -12.2,-9.3 0,-4.8 6.2,-7.6 15.7,-7.6 5.1,0 6.8,0.3 10.1,0.9 v 4.6 c -3.2,-0.6 -6,-1.6 -10.4,-1.6 -4.7,0 -6.7,1.5 -6.7,3 0,2.2 3.1,3.3 8.5,5.2 7.5,2.7 11.7,4.8 11.7,9.3 0,4.7 -5.2,8 -17.1,8 -4.8,0 -8.2,-0.3 -11.9,-0.9 z" />
<path
inkscape:connector-curvature="0"
id="path1105"
d="m 188,154.6 h -5.6 v 21.3 h 5.6 c 8.6,0 14.1,-3.7 14.1,-10.6 0,-6.9 -5.4,-10.7 -14.1,-10.7 m 15.1,23.3 c -2.8,1.3 -8,2.1 -12.6,2.1 h -17.6 v -29.3 h 17.6 c 4.6,0 9.9,0.8 12.7,2.1 6.8,3.1 9,7.9 9,12.6 0,4.6 -2.2,9.5 -9,12.6" />
<path
inkscape:connector-curvature="0"
id="path1107"
d="m 160.5,163.9 c 0,0 8.2,-1.3 8.2,-6.4 0,-5 -8.7,-7 -18,-7 -8.4,0 -13.9,1 -13.9,1 v 4.5 c 3.8,-0.9 7.4,-1.7 12.4,-1.7 5.3,0 9.4,1.6 9.4,3.8 0,2.7 -4,4.3 -12.7,4.3 h -4 v 4.1 h 3.7 c 9.1,0 14.3,1.4 14.3,4.7 0,3 -4.6,4.8 -10.4,4.8 -5,0 -9.6,-1.1 -13.4,-2.1 v 4.9 c 1.8,0.3 6.6,1.3 15.4,1.3 9.8,0 18.4,-3.2 18.4,-8.7 0,-4.7 -5.9,-7.4 -9.4,-7.4" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View file

@ -0,0 +1,220 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="577.982px" height="577.981px" viewBox="0 0 577.982 577.981" style="enable-background:new 0 0 577.982 577.981;"
xml:space="preserve">
<g>
<g>
<circle cx="486.701" cy="191.477" r="18.911"/>
<circle cx="534.302" cy="238.466" r="18.911"/>
<path d="M486.095,265.933c-10.429,0-18.911,8.482-18.911,18.911c0,10.428,8.482,18.905,18.911,18.905
c10.422,0,18.904-8.482,18.904-18.905S496.517,265.933,486.095,265.933z"/>
<path d="M72.046,224.114c21.53,0,39.045-17.515,39.045-39.045s-17.515-39.045-39.045-39.045S33,163.539,33,185.069
S50.522,224.114,72.046,224.114z"/>
<path d="M438.494,256.765c10.422,0,18.904-8.482,18.904-18.905s-8.482-18.911-18.904-18.911c-10.429,0-18.911,8.482-18.911,18.911
C419.583,248.289,428.065,256.765,438.494,256.765z"/>
<path d="M112.328,568.598c12.815-43.023,10.985-43.023,17.393-58.582c6.408-15.562,19.223-16.475,35.698-20.135
c15.404-3.42,72.418-11.646,114.934-12.699c0.006,0.117-0.018,0.221-0.012,0.338c1.542,27.191,3.079,54.383,4.621,81.566
c0.888,15.691,25.374,15.777,24.48,0c-1.542-27.191-3.078-54.381-4.62-81.566c0-0.031-0.013-0.062-0.013-0.092
c41.519,1.707,93.208,9.217,107.761,12.453c16.476,3.66,29.291,4.578,35.698,20.135c6.407,15.564,4.578,15.564,17.394,58.582
c12.814,43.018,69.554-66.818,95.184-228.834c25.631-162.014-11.848-224.91-22.222-230.405
c-10.373-5.49-79.382-20.404-79.382-20.404c-18.269-23.911-37.871-41.377-57.039-54.199v181.14
c0,53.85-43.807,97.657-97.656,97.657h-21.524c-53.85,0-97.657-43.808-97.657-97.657V28.728
C163.21,41.922,140.07,61.047,118.742,88.96c0,0-69.009,14.908-79.382,20.404c-10.374,5.49-47.853,68.385-22.222,230.405
C42.762,501.779,99.513,611.621,112.328,568.598z M486.095,309.867c-13.801,0-25.031-11.223-25.031-25.024
c0-13.801,11.23-25.031,25.031-25.031c13.8,0,25.024,11.224,25.024,25.031C511.12,298.645,499.895,309.867,486.095,309.867z
M534.302,213.435c13.801,0,25.03,11.224,25.03,25.031c0,13.801-11.229,25.025-25.03,25.025s-25.031-11.224-25.031-25.025
S520.501,213.435,534.302,213.435z M486.701,166.446c13.801,0,25.031,11.224,25.031,25.031c0,13.8-11.23,25.024-25.031,25.024
s-25.03-11.224-25.03-25.024C461.676,177.676,472.9,166.446,486.701,166.446z M438.494,212.829
c13.801,0,25.024,11.224,25.024,25.031c0,13.801-11.224,25.025-25.024,25.025s-25.031-11.224-25.031-25.025
C413.469,224.053,424.699,212.829,438.494,212.829z M262.066,444.875l28.458-48.342c1.408-2.418,5.056-2.441,6.5-0.006
l28.451,48.342c0.729,1.242,0.759,2.662,0.099,3.818c-0.655,1.15-1.91,1.842-3.33,1.842h-56.928c-1.426,0-2.674-0.691-3.335-1.842
C261.313,447.531,261.35,446.105,262.066,444.875z M126.055,273.546c2.699,0,4.896,2.191,4.896,4.89v26.23h26.23
c2.693,0,4.89,2.191,4.89,4.891v23.801c0,2.697-2.191,4.889-4.89,4.889h-26.23v26.23c0,2.693-2.191,4.891-4.896,4.891h-23.801
c-2.692,0-4.89-2.191-4.89-4.891v-26.23h-26.23c-2.693,0-4.89-2.191-4.89-4.889v-23.801c0-2.693,2.191-4.891,4.89-4.891h26.23
v-26.23c0-2.699,2.191-4.89,4.89-4.89H126.055z M72.046,139.903c24.902,0,45.166,20.263,45.166,45.166
s-20.263,45.166-45.166,45.166s-45.166-20.263-45.166-45.166S47.144,139.903,72.046,139.903z"/>
<polygon points="72.364,332.127 103.485,332.127 103.485,363.246 124.825,363.246 124.825,332.127 155.945,332.127
155.945,310.785 124.825,310.785 124.825,279.666 103.485,279.666 103.485,310.785 72.364,310.785 "/>
<polygon points="293.78,403.062 269.441,444.41 318.12,444.41 "/>
<path d="M236.974,102.559c0.838,0,1.818-0.043,2.687-0.135c0.869-0.092,1.481-0.397,2.167-0.636
c0.686-0.239,1.377-0.643,2.02-1.261c0.637-0.618,1.157-1.316,1.548-2.099c0.392-0.784,0.673-1.659,0.845-2.632
c0.171-0.967,0.239-1.952,0.196-2.95c-0.042-1.12-0.343-1.953-0.648-2.907c-0.306-0.955-0.881-2.154-1.671-2.803
c-0.869-0.716-1.493-1.224-2.387-1.481c-0.894-0.251-2.154-0.637-3.599-0.637c-0.881,0-2.05,0.062-2.62,0.128
c-0.593,0.074-1.138,0.147-1.885,0.159l0.196,17.228C234.985,102.571,235.977,102.559,236.974,102.559z"/>
<path d="M271.521,94.181c-0.031-0.624,0-0.416-0.073-0.765c-0.074-0.343-0.166-0.618-0.349-0.991
c-0.184-0.367-0.502-0.624-0.795-0.894c-0.294-0.27-0.643-0.478-1.053-0.618c-0.404-0.147-1.01-0.22-1.475-0.22
c-0.501,0-0.948,0.153-1.395,0.312s-0.838,0.374-1.175,0.649c-0.336,0.275-0.618,0.6-0.844,0.967
c-0.227,0.367-0.392,0.729-0.496,1.071c-0.042,0.135-0.049,0.147-0.042,0.153c0.006,0.006,0.03-0.012-0.025,0.336H271.521z"/>
<path d="M364.98,124.817h-142.4V250.92h142.4V124.817z M356.724,242.125c0,0.985-0.796,1.781-1.781,1.781H232.617
c-0.979,0-1.781-0.796-1.781-1.781V133.612c0-0.985,0.795-1.781,1.781-1.781h122.326c0.985,0,1.781,0.795,1.781,1.781V242.125
L356.724,242.125z"/>
<path d="M284.729,95.637c-0.3,0.27-0.441,0.343-0.587,0.453c-0.147,0.11-0.361,0.171-0.551,0.269
c-0.19,0.092-0.447,0.116-0.68,0.202c-0.226,0.085-1.022,0.11-1.346,0.153c-0.691,0.086-1.15,0.159-1.426,0.27
c-0.6,0.214-0.955,0.275-1.298,0.496c-0.342,0.22-0.612,0.551-0.838,0.808c-0.227,0.257-0.312,0.49-0.404,0.747
c-0.104,0.318-0.092,0.655-0.073,0.998c0.018,0.538,0.434,1.132,0.734,1.523c0.293,0.398,0.3,0.257,0.679,0.526
c0.379,0.263,0.918,0.404,1.518,0.404c0.374,0,0.759-0.031,1.157-0.092c0.306-0.043,0.637-0.239,1.096-0.392
c0.146-0.049,0.489-0.361,0.655-0.422c0,0,0.422-0.342,0.844-1.077c0.422-0.734,0.508-1.952,0.508-1.952L284.729,95.637z"/>
<path d="M335.004,95.454c-0.294,0.27-0.44,0.349-0.588,0.459c-0.146,0.11-0.379,0.153-0.569,0.251
c-0.189,0.092-0.428,0.135-0.66,0.22c-0.227,0.086-1.022,0.11-1.347,0.153c-0.691,0.085-1.15,0.159-1.426,0.269
c-0.6,0.22-0.961,0.282-1.304,0.496c-0.343,0.221-0.618,0.551-0.845,0.808c-0.227,0.257-0.318,0.489-0.404,0.747
c-0.104,0.318-0.085,0.655-0.073,1.003c0.019,0.533,0.435,1.132,0.734,1.524c0.3,0.398,0.3,0.257,0.686,0.526
c0.38,0.263,0.918,0.404,1.524,0.404c0.373,0,0.759-0.03,1.162-0.092c0.307-0.042,0.643-0.245,1.096-0.392
c0.146-0.049,0.489-0.361,0.655-0.422c0,0,0.422-0.343,0.844-1.077c0.423-0.729,0.509-1.953,0.509-1.953L335.004,95.454z"/>
<path d="M283.015,307.438h21.523c50.558,0,91.537-40.985,91.537-91.536v-6.089V30.765C351.057,2.791,309.497,0,294.698,0
c-3.69,0-5.71,0.171-5.71,0.171S286.962,0,283.278,0c-13.733,0-50.551,2.405-91.8,25.153v184.628v6.12
C191.478,266.453,232.464,307.438,283.015,307.438z M349.521,89.26l1.806-0.061c0.018-0.379-0.031-1.567-0.031-2.497
c0-0.453-0.227-0.869-0.41-1.096c0.82-0.184,2.069-0.563,2.638-0.728c-0.006,1.469,0.099,3.556,0.117,4.321l3.684,0.055
c-0.019,0.63,0.049,0.851,0.062,1.419l-1.016-0.122h-2.705l-0.05,8.103l-0.024,0.679c0.024,0.723,0.123,1.641,0.282,2.001
c0.159,0.361,0.385,0.496,0.679,0.655c0.3,0.159,0.637,0.196,0.949,0.196c0.22,0,0.551-0.006,0.808-0.006s0.435-0.019,1.071-0.202
c-0.08,0.478-0.209,0.741-0.294,1.536c-0.588,0.166-0.857,0.208-1.206,0.245c-0.349,0.043-0.679-0.067-0.997-0.067
c-0.777,0-1.414-0.11-1.903-0.337c-0.49-0.22-0.869-0.575-1.139-1.071c-0.275-0.49-0.465-1.708-0.496-2.552
c-0.006-0.11-0.006-0.3-0.012-0.575c0-0.275-0.019-0.551,0-2.197l-0.056-6.402h-1.774C349.527,90.16,349.527,90.038,349.521,89.26
z M346.589,98.569c-0.135-0.184-0.643-0.618-0.899-0.838c-0.257-0.227-0.937-0.557-1.824-0.924
c-0.899-0.379-2.044-0.74-2.46-1.089c-0.416-0.355-1.175-0.759-1.475-1.132c-0.3-0.373-0.526-0.74-0.68-1.12
c-0.153-0.374-0.043-0.943-0.055-1.328c-0.024-0.618,0.36-1.254,0.728-1.836c0.361-0.575,0.992-0.9,1.714-1.188
c0.723-0.281,1.579-0.428,2.564-0.428c1.102,0,2.166,0.214,3.501,0.471c0.073,0.753-0.099,1.273-0.007,1.897
c-0.961-0.636-2.025-0.955-3.072-0.955c-0.568,0-1.145,0.086-1.621,0.233c-0.478,0.146-1.01,0.624-1.218,0.918
c-0.215,0.3-0.331,0.581-0.318,0.936c0.006,0.233,0.079,0.618,0.165,0.833c0.086,0.214,0.648,0.808,0.942,0.937
c0.404,0.177,0.245,0.153,0.612,0.232c0.416,0.092,1.444,0.618,2.423,1.083c1.017,0.483,1.946,1.089,2.265,1.408
c0.324,0.318,0.637,0.759,0.931,1.438c0.165,0.38,0.257,0.826,0.257,1.145c0,0.551-0.146,0.625-0.129,0.967
c0.031,0.673-0.141,0.924-0.514,1.5c-0.373,0.576-1.071,1.126-1.849,1.444c-0.777,0.318-1.604,0.582-2.576,0.582
c-0.416,0-1.377,0.049-1.934-0.006c-0.558-0.049-1.035-0.239-1.427-0.312c-0.392-0.073-0.643-0.092-1.224-0.232l-0.202-0.985
c-0.006-0.116-0.263-0.771-0.373-1.396c1.646,0.906,3.385,1.542,4.633,1.542c0.654,0,1.304-0.19,1.75-0.361
c0.447-0.171,0.882-0.489,1.096-0.826c0.208-0.336,0.44-0.661,0.521-1.016c0.049-0.196,0.11-0.459,0.061-0.637
C346.828,99.315,346.724,98.752,346.589,98.569z M260.451,43.287c0.324-2.111,0.955-4.223,1.364-5.673
c0.973-3.47,3.581-8.672,4.841-10.429s1.762-2.295,3.592-4.339c1.83-2.044,0.783-0.637,4.174-3.421
c3.384-2.785,7.938-4.78,9.933-5.587c1.995-0.814,5.037-2.301,10.521-2.668s8.794,0.312,11.854,0.667
c3.586,0.417,10.435,2.754,10.435,2.754s3.996,1.805,7.093,3.837c1.671,1.004,3.158,2.987,4.676,4.927
c2.087,2.668,4.131,6.028,4.425,6.505c0.508,0.814,2.778,4.908,3.256,6.426c0.478,1.518,1.542,7.117,1.628,7.729
c0.086,0.612,0.937,4.051-2.001,4.253c-3.22,0.22-3.55-3.066-3.758-4.002c-0.214-0.942-2.387-8.158-3.14-9.517
c-0.753-1.359-5.264-7.962-7.265-10.135c-2.001-2.173-5.894-4.951-10.141-6.255c-4.063-1.254-10.961-2.479-15.6-2.276
c-4.076,0.177-5.416,0.459-7.191,1.022c-3.629,1.157-6.812,2.993-9.015,4.382c-2.203,1.383-5.899,4.357-7.515,6.383
c-1.916,2.405-5.166,8.354-5.888,11.64c-1.334,6.114-0.502,12.014-0.502,12.014s1.506,11.579,9.015,17.521
c2.938,2.332,5.336,3.562,12.02,5.379c0.937,0.257,3.978,0.471,7.778,0.496c3.801,0.019,4.957-0.11,7.124-0.869
c2.16-0.759,2.852-0.894,4.504-1.75c1.659-0.857,4.505-1.799,7.559-4.811c1.707-1.689,3.837-5.006,4.719-8.329
c0.514-1.946,0.189-2.552,0.122-5.104c-0.019-0.783-0.092-1.493-0.153-2.167c-0.146-1.524-0.397-2.938-0.93-5.178
c-0.771-3.231-0.539-2.387-1.292-4.449c-0.52-1.42-1.107-2.577-1.523-3.25c-0.416-0.673-0.814-1.12-1.273-1.818
c-3.17-4.841-9.431-8.011-15.232-8.201c-1.934-0.067-4.314,0.135-6.714,0.894c-1.628,0.514-3.268,1.346-4.786,2.271
c-0.63,0.379-1.23,0.673-1.812,1.132c-0.587,0.471-0.942,0.606-1.462,1.157c-0.471,0.501-1.114,1.628-1.5,2.136
c-4.725,6.065-3.629,11.689-3.629,11.689s-0.44,13.207,13.52,14.646c3.525,0.171,9.89-2.087,12.301-4.67
c1.481-1.591,1.585-4.437,1.536-6.964c-0.036-2.001-1.016-5.551-2.552-6.922c-3.342-2.98-6.12-3.072-7.576-3.158
c-1.94-0.123-4.7,0.477-5.79,4.725c-0.38,1.475,0.777,4.547,2.962,4.982c1.879,0.379,3.88,0,4.762,0.128
c0.783,0.11,1.971-0.153,1.971,2.313c-0.221,4.321-9.633,1.903-9.737,1.812c-0.722-0.624-4.969-3.042-5.134-7.631
c-0.178-4.847,2.099-8.507,6.236-10.576c1.041-0.52,2.956-0.783,4.254-0.838c3.524,0.171,6.021,0.63,8.604,2.02
c0.483,0.263,0.979,0.477,1.512,0.838c0.165,0.11,0.802,0.557,0.899,0.618c3.023,2.601,4.284,6.035,4.884,9.499
c0.238,1.377,0.232,2.662,0.275,3.678c0.08,1.738-0.122,3.843-1.01,5.82c-0.942,2.112-2.638,4.082-5,5.318
c-2.295,1.2-5.643,3.103-10.264,3.672c-2.784,0.342-6.021,0.287-9.773-0.924c-10.643-3.439-11.646-15.514-11.646-15.514
s-2.173-8.898,3.69-16.916c0.618-0.844,1.322-1.928,2.129-2.735c2.644-2.644,5.012-4.015,7.185-5.166
c3.99-2.111,6.916-2.595,7.779-2.595c0.618,0,2.093-0.085,3.824,0.043c1.983,0.141,4.309,0.526,6.065,0.955
c1.928,0.471,3.537,0.851,4.792,1.383c1.188,0.508,2.038,1.175,2.968,1.744c1.922,1.169,4.982,3.488,6.017,5.055
c1.07,1.628,2.589,3.715,3.77,7.387c0.691,2.154,1.273,5.232,1.983,8.703c1.064,5.196,0.679,10.447-0.502,13.764
c-0.129,0.355-1.451,4.566-5.637,8.513c-4.187,3.954-9.455,6.193-11.016,6.817c-1.567,0.625-3.795,2.521-12.332,2.381
c-7.387-0.123-12.987-2.081-14.651-2.754c-1.665-0.673-6.059-2.068-10.833-7.319c-4.773-5.257-5.814-8.648-6.573-10.949
c-0.759-2.301-2.191-8.195-2.191-8.195s0.171-0.024-0.171-3.066C260.163,46.836,260.181,45.062,260.451,43.287z M334.276,102.675
c-0.465,0.386-0.937,0.673-1.236,0.857c-0.637,0.134-1.021,0.281-1.426,0.312c-0.404,0.037-0.783,0.049-1.15,0.049
c-1.212,0-2.1-0.367-2.791-0.686c-0.691-0.318-1.261-0.875-1.622-1.523c-0.36-0.649-0.44-1.243-0.471-2.008
c-0.019-0.446,0.11-0.905,0.22-1.279c0.104-0.379,0.251-0.716,0.447-1.022c0.189-0.306,0.33-0.539,0.691-0.851
c0.361-0.306,0.575-0.478,0.979-0.673c0.403-0.202,0.777-0.288,1.315-0.483c0.539-0.196,1.524-0.263,2.785-0.441
c0.385-0.098,0.71-0.073,0.979-0.177c0.27-0.104,0.509-0.208,0.717-0.306c0.208-0.098,0.385-0.214,0.538-0.349
s0.294-0.3,0.416-0.49c0.129-0.196,0.215-0.141,0.27-0.336c0.055-0.196,0.024-0.294,0.019-0.496
c-0.019-0.489-0.043-0.765-0.337-1.107s-0.637-0.833-1.102-0.967c-0.459-0.141-1.23-0.361-1.849-0.361
c-0.575,0-1.046,0.073-1.646,0.178c-0.6,0.104-1.114,0.232-1.549,0.373c-0.429,0.147-0.918,0.361-1.561,0.649
c0.062-0.435,0.013-1.065,0.062-1.922c1.053-0.306,1.609-0.453,2.387-0.563s1.928-0.178,2.674-0.178
c0.796,0,1.292,0.171,1.995,0.337c0.698,0.165,1.586,0.777,1.91,1.261c0.336,0.496,0.648,0.856,0.819,1.334
c0.172,0.478,0.404,1.42,0.429,1.958c0.024,0.679,0.062,0.239,0.037,1.842c-0.024,1.609,0.073,4.547,0.061,5.912
c-0.006,0.833,0.099,0.912,0.318,2.038c-0.483-0.019-1.102,0.024-1.401,0.024c-0.287,0-0.71-0.043-1.236-0.024v-1.53
C334.974,102.033,334.741,102.29,334.276,102.675z M315.121,99.297c0.336,0.838,0.899,1.659,1.683,2.118s1.701,0.906,2.662,0.906
c0.931,0,2.889-0.098,5.013-1.224c-0.013,0.159-0.098,0.514-0.153,0.942c-0.055,0.435-0.178,0.796-0.214,1.212
c-0.637,0.166-1.31,0.349-1.903,0.41c-0.588,0.061-2.197,0.165-2.644,0.165c-0.949,0-2.051-0.196-2.864-0.483
c-0.814-0.288-1.83-0.832-2.448-1.487c-0.624-0.655-1.328-1.31-1.646-2.283s-0.545-1.909-0.581-2.993
c-0.056-1.457,0.177-1.946,0.587-3.25c0.404-1.31,1.438-2.252,2.394-2.993c0.954-0.741,3.164-1.371,4.859-1.371
c1.248,0,2.711,0.208,3.91,0.575c0.086,0.851,0.116,1.31,0.178,1.861c-0.845-0.3-1.616-0.649-2.148-0.753
s-1.199-0.202-1.652-0.202c-0.771,0-2.411,0.343-3.011,0.655c-0.6,0.318-1.102,0.765-1.512,1.353
c-0.41,0.581-0.734,1.395-0.894,2.197s-0.221,0.869-0.189,1.702C314.588,97.479,314.778,98.458,315.121,99.297z M308.223,94.034
c-0.019-0.575-0.189-1.224-0.306-1.548c-0.116-0.324-0.704-0.924-0.949-1.187c-0.244-0.263-0.611-0.312-0.961-0.447
c-0.349-0.135-0.911-0.166-1.353-0.166c-0.354,0-0.802,0.062-1.095,0.147c-0.275,0.086-0.551,0.147-0.809,0.331
c-0.281,0.189-0.532,0.3-0.752,0.575c-0.221,0.27-0.398,0.575-0.545,0.912c-0.153,0.349-0.159,0.869-0.189,1.432
c-0.037,0.606,0.03,1.383,0.012,2.252c-0.024,0.918-0.024,4.56,0,6.065l0.422,1.346c-0.514-0.018-1.272-0.03-1.529-0.03
c-0.239,0-0.894,0.006-1.457,0.03c0.043-1.224,0.19-0.11,0.196-1.407l0.024-5.594c0-1.108-0.013-2.057-0.043-2.833
c-0.019-0.508-0.079-0.686-0.184-1.041c-0.098-0.355-0.275-0.802-0.532-1.096c-0.251-0.293-0.808-0.765-1.15-0.918
c-0.35-0.153-0.839-0.269-1.268-0.269c-0.452,0-0.746,0.049-1.138,0.22s-0.734,0.251-1.059,0.594
c-0.318,0.336-0.588,0.373-0.796,0.869c-0.208,0.489-0.367,0.385-0.459,1.181c-0.098,0.795-0.141,3.69-0.135,5.667
c0.006,1.169,0.019,2.228,0.037,3.183c0.012,0.654,0.281,0.887,0.306,1.444c-0.569-0.018-1.212-0.03-1.42-0.03
c-0.232,0-1.01,0.006-1.585,0.03l0.318-1.028c0.012-0.453,0.019-1.922,0.024-2.901l-0.147-8.292
c-0.018-0.741-0.416-1.628-0.435-2.014c0.41,0.012,1.335-0.135,1.763-0.294c0.343-0.128,0.729-0.128,1.09-0.141l-0.006,1.928
c0.275-0.557,0.776-0.612,1.01-0.942c0.232-0.324,0.471-0.312,0.856-0.587s0.624-0.288,1.139-0.361
c0.63-0.092,1.027-0.123,1.572-0.123c0.38,0,0.753,0.049,1.126,0.147c0.374,0.098,0.717,0.239,1.041,0.417
c0.318,0.177,0.594,0.379,0.826,0.605c0.232,0.227,0.483,0.349,0.691,0.741c0.073,0.128,0.637-0.624,1.426-1.083
c0.79-0.453,1.72-0.802,2.711-0.802c0.637,0,2.057,0.085,2.662,0.312c0.606,0.227,1.463,0.557,1.836,0.979
c0.367,0.429,0.478,0.618,0.809,0.967c0.41,0.435,0.538,1.53,0.562,1.995c0.019,0.477,0.067,1.199,0.067,2.16l0.006,6.818
c0,0.655,0.19,0.734,0.312,1.481c-0.471-0.019-1.083-0.031-1.353-0.031c-0.281,0-0.955,0.006-1.506,0.031
c0.367-1.169,0.294-0.771,0.325-1.487l0.024-6.181C308.253,95.19,308.248,94.676,308.223,94.034z M284.006,102.865
c-0.459,0.386-0.937,0.667-1.23,0.857c-0.637,0.135-1.016,0.282-1.42,0.312c-0.404,0.031-0.79,0.049-1.151,0.049
c-1.206,0-2.093-0.367-2.784-0.686c-0.692-0.318-1.255-0.875-1.616-1.524c-0.361-0.648-0.441-1.242-0.471-2.007
c-0.019-0.447,0.116-0.906,0.22-1.279c0.104-0.374,0.251-0.716,0.44-1.022c0.19-0.306,0.331-0.539,0.692-0.844
c0.361-0.306,0.575-0.478,0.979-0.673s0.771-0.288,1.31-0.483c0.539-0.19,1.524-0.263,2.778-0.441
c0.38-0.098,0.71-0.073,0.979-0.177c0.269-0.104,0.508-0.208,0.716-0.306c0.208-0.098,0.386-0.214,0.539-0.349
c0.153-0.135,0.294-0.3,0.417-0.49c0.128-0.196,0.214-0.263,0.269-0.459s0.024-0.294,0.019-0.496
c-0.019-0.49-0.043-0.637-0.337-0.985c-0.293-0.349-0.636-0.833-1.095-0.967c-0.459-0.134-1.224-0.361-1.842-0.361
c-0.575,0-1.046,0.074-1.646,0.177c-0.6,0.104-1.114,0.233-1.548,0.374c-0.429,0.147-0.918,0.361-1.561,0.649
c0.062-0.441,0.012-1.065,0.062-1.928c1.046-0.3,1.604-0.453,2.38-0.563c0.777-0.11,1.928-0.177,2.668-0.177
c0.795,0,1.292,0.171,1.989,0.336c0.704,0.166,1.579,0.777,1.904,1.261c0.336,0.496,0.648,0.851,0.82,1.328
c0.165,0.478,0.404,1.42,0.428,1.958c0.025,0.686,0.062,0.239,0.037,1.842c-0.025,1.609,0.073,4.547,0.061,5.912
c-0.006,0.826,0.098,0.912,0.318,2.038c-0.478-0.019-1.096,0.024-1.402,0.024c-0.281,0-0.709-0.043-1.236-0.024v-1.53
C284.698,102.222,284.465,102.479,284.006,102.865z M264.031,99.756c0.422,0.875,0.991,1.438,1.769,1.891
c0.777,0.447,1.805,0.839,2.791,0.839c1.139,0,3.213-0.478,4.915-1.328c-0.085,0.539-0.263,1.242-0.336,2.075
c-0.838,0.238-2.222,0.771-2.84,0.856c-0.618,0.086-1.23,0.104-1.848,0.104c-1.102,0-2.197-0.275-3.084-0.569
c-0.888-0.3-1.775-0.912-2.424-1.652c-0.655-0.735-1.297-1.536-1.603-2.491c-0.312-0.948-0.386-1.909-0.429-2.968
c-0.055-1.475,0.184-2.025,0.637-3.286c0.453-1.261,1.401-2.179,2.387-2.901c0.979-0.722,2.246-1.083,3.794-1.083
c0.802,0,1.713,0.062,2.454,0.325c0.74,0.263,1.365,0.539,1.867,1.071c0.508,0.539,0.93,1.071,1.224,1.86
c0.294,0.79,0.361,0.802,0.526,1.72c0.074,0.429,0.129,1.102,0.092,1.438l-10.49,0.061c-0.012,0.545-0.049,0.814-0.037,1.096
C263.425,97.859,263.608,98.881,264.031,99.756z M252.911,89.468c0.318-0.067,1.102-0.177,1.518-0.189l0.006,2.644
c0.3-0.612,0.318-0.575,0.563-0.881c0.239-0.312,0.624-0.667,0.93-0.869c0.312-0.202,0.649-0.49,1.046-0.606
c0.392-0.117,0.753-0.282,1.188-0.3c0.343-0.012,0.667-0.061,1.548,0.031c0.887,0.092,1.353,0.294,1.548,0.349
c0.019,0.355-0.649,1.989-0.649,1.989s-0.636-0.055-1.211-0.293c-0.551-0.166-0.924-0.166-1.359-0.166
c-0.514,0-1.12,0.116-1.524,0.312c-0.404,0.19-0.79,0.422-1.102,0.814s-0.52,0.796-0.71,1.34
c-0.159,0.441-0.104,0.073-0.165,0.765c-0.067,0.691-0.006,7.326,0.049,8.819l0.263,0.857c-0.483-0.019-1.169,0-1.462,0
c-0.27,0-0.924,0.012-1.469,0.03c0-0.281,0.282-0.673,0.288-0.942c0.067-4.633-0.03-8.213-0.141-11.206l-0.049-1.261l-0.44-1.071
C252.023,89.584,252.629,89.523,252.911,89.468z M234.257,83.244c0.533,0,1.322,0.086,2.436,0.062
c1.114-0.025,2.105,0,2.546,0.042c1.585,0.147,1.989,0.233,3.078,0.502c0.826,0.196,2.393,1.034,3.091,1.53
c0.704,0.496,1.401,1.064,1.97,1.866c0.563,0.802,0.845,1.059,1.224,1.989c0.508,1.261,0.802,2.625,0.851,3.892
c0.067,1.732-0.116,3.06-0.618,4.651c-0.496,1.591-1.603,2.772-2.668,3.837s-2.234,1.708-3.593,2.044
c-1.365,0.336-2.901,0.667-4.596,0.667l-3.991-0.03l-3.8-0.092l0.539-1.42l-0.043-17.528c-0.012-0.508-0.251-1.034-0.501-1.922
C231.38,83.361,233.406,83.244,234.257,83.244z M216.46,251.881V123.856c0-2.846,2.313-5.159,5.159-5.159h144.322
c2.846,0,5.159,2.313,5.159,5.159v128.024c0,2.846-2.313,5.159-5.159,5.159H221.619C218.773,257.04,216.46,254.727,216.46,251.881
z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

View file

@ -0,0 +1,87 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="180mm"
height="180mm"
viewBox="0 0 90.000003 90.000003"
version="1.1"
id="svg338"
sodipodi:docname="nintendods-symbolic.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)">
<defs
id="defs332" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.74564394"
inkscape:cx="692.312"
inkscape:cy="184.09748"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1871"
inkscape:window-height="1015"
inkscape:window-x="49"
inkscape:window-y="28"
inkscape:window-maximized="1"
showguides="false"
scale-x="0.50000003" />
<metadata
id="metadata335">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-117)">
<g
id="layer1-3"
transform="matrix(0.2889468,0,0,0.2889468,-128.00013,69.219459)">
<g
id="g101650"
transform="translate(7.088693,7.080902)">
<path
id="path100608"
style="opacity:0.6;fill-rule:nonzero;stroke:none"
d="m 487.38946,354.59939 c 0,1.07926 -0.88502,2.05058 -1.9751,2.05058 h -37.79667 c -1.10087,0 -1.98589,-0.97132 -1.98589,-2.05058 v -27.30603 c 0,-1.07926 0.88502,-1.94271 1.98589,-1.94271 h 37.79667 c 1.09008,0 1.9751,0.86345 1.9751,1.94271 z m -1.64052,-37.45129 h -38.47662 c -5.56913,0 -10.11293,4.533 -10.11293,10.14526 v 27.41389 c 0,5.5044 4.5438,10.14535 10.11293,10.14535 h 38.47662 c 5.57992,0 10.11293,-4.64095 10.11293,-10.14535 v -27.41389 c 0,-5.61226 -4.53301,-10.14526 -10.11293,-10.14526"
inkscape:connector-curvature="0" />
<path
id="path100646"
style="fill-rule:nonzero;stroke:none;stroke-width:0.05;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
d="m 487.38946,301.28256 c 0,0.97131 -0.88502,1.94271 -1.9751,1.94271 h -37.79667 c -1.10087,0 -1.98589,-0.9714 -1.98589,-1.94271 v -27.41398 c 0,-1.07925 0.88502,-1.94271 1.98589,-1.94271 h 37.79667 c 1.09008,0 1.9751,0.86346 1.9751,1.94271 z m -1.64052,-37.55924 h -38.47662 c -5.56913,0 -10.11293,4.53301 -10.11293,10.14526 v 27.41398 c 0,5.61226 4.5438,10.14526 10.11293,10.14526 h 38.47662 c 5.57992,0 10.11293,-4.533 10.11293,-10.14526 v -27.41398 c 0,-5.61225 -4.53301,-10.14526 -10.11293,-10.14526"
inkscape:connector-curvature="0" />
<path
id="path100656"
style="fill-rule:nonzero;stroke:none;stroke-width:0.05;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
d="m 646.02323,344.66994 c 9.15236,3.66954 28.48239,6.58365 43.57084,6.58365 16.51311,0 23.34504,-5.61234 23.34504,-12.73563 0,-6.47571 -6.34627,-10.14534 -24.57542,-16.83686 -24.38113,-8.95814 -42.26491,-16.08143 -42.26491,-32.16286 0,-16.51303 21.52103,-26.33454 54.32058,-26.33454 17.61397,0 23.658,1.07925 34.83942,3.12991 l 0.0864,15.7576 c -10.98721,-2.05065 -20.72237,-5.61234 -35.8432,-5.61234 -16.21087,0 -23.11836,5.18057 -23.11836,10.46909 0,7.663 10.6418,11.33254 29.30272,18.02414 25.97842,9.28189 40.43009,16.40517 40.43009,32.05483 0,16.18938 -18.09962,27.84567 -58.9183,27.84567 -16.76139,0 -28.32053,-1.07926 -41.17485,-3.23786 v -16.9448"
inkscape:connector-curvature="0" />
<path
id="path100660"
style="fill-rule:nonzero;stroke:none;stroke-width:0.05;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none"
d="m 559.14054,277.10644 h -19.42719 v 73.60752 h 19.42719 c 29.82072,0 48.63272,-12.84357 48.63272,-36.69586 0,-23.8522 -18.812,-36.91166 -48.63272,-36.91166 z m 52.1404,80.40698 c -9.60566,4.3172 -27.78087,7.12329 -43.66799,7.12329 H 506.89219 V 263.3995 h 60.72076 c 15.88712,0 34.06233,2.80617 43.68958,7.12328 23.38818,10.57703 31.00795,27.52192 31.00795,43.49532 0,15.97349 -7.55501,32.91829 -31.02954,43.49532"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

View file

@ -0,0 +1,81 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512.001 512.001" style="enable-background:new 0 0 512.001 512.001;" xml:space="preserve">
<g>
<g>
<path d="M343.832,317.43c-7.227,0-13.093,5.852-13.093,13.093c0,7.227,5.865,13.093,13.093,13.093
c7.24,0,13.093-5.866,13.093-13.093C356.925,323.282,351.072,317.43,343.832,317.43z"/>
</g>
</g>
<g>
<g>
<path d="M310.014,351.248c-7.227,0-13.093,5.865-13.093,13.093s5.865,13.093,13.093,13.093s13.093-5.865,13.093-13.093
S317.241,351.248,310.014,351.248z"/>
</g>
</g>
<g>
<g>
<path d="M391.817,0H120.185c-19.687,0-35.703,16.016-35.703,35.705v440.592c0,19.687,16.016,35.705,35.703,35.705h239.123
c37.612,0,68.212-30.6,68.212-68.214V35.705C427.52,16.016,411.504,0,391.817,0z M401.335,443.786
c0,23.174-18.853,42.029-42.027,42.029H120.185c-5.249,0-9.518-4.271-9.518-9.52V35.705c0-5.249,4.269-9.52,9.518-9.52h271.632
c5.249,0,9.518,4.271,9.518,9.52V443.786z"/>
</g>
</g>
<g>
<g>
<path d="M360.748,60.92H151.253c-7.231,0-13.093,5.863-13.093,13.093v185.915c0,7.23,5.862,13.093,13.093,13.093h209.494
c7.231,0,13.093-5.863,13.093-13.093V74.012C373.84,66.783,367.979,60.92,360.748,60.92z M347.655,246.835H164.346V87.105h183.309
V246.835z"/>
</g>
</g>
<g>
<g>
<path d="M233.095,436.022h-19.128c-7.231,0-13.093,5.863-13.093,13.093s5.862,13.093,13.093,13.093h19.128
c7.231,0,13.093-5.863,13.093-13.093S240.326,436.022,233.095,436.022z"/>
</g>
</g>
<g>
<g>
<path d="M298.049,436.022h-19.128c-7.231,0-13.093,5.863-13.093,13.093s5.862,13.093,13.093,13.093h19.128
c7.231,0,13.093-5.863,13.093-13.093S305.279,436.022,298.049,436.022z"/>
</g>
</g>
<g>
<g>
<path d="M216.729,328.886h-15.711v-15.724c0-7.23-5.862-13.093-13.093-13.093s-13.093,5.863-13.093,13.093v15.724h-15.724
c-7.231,0-13.093,5.863-13.093,13.093s5.862,13.093,13.093,13.093h15.724v15.711c0,7.23,5.862,13.093,13.093,13.093
s13.093-5.863,13.093-13.093v-15.711h15.711c7.231,0,13.093-5.863,13.093-13.093S223.96,328.886,216.729,328.886z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View file

@ -0,0 +1,86 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<g>
<path d="M397.584,0H114.416C98.573,0,85.682,12.891,85.682,28.735v454.531c0,15.844,12.891,28.735,28.735,28.735h283.167
c15.844,0,28.735-12.891,28.735-28.735V28.735C426.318,12.891,413.427,0,397.584,0z M336.457,496.327h-19.644v-16.196H301.14
v16.196h-19.644v-16.196h-15.673v16.196h-19.644v-16.196h-15.673v16.196H210.86v-16.196h-15.673v16.196h-19.644v-30.302
c0-1.441,1.171-2.612,2.612-2.612h155.69c1.441,0,2.612,1.171,2.612,2.612V496.327z M410.645,483.265
c0,7.202-5.859,13.061-13.061,13.061h-45.453v-30.302c0-10.082-8.203-18.286-18.286-18.286h-155.69
c-10.082,0-18.286,8.203-18.286,18.286v30.302h-45.453c-7.202,0-13.061-5.859-13.061-13.061V28.735
c0-7.202,5.859-13.061,13.061-13.061h283.167c7.202,0,13.061,5.859,13.061,13.061V483.265z"/>
</g>
</g>
<g>
<g>
<path d="M111.804,26.122v235.102h288.392V26.122H111.804z M137.927,245.551h-10.449V41.796h10.449V245.551z M358.4,245.551H153.6
V41.796h204.8V245.551z M384.522,245.551h-10.449V41.796h10.449V245.551z"/>
</g>
</g>
<g>
<g>
<path d="M187.559,330.124v-23.51h-52.245v23.51h-23.51v52.245h23.51v23.51h52.245v-23.51h23.51v-52.245H187.559z M195.396,366.695
h-23.51v23.51h-20.898v-23.51h-23.51v-20.898h23.51v-23.51h20.898v23.51h23.51V366.695z"/>
</g>
</g>
<g>
<g>
<path d="M348.215,359.94c-10.188-10.185-26.76-10.184-36.944,0c-10.185,10.186-10.185,26.758,0,36.944
c5.093,5.092,11.782,7.638,18.473,7.638c6.688,0,13.379-2.547,18.472-7.638C358.4,386.699,358.4,370.127,348.215,359.94z
M337.131,385.8c-4.074,4.076-10.704,4.075-14.777,0c-4.074-4.073-4.074-10.703,0-14.777c2.037-2.038,4.713-3.056,7.388-3.056
c2.676,0,5.351,1.019,7.387,3.056C341.205,375.096,341.205,381.726,337.131,385.8z"/>
</g>
</g>
<g>
<g>
<path d="M392.544,315.609c-4.934-4.934-11.493-7.651-18.471-7.651s-13.538,2.718-18.471,7.651
c-4.935,4.934-7.652,11.494-7.652,18.472s2.718,13.538,7.651,18.471c4.934,4.935,11.494,7.652,18.472,7.652
s13.538-2.718,18.471-7.651c4.935-4.934,7.652-11.494,7.652-18.472S397.478,320.544,392.544,315.609z M381.461,341.47
c-1.974,1.974-4.596,3.06-7.387,3.06s-5.415-1.087-7.388-3.062c-1.974-1.974-3.06-4.596-3.06-7.387
c0-2.791,1.087-5.415,3.062-7.388c1.974-1.974,4.596-3.061,7.387-3.061s5.415,1.087,7.387,3.061l0.001,0.001
c1.974,1.974,3.06,4.596,3.06,7.387C384.522,336.872,383.436,339.495,381.461,341.47z"/>
</g>
</g>
<g>
<g>
<rect x="214.204" y="295.184" width="31.347" height="15.673"/>
</g>
</g>
<g>
<g>
<rect x="266.449" y="295.184" width="31.347" height="15.673"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -0,0 +1,184 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="585.781px" height="585.782px" viewBox="0 0 585.781 585.782" style="enable-background:new 0 0 585.781 585.782;"
xml:space="preserve">
<g>
<g>
<path d="M104.653,205.399c-38.115,0-69.119,31.004-69.119,69.119s31.004,69.119,69.119,69.119
c38.109,0,69.113-31.004,69.113-69.119S142.762,205.399,104.653,205.399z M104.653,315.694c-22.699,0-41.169-18.471-41.169-41.176
s18.47-41.175,41.169-41.175c22.699,0,41.169,18.47,41.169,41.175S127.358,315.694,104.653,315.694z"/>
<path d="M104.653,239.469c-19.327,0-35.049,15.722-35.049,35.055c0,19.333,15.722,35.055,35.049,35.055
c19.327,0,35.049-15.723,35.049-35.055C139.702,255.191,123.98,239.469,104.653,239.469z"/>
<path d="M202.065,370.37c0-1.493-1.218-2.711-2.711-2.711H178.57c-1.5,0-2.711,1.218-2.711,2.711v27.889H147.97
c-1.499,0-2.711,1.218-2.711,2.718v20.783c0,1.493,1.218,2.711,2.711,2.711h27.889v27.89c0,1.493,1.218,2.711,2.711,2.711h20.784
c1.5,0,2.711-1.218,2.711-2.711v-27.883h27.889c1.499,0,2.717-1.219,2.717-2.712v-20.789c0-1.5-1.218-2.718-2.717-2.718h-27.889
V370.37z"/>
<path d="M534.253,184.444c0,0-9.241-47.925-77.376-34.07c0,0-39.235-21.389-143.03-24.945
c5.086-25.888,37.21-20.086,54.945-32.706c14.982-10.655,22.571-29.37,20.943-47.369c-1.408-15.588-25.9-15.729-24.48,0
c1.071,11.848-2.595,21.799-12.564,28.893c-9.994,7.111-24.406,4.278-35.221,10.153c-16.261,8.831-25.232,22.889-28.103,40.625
C172.524,126.623,128.9,150.374,128.9,150.374c-68.128-13.855-77.369,34.07-77.369,34.07
C-16.027,229.481,3.606,312.633,3.606,312.633C-3.322,396.937-5.923,552.17,50.375,552.17c56.298,0,56.01-145.424,56.01-145.424
s9.817,16.169,17.32,37.534s63.52,79.683,124.144,15.588c60.631-64.095-23.097-128.189-23.097-128.189v-10.19
c20.208-5.575,68.134-6.554,68.134-6.554s47.926,0.979,68.134,6.554v10.19c0,0-83.728,64.095-23.097,128.189
s116.642,5.777,124.145-15.588c7.503-21.364,17.325-37.534,17.325-37.534s-0.287,145.424,56.011,145.424
s53.703-155.24,46.769-239.543C582.179,312.627,601.812,229.481,534.253,184.444z M362.66,159.456
c1.769-0.037,3.537-0.049,5.3,0.006c1.469,0.043,2.467,1.04,2.497,2.521c0.049,2.423,0.055,4.847,0,7.271
c-0.037,1.634-1.438,2.913-3.201,2.98c-1.346,0.049-2.698,0.049-4.045,0c-1.946-0.067-3.237-1.444-3.25-3.391
c-0.006-1.077,0-2.148,0-3.225c0-1.096,0.056-2.191-0.012-3.281C359.857,160.735,361.381,159.487,362.66,159.456z
M339.281,159.456c2.356,0,4.67-0.024,6.983,0.012c0.777,0.012,1.487,0.324,2.093,0.845c0.521,0.453,0.796,1.01,0.796,1.72
c-0.013,2.423,0.006,4.847-0.019,7.271c-0.006,0.336-0.135,0.734-0.337,0.998c-0.795,1.034-1.737,1.713-3.182,1.646
c-2.087-0.098-4.187-0.025-6.322-0.025C339.281,167.767,339.281,163.642,339.281,159.456z M317.904,159.45
c0.937,0,1.842-0.019,2.748,0.018c0.153,0.006,0.337,0.232,0.435,0.398c1.199,2.099,2.393,4.21,3.586,6.316
c0.104,0.189,0.221,0.373,0.398,0.686c0-2.534,0-4.939,0-7.381c0.789,0,1.523,0,2.288,0c0,4.125,0,8.25,0,12.436
c-0.703,0-1.389,0.024-2.074-0.018c-0.153-0.012-0.33-0.245-0.422-0.417c-1.451-2.668-2.889-5.349-4.333-8.023
c-0.086-0.153-0.178-0.3-0.35-0.6c0,3.097,0,6.035,0,9.015c-0.783,0-1.518,0-2.276,0
C317.904,167.761,317.904,163.648,317.904,159.45z M296.497,161.831c0.012-1.634,0.808-2.387,2.447-2.387c2.167,0,4.34,0,6.506,0
c0.178,0,0.355,0,0.563,0c0,0.667,0,1.279,0,1.971c-0.208,0-0.398,0-0.594,0c-1.641,0-3.28,0-4.921,0
c-1.224,0-1.689,0.459-1.689,1.659c0,0.416,0,0.826,0,1.285c2.424,0,4.786,0,7.191,0c0,0.667,0,1.291,0,1.977
c-2.381,0-4.762,0-7.179,0c0,0.912-0.03,1.769,0.013,2.62c0.024,0.52,0.673,0.991,1.254,0.997c1.769,0,3.538,0,5.3,0
c0.196,0,0.392,0,0.618,0c0,0.661,0,1.273,0,1.946c-0.171,0.012-0.343,0.031-0.52,0.031c-2.167,0-4.34,0.006-6.506,0
c-1.506,0-2.479-0.937-2.491-2.436C296.479,166.935,296.479,164.383,296.497,161.831z M276.117,159.487c3.476,0,6.94,0,10.459,0
c0,0.648,0,1.261,0,1.922c-1.292,0-2.564,0-3.874,0c0,3.506,0,6.958,0,10.459c-0.894,0-1.738,0-2.644,0c0-3.452,0-6.916,0-10.447
c-1.347,0-2.625,0-3.936,0C276.117,160.748,276.117,160.135,276.117,159.487z M276.062,176.562c5.704,0,11.365,0,17.062,0
c0,1.175,0,2.332,0,3.55c-4.113,0-8.244,0-12.405,0c0,0.906,0,1.744,0,2.638c2.375,0,4.737,0,7.142,0c0,1.236,0,2.423,0,3.678
c-2.375,0-4.749,0-7.154,0c0,0.985,0,1.903,0,2.876c4.149,0,8.274,0,12.43,0c0,1.322,0,2.595,0,3.898c-5.679,0-11.358,0-17.075,0
C276.062,187.688,276.062,182.155,276.062,176.562z M255.444,159.45c1.016,0,2.025-0.012,3.042,0.018
c0.135,0.006,0.3,0.227,0.379,0.379c1.126,2.124,2.234,4.253,3.354,6.377c0.092,0.171,0.189,0.342,0.379,0.501
c0-2.405,0-4.804,0-7.24c0.894,0,1.726,0,2.601,0c0,4.119,0,8.237,0,12.43c-0.802,0-1.598,0.024-2.393-0.019
c-0.147-0.006-0.318-0.257-0.41-0.435c-1.432-2.638-2.852-5.281-4.278-7.925c-0.098-0.177-0.196-0.349-0.386-0.514
c0,2.944,0,5.888,0,8.88c-0.826,0-1.536,0-2.289,0C255.444,167.755,255.444,163.636,255.444,159.45z M239.312,159.462
c0.856,0,1.67,0,2.54,0c0,4.137,0,8.256,0,12.417c-0.826,0-1.658,0-2.54,0C239.312,167.761,239.312,163.642,239.312,159.462z
M215.976,159.444c1.016,0,2.013-0.019,3.011,0.019c0.153,0.006,0.343,0.227,0.435,0.397c1.138,2.136,2.258,4.284,3.384,6.426
c0.08,0.153,0.171,0.306,0.349,0.435c0-2.405,0-4.811,0-7.246c0.887,0,1.72,0,2.588,0c0,4.125,0,8.25,0,12.436
c-0.795,0-1.542,0.025-2.289-0.018c-0.178-0.012-0.398-0.214-0.496-0.392c-1.463-2.687-2.907-5.38-4.357-8.072
c-0.086-0.159-0.171-0.312-0.361-0.459c0,1.475,0,2.956,0,4.431s0,2.95,0,4.468c-0.759,0-1.493,0-2.264,0
C215.976,167.749,215.976,163.624,215.976,159.444z M104.653,349.757c-41.487,0-75.239-33.752-75.239-75.239
s33.752-75.239,75.239-75.239c41.488,0,75.233,33.752,75.233,75.239S146.141,349.757,104.653,349.757z M229.954,392.138
c4.872,0,8.837,3.96,8.837,8.838v20.783c0,4.872-3.965,8.831-8.837,8.831h-21.769v21.77c0,4.871-3.959,8.831-8.831,8.831H178.57
c-4.872,0-8.831-3.96-8.831-8.831v-21.764H147.97c-4.871,0-8.831-3.959-8.831-8.831v-20.789c0-4.878,3.96-8.838,8.831-8.838
h21.769V370.37c0-4.871,3.959-8.831,8.831-8.831h20.784c4.872,0,8.831,3.96,8.831,8.831v21.769H229.954z M227.702,193.514
c-3.623-0.043-7.252-0.019-10.881-0.019c-1.695,0-3.715-1.383-4.302-2.962c-0.098-0.263-0.128-0.569-0.128-0.857
c-0.006-3.152-0.012-6.304,0-9.456c0-0.483,0.061-0.991,0.196-1.45c0.355-1.206,1.377-2.014,2.631-2.014
c5.447-0.019,10.9-0.006,16.347-0.006c0.049,0,0.104,0.024,0.19,0.042c0,1.151,0,2.308,0,3.513c-4.89,0-9.768,0-14.688,0
c0,3.078,0,6.059,0,9.07c3.568,0,7.105,0,10.679,0c0-0.82,0-1.616,0-2.485c-2.032,0-4.063,0-6.12,0c0-1.304,0-2.534,0-3.788
c3.464,0,6.897,0,10.404,0c0.006,0.189,0.024,0.379,0.024,0.569c0,1.971-0.012,3.935,0.006,5.906
c0.006,0.618-0.141,1.163-0.526,1.622c-0.392,0.478-0.808,0.937-1.261,1.358C229.562,193.226,228.724,193.526,227.702,193.514z
M270.095,184.946c-0.098,0.153-0.202,0.3-0.294,0.459c-1.438,2.473-2.882,4.939-4.302,7.417c-0.19,0.331-0.398,0.447-0.771,0.435
c-0.856-0.024-1.713-0.031-2.57,0c-0.397,0.012-0.612-0.11-0.814-0.459c-1.377-2.423-2.778-4.829-4.167-7.24
c-0.11-0.19-0.22-0.374-0.441-0.557c0,2.724,0,5.453,0,8.25c-0.288,0-0.477,0-0.667,0c-2.025,0-4.045-0.012-6.071,0.012
c-0.417,0.006-0.643-0.116-0.857-0.483c-2.007-3.464-4.039-6.922-6.065-10.374c-0.098-0.166-0.208-0.331-0.355-0.569
c-1.481,2.497-2.925,4.933-4.418,7.454c1.665,0,3.25,0,4.859,0c0,1.34,0,2.607,0,3.923c-3.997,0-7.987,0-12.038,0
c0.085-0.165,0.146-0.312,0.226-0.447c3.091-5.238,6.188-10.471,9.272-15.716c0.22-0.374,0.447-0.539,0.894-0.521
c0.894,0.037,1.787,0.037,2.681,0c0.459-0.018,0.716,0.129,0.948,0.526c2.246,3.831,4.523,7.65,6.787,11.469
c0.11,0.184,0.227,0.373,0.429,0.709c0-4.314,0-8.464,0-12.692c0.899,0,1.75,0.098,2.558-0.025
c1.353-0.202,2.056,0.355,2.699,1.53c1.738,3.158,3.635,6.224,5.471,9.333c0.11,0.184,0.227,0.367,0.374,0.593
c0.955-1.622,1.879-3.182,2.803-4.749c1.23-2.087,2.467-4.167,3.685-6.261c0.177-0.306,0.361-0.435,0.722-0.428
c1.236,0.024,2.472,0.012,3.746,0.012c0,5.582,0,11.108,0,16.695c-1.408,0-2.772,0-4.192,0c0-2.748,0-5.496,0-8.237
C270.181,184.977,270.138,184.958,270.095,184.946z M292.892,291.667c-10.918,0-19.804-8.88-19.804-19.798
c0-10.918,8.886-19.804,19.804-19.804c10.924,0,19.804,8.886,19.804,19.804C312.696,282.787,303.816,291.667,292.892,291.667z
M300.83,180.497c0,2.925,0,5.845,0,8.794c3.151,0,6.291,0,9.474,0c0-1.065,0-2.099,0-3.176c1.432,0,2.827,0,4.247,0
c0.012,0.086,0.037,0.171,0.037,0.257c0,1.566,0.018,3.133-0.007,4.7c-0.019,1.444-0.789,2.179-2.215,2.172
c-4.211,0-8.422,0-12.632,0c-1.646,0-3.018-1.236-3.201-2.882c-0.03-0.251-0.036-0.508-0.036-0.765c0-3.666,0-7.326,0-10.992
c0-1.536,0.526-2.081,2.056-2.081c4.468-0.006,8.93-0.006,13.396,0c1.738,0.006,2.663,0.973,2.639,2.699
c-0.013,1.096-0.013,2.185-0.019,3.28c0,0.178,0,0.355,0,0.563c-1.549,0-3.036,0-4.59,0c0-0.851,0-1.695,0-2.576
C306.907,180.497,303.89,180.497,300.83,180.497z M334.961,177.192c0,4.266,0,8.531,0,12.797c0,1.964-0.991,3.054-2.98,3.256
c-0.38,0.037-0.765,0.061-1.145,0.061c-3.733,0.006-7.473,0.019-11.206-0.006c-0.557-0.006-1.132-0.11-1.658-0.288
c-1.071-0.367-1.701-1.188-1.714-2.301c-0.036-4.7-0.012-9.4-0.012-14.162c1.542,0,3.029,0,4.577,0c0,4.253,0,8.488,0,12.76
c3.188,0,6.311,0,9.499,0c0-4.223,0-8.458,0-12.742c1.561,0,3.06,0,4.639,0C334.961,176.77,334.961,176.978,334.961,177.192z
M353.48,184.824c0.765,0.306,1.218,0.948,1.218,1.769c0.006,1.328,0,2.662,0,3.99c0,1.089-0.49,1.916-1.524,2.215
c-0.967,0.282-1.989,0.483-2.992,0.496c-4.37,0.055-8.746,0.024-13.115,0.024c-0.141,0-0.282-0.024-0.44-0.042
c0-5.582,0-11.126,0-16.745c0.22,0,0.416,0,0.605,0c4.994,0,9.981,0,14.976,0c1.695,0,2.484,0.777,2.491,2.467
c0.006,1.31,0,2.625,0,3.935c0,0.924-0.325,1.303-1.255,1.457c-0.129,0.024-0.257,0.061-0.38,0.085
c-0.006,0.049-0.018,0.104-0.024,0.153C353.187,184.689,353.333,184.762,353.48,184.824z M356.381,193.275
c0-5.576,0-11.139,0-16.75c5.581,0,11.114,0,16.689,0c0,1.187,0,2.356,0,3.592c-4.125,0-8.256,0-12.424,0c0,0.9,0,1.744,0,2.632
c2.381,0,4.743,0,7.148,0c0,1.224,0,2.393,0,3.641c-2.362,0-4.737,0-7.148,0c0,0.992,0,1.916,0,2.913c4.235,0,8.488,0,12.767,0
c0,1.365,0,2.65,0,3.972C367.739,193.275,362.085,193.275,356.381,193.275z M445.696,417.891l-18.66,33.336
c-0.41,0.734-1.102,1.267-1.915,1.469l-36.176,9.205c-0.251,0.066-0.502,0.098-0.753,0.098c-0.538,0-1.071-0.141-1.548-0.416
l-32.204-18.874c-0.722-0.423-1.242-1.133-1.432-1.946l-8.69-37.197c-0.189-0.809-0.043-1.659,0.404-2.351l19.283-29.951
c0.423-0.655,1.084-1.132,1.843-1.315l34.994-8.636c0.771-0.184,1.579-0.079,2.258,0.318l31.23,17.999
c0.68,0.392,1.182,1.028,1.401,1.774l10.227,34.113C446.191,416.313,446.1,417.169,445.696,417.891z M556.009,303.907
c-1.848,0.502-3.751,0.753-5.648,0.753c-2.754,0-5.392-0.576-7.852-1.537c-10.074,25.576-34.964,43.753-64.07,43.753
c-17.583,0-33.599-6.678-45.784-17.559c-5.263,7.454-13.904,12.362-23.702,12.362c-16.017,0-29.046-13.029-29.046-29.039
c0-16.017,13.029-29.046,29.046-29.046c0.306,0,0.587,0.08,0.887,0.092c-0.153-1.879-0.287-3.77-0.287-5.691
c0-16.481,5.832-31.622,15.526-43.489c-2.461-2.564-4.321-5.741-5.294-9.339c-3.109-11.53,3.745-23.439,15.275-26.555l1.107-0.336
c18.74-5.649,18.74-5.649,35.937-9.682l0.796-0.184c1.744-0.41,3.525-0.618,5.3-0.618c10.086,0,18.593,6.396,21.163,15.918
c0.79,2.931,0.918,5.924,0.483,8.843c10.074,3.305,19.119,8.862,26.555,16.089c2.326-1.94,5.056-3.452,8.158-4.29
c1.849-0.502,3.752-0.752,5.648-0.752c9.762,0,18.36,6.591,20.906,16.028l0.281,0.931c5.691,18.855,5.691,18.855,9.707,35.973
l0.22,0.93C574.069,289.237,567.35,300.852,556.009,303.907z"/>
<circle cx="292.892" cy="271.862" r="13.684"/>
<path d="M346.81,168.6c0.006-1.916,0-3.825,0-5.741c0-0.686-0.551-1.396-1.236-1.42c-1.322-0.049-2.645-0.012-3.997-0.012
c0,2.962,0,5.869,0,8.855c1.219,0,2.381,0,3.544,0C346.057,170.276,346.803,169.536,346.81,168.6z"/>
<path d="M349.582,182.761c0.795,0,0.844-0.055,0.844-0.826c0-0.472-0.012-0.949,0-1.42c0.013-0.514-0.171-0.729-0.74-0.722
c-2.638,0.031-5.275,0.012-7.913,0.012c-0.159,0-0.318,0.012-0.514,0.024c0,0.979,0,1.934,0,2.938c0.832,0,1.634,0,2.43,0
C345.646,182.761,347.617,182.767,349.582,182.761z"/>
<path d="M529.454,288.637c-0.073-0.275-0.109-0.563-0.104-0.857c0-0.116,0.189-11.512-1.8-18.88
c-1.272-4.73-3.923-9.522-5.856-13.023c-1.261-2.277-2.093-3.789-2.417-4.976c-1.702-6.304-0.343-12.675,3.047-17.706
c-6.793-6.658-15.085-11.769-24.314-14.81c-0.27,0.582-0.471,1.187-0.795,1.75c-2.883,5.019-7.547,8.611-13.134,10.11
c-0.275,0.08-0.551,0.11-0.851,0.11l-0.918-0.006c-2.645,0-11.744,0.129-17.963,1.799c-4.736,1.279-9.528,3.929-13.023,5.863
c-2.282,1.261-3.794,2.093-4.987,2.417c-1.849,0.502-3.752,0.753-5.655,0.753c-3.892,0-7.57-1.083-10.783-2.938
c-8.886,10.833-14.229,24.669-14.229,39.743c0,2.222,0.122,4.413,0.349,6.573c12.589,3.176,21.977,14.511,21.977,28.072
c0,3.979-0.808,7.767-2.265,11.225c11.212,10.446,26.206,16.897,42.706,16.897c26.817,0,49.694-16.94,58.666-40.655
C533.469,297.278,530.715,293.313,529.454,288.637z M479.399,319.733c-22.063,0-40.02-17.95-40.02-40.013
s17.95-40.019,40.02-40.019c22.068,0,40.019,17.956,40.019,40.019S501.468,319.733,479.399,319.733z"/>
<path d="M362.604,168.85c0.019,0.777,0.35,1.09,1.114,1.096c0.894,0.006,1.781,0.012,2.675,0c0.881-0.012,1.45-0.594,1.456-1.487
c0.006-1.836,0.006-3.672,0-5.514c0-0.802-0.729-1.53-1.523-1.536c-0.766-0.006-1.53-0.006-2.295,0
c-0.869,0.012-1.427,0.569-1.433,1.438c-0.006,0.979,0,1.964,0,2.944h0.006C362.599,166.812,362.58,167.834,362.604,168.85z"/>
<path d="M479.399,245.822c-18.69,0-33.899,15.202-33.899,33.898c0,18.69,15.202,33.893,33.899,33.893
c18.696,0,33.898-15.202,33.898-33.893C513.298,261.023,498.09,245.822,479.399,245.822z"/>
<path d="M401.105,367.548l-32.613,8.048l-17.926,27.84l8.098,34.651l29.987,17.577l33.685-8.568l17.387-31.059l-9.51-31.708
L401.105,367.548z M395.157,442.323c-16.94,0-30.716-13.776-30.716-30.717c0-16.939,13.775-30.716,30.716-30.716
s30.716,13.776,30.716,30.716C425.873,428.546,412.098,442.323,395.157,442.323z"/>
<path d="M349.691,186.366c-2.638,0.031-5.275,0.012-7.913,0.012c-0.171,0-0.349,0.019-0.526,0.031c0,0.998,0,1.934,0,2.925
c0.232,0,0.429,0,0.625,0c2.037,0,4.075,0,6.113,0c0.6,0,1.199-0.006,1.8-0.006c0.446,0.006,0.667-0.177,0.643-0.655
c-0.031-0.526-0.019-1.052-0.007-1.585C350.433,186.592,350.267,186.36,349.691,186.366z"/>
<path d="M395.157,387.016c-13.562,0-24.597,11.034-24.597,24.597c0,13.562,11.035,24.596,24.597,24.596
s24.597-11.034,24.597-24.596C419.754,398.05,408.719,387.016,395.157,387.016z"/>
<path d="M417.116,291.281c-2.032-0.783-4.205-1.23-6.47-1.401c-0.568-0.043-1.113-0.171-1.694-0.171
c-12.639,0-22.926,10.288-22.926,22.925s10.281,22.92,22.926,22.92c8.09,0,15.171-4.235,19.253-10.575
c1.199-1.867,2.075-3.93,2.699-6.114c0.569-1.995,0.967-4.058,0.967-6.23C431.877,302.878,425.727,294.58,417.116,291.281z"/>
<path d="M429.258,229.848c1.407,1.53,3.097,2.754,4.976,3.636c3.207,1.499,6.892,2.013,10.508,1.04
c0.508-0.146,2.234-1.102,3.623-1.873c3.771-2.081,8.936-4.939,14.395-6.408c6.757-1.817,15.924-2.014,19.554-2.014l0.562,0.006
c3.838-1.145,7.038-3.666,9.039-7.148c0.062-0.11,0.092-0.227,0.153-0.337c1.004-1.836,1.604-3.819,1.812-5.845
c0.189-1.86,0.073-3.757-0.429-5.612c-1.836-6.812-7.962-11.383-15.251-11.383c-1.303,0-2.613,0.147-3.904,0.453l-0.796,0.184
c-17.014,3.984-17.014,3.984-35.562,9.578l-1.193,0.361c-8.36,2.259-13.274,10.808-11.047,19.083
C426.345,225.987,427.63,228.086,429.258,229.848z"/>
<path d="M565.134,277.915c-3.966-16.928-3.966-16.928-9.602-35.594l-0.307-1.022c-2.215-8.201-10.912-13.268-19.076-11.053
c-2.104,0.569-3.983,1.555-5.587,2.828c-1.641,1.304-2.969,2.919-3.96,4.725c-1.86,3.396-2.491,7.479-1.407,11.505
c0.146,0.508,1.102,2.228,1.866,3.617c2.081,3.77,4.938,8.935,6.407,14.394c1.995,7.405,2.032,17.785,2.014,20.123
c0.704,2.375,2.032,4.431,3.685,6.144c1.523,1.579,3.348,2.821,5.367,3.666c3.06,1.273,6.506,1.665,9.884,0.759
c8.134-2.19,12.938-10.599,10.937-19.149L565.134,277.915z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View file

@ -0,0 +1 @@
msx_msx2_msx2+-symbolic.svg

View file

@ -0,0 +1 @@
msx_msx2_msx2+-symbolic.svg

View file

@ -0,0 +1 @@
pc-98-symbolic.svg

View file

@ -0,0 +1 @@
3ds-symbolic.svg

View file

@ -0,0 +1,135 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="256"
height="256"
viewBox="0 0 256 256"
version="1.1"
id="root"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="nintendo64-symbolic.svg">
<defs
id="defs4517" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.5195312"
inkscape:cx="57.606697"
inkscape:cy="104.86166"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
units="px"
inkscape:pagecheckerboard="true"
inkscape:window-width="1817"
inkscape:window-height="1065"
inkscape:window-x="2520"
inkscape:window-y="250"
inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
id="grid4484"
empspacing="4" />
</sodipodi:namedview>
<metadata
id="metadata4520">
<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:license
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Lines"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-229.26666)">
<path
inkscape:connector-curvature="0"
id="path2"
d="m 155.26129,311.17627 7.20418,-8.18657 v -55.34122 l -34.3836,13.26225 v 0 l -28.48927,50.75673 28.48927,-10.97 z"
style="stroke-width:1.63731408;opacity:0.855" />
<path
inkscape:connector-curvature="0"
id="path4"
d="m 216.3331,388.29377 v -93.32691 l 34.87479,-13.42597 v 146.86707 l -34.87479,14.73583 v 0 l -51.24793,-66.96615 v 88.5787 l -37.0033,15.55448 V 329.02299 l 37.0033,-14.0809 z"
style="stroke-width:1.63731408;opacity:0.855" />
<path
inkscape:connector-curvature="0"
id="path6"
d="M 72.57692,428.57169 39.83064,365.04391 v 78.09988 0 z"
style="stroke-width:1.63731408;opacity:0.855" />
<path
inkscape:connector-curvature="0"
id="path8"
d="m 74.70543,281.54089 v 0 l 16.37314,33.4012 8.51403,-3.27463 28.48927,-50.75673 -34.3836,-13.42598 z"
style="stroke-width:1.63731408;opacity:0.491" />
<path
inkscape:connector-curvature="0"
id="path10"
d="m 155.26129,311.17627 v 0 l 26.19702,-29.63538 34.87479,13.42597 v 93.32691 l -51.24793,-73.35168 z"
style="stroke-width:1.63731408;opacity:0.491" />
<path
inkscape:connector-curvature="0"
id="path12"
d="M 128.08187,480.31082 V 329.02299 l -37.0033,-14.0809 v 76.79003 L 39.66691,294.96686 v 0 L 4.79212,281.54089 v 146.86707 l 34.87479,14.73583 v -78.09988 l 51.41166,99.71243 z"
style="stroke-width:1.63731408;opacity:0.491" />
<path
inkscape:connector-curvature="0"
id="path14"
d="m 39.83064,294.96686 34.87479,-13.42597 16.37314,33.4012 v 0 76.79003 z"
style="stroke-width:1.63731408;opacity:0.343" />
<path
inkscape:connector-curvature="0"
id="path16"
d="m 165.08517,412.68974 10.47881,14.73583 40.76912,15.71822 v 0 l -51.24793,-66.96615 z"
style="stroke-width:1.63731408;opacity:0.283" />
<path
inkscape:connector-curvature="0"
id="path18"
d="m 91.2423,314.94209 37.0033,-14.08089 37.0033,14.08089 v 0 l -37.0033,14.0809 z"
style="stroke-width:1.63731408;opacity:0.233" />
<path
inkscape:connector-curvature="0"
id="path20"
d="m 216.3331,268.11491 34.87479,13.42598 -34.87479,13.42597 -34.87479,-13.42597 v 0 z"
style="stroke-width:1.63731408;opacity:0.233" />
<path
inkscape:connector-curvature="0"
id="path22"
d="M 39.83064,268.11491 74.70543,281.54089 39.83064,294.96686 4.95585,281.54089 v 0 z"
style="stroke-width:1.63731408;opacity:0.233" />
<path
inkscape:connector-curvature="0"
id="path24"
d="m 128.08187,234.22251 -34.3836,13.26224 34.3836,13.42598 34.3836,-13.26225 v 0 z"
style="stroke-width:1.63731408;opacity:0.233" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5 KiB

View file

@ -0,0 +1 @@
ds-symbolic.svg

View file

@ -0,0 +1,143 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="595.17px" height="595.17px" viewBox="0 0 595.17 595.17" style="enable-background:new 0 0 595.17 595.17;"
xml:space="preserve">
<g>
<g>
<path d="M127.265,350.749l-31.505-0.342l-0.343,35.985H59.774l-0.343,31.506l35.979,0.343v35.637l31.506,0.343
c0.19,0,0.343-0.147,0.343-0.343v-35.637h35.643l0.342-31.506l-35.979-0.343V350.749L127.265,350.749z"/>
<path d="M351.606,406.509H216.74c-1.438,0-2.607,1.169-2.607,2.607v43.066c0,1.432,1.169,2.607,2.607,2.607h134.867
c1.438,0,2.606-1.169,2.606-2.607v-43.066C354.213,407.678,353.044,406.509,351.606,406.509z M265.473,443.346h-25.502
c-7.313,0-13.262-5.949-13.262-13.263c0-7.307,5.949-13.256,13.262-13.256h25.502c7.313,0,13.262,5.949,13.262,13.256
C278.735,437.396,272.787,443.346,265.473,443.346z M328.944,443.346h-25.503c-7.313,0-13.262-5.949-13.262-13.263
c0-7.307,5.949-13.256,13.262-13.256h25.503c7.312,0,13.262,5.949,13.262,13.256C342.2,437.396,336.251,443.346,328.944,443.346z"
/>
<path d="M416.582,410.664c-10.71,0-19.419,8.709-19.419,19.419s8.709,19.419,19.419,19.419s19.419-8.709,19.419-19.419
S427.292,410.664,416.582,410.664z"/>
<path d="M351.606,369.109H216.74c-1.438,0-2.607,1.169-2.607,2.607v15.869c0,1.432,1.169,2.607,2.607,2.607h134.867
c1.438,0,2.606-1.169,2.606-2.607v-15.869C354.213,370.278,353.044,369.109,351.606,369.109z"/>
<path d="M351.606,332.843H216.74c-1.438,0-2.607,1.169-2.607,2.606v15.869c0,1.433,1.169,2.607,2.607,2.607h134.867
c1.438,0,2.606-1.169,2.606-2.607v-15.869C354.213,334.012,353.044,332.843,351.606,332.843z"/>
<path d="M136.354,377.305v-37.565c0-0.244-0.202-0.446-0.447-0.446H86.782c-0.251,0-0.447,0.202-0.447,0.446v37.565H48.764
c-0.251,0-0.447,0.201-0.447,0.446v49.125c0,0.245,0.202,0.447,0.447,0.447h37.564v37.57c0,0.245,0.202,0.447,0.447,0.447h49.125
c0.25,0,0.447-0.202,0.447-0.447v-37.57h37.564c0.251,0,0.447-0.202,0.447-0.447v-49.125c0-0.245-0.202-0.446-0.447-0.446H136.354
L136.354,377.305z M169.365,417.898c0,3.562-2.901,6.463-6.462,6.463h-29.517v29.517c0,3.562-2.901,6.463-6.462,6.463H95.753
c-3.562,0-6.463-2.901-6.463-6.463v-29.517H59.768c-3.562,0-6.463-2.901-6.463-6.463v-31.169c0-3.562,2.901-6.463,6.463-6.463
h29.522v-29.523c0-3.562,2.901-6.463,6.463-6.463h31.169c3.562,0,6.462,2.901,6.462,6.463v29.523h29.523
c3.562,0,6.463,2.9,6.463,6.463v31.169H169.365z"/>
<path d="M265.473,422.947h-25.502c-3.935,0-7.142,3.201-7.142,7.136c0,3.941,3.201,7.143,7.142,7.143h25.502
c3.941,0,7.142-3.201,7.142-7.143C272.615,426.148,269.409,422.947,265.473,422.947z"/>
<path d="M442.653,401.411h-52.136c-1.438,0-2.607,1.169-2.607,2.607v52.136c0,1.433,1.169,2.607,2.607,2.607h52.136
c1.438,0,2.607-1.169,2.607-2.607v-52.136C445.255,402.58,444.086,401.411,442.653,401.411z M416.582,455.616
c-14.082,0-25.538-11.457-25.538-25.539s11.456-25.539,25.538-25.539s25.539,11.457,25.539,25.539
S430.664,455.616,416.582,455.616z"/>
<path d="M518.805,351.478c1.347,0.049,2.381-0.862,2.466-2.282c0.067-1.096,0.013-2.197,0.013-3.299c0.019,0,0.03,0,0.049,0
c0-0.826,0.037-1.652-0.012-2.479c-0.031-0.569-0.099-1.163-0.294-1.689c-0.343-0.931-1.096-1.407-2.081-1.407
c-0.967,0-1.714,0.465-2.062,1.37c-0.195,0.502-0.3,1.065-0.312,1.604c-0.037,1.744-0.019,3.495-0.013,5.245
c0,0.3,0.03,0.606,0.086,0.899C516.853,350.621,517.728,351.441,518.805,351.478z"/>
<path d="M500.744,350.713c1.218,0.036,2.191-0.79,2.277-2.025c0.067-0.9,0.012-1.812,0.012-2.724l0,0
c0-0.937,0.056-1.873-0.012-2.803c-0.086-1.225-1.028-2.014-2.259-1.989c-1.261,0.024-2.185,0.845-2.209,2.087
c-0.043,1.774-0.043,3.55,0,5.324C498.584,349.825,499.508,350.676,500.744,350.713z"/>
<path d="M328.944,422.947h-25.503c-3.94,0-7.142,3.201-7.142,7.136c0,3.941,3.201,7.143,7.142,7.143h25.503
c3.935,0,7.142-3.201,7.142-7.143C336.08,426.148,332.879,422.947,328.944,422.947z"/>
<path d="M351.606,468.848H216.74c-1.438,0-2.607,1.169-2.607,2.606v10.159h140.08v-10.159
C354.213,470.017,353.044,468.848,351.606,468.848z"/>
<path d="M216.74,317.652h134.867c1.438,0,2.606-1.169,2.606-2.606v-18.477h-140.08v18.477
C214.133,316.483,215.302,317.652,216.74,317.652z"/>
<path d="M498.187,410.664c-10.71,0-19.419,8.709-19.419,19.419s8.709,19.419,19.419,19.419s19.419-8.709,19.419-19.419
S508.891,410.664,498.187,410.664z"/>
<path d="M582.93,265.633H200.448c-0.189-0.722-0.404-1.444-0.734-2.173c-15.985-35.453,46.628-59.346,65.594-79.578
c18.538-19.774,20.796-48.819,14.174-73.691c-4.058-15.239-27.674-8.764-23.605,6.505c13.195,49.548-30.881,65.459-61.818,91.305
c-17.932,14.981-24.449,36.585-19.033,57.632H12.24c-6.762,0-12.24,5.478-12.24,12.24V481.43c0,6.763,5.478,12.24,12.24,12.24
h570.69c6.763,0,12.24-5.478,12.24-12.24V277.873C595.17,271.11,589.692,265.633,582.93,265.633z M587.379,479.007
c0,4.81-3.917,8.727-8.727,8.727H360.333v0.38h-152.32v-0.38H16.897c-4.811,0-8.728-3.917-8.728-8.727V298.803
c0-4.81,3.917-8.727,8.728-8.727h561.755c4.816,0,8.727,3.917,8.727,8.727V479.007L587.379,479.007z"/>
<path d="M463.603,344.104c0.686,0,1.377-0.013,2.062,0.006c0.293,0.006,0.392-0.098,0.367-0.38
c-0.037-0.435-0.031-0.881-0.092-1.315c-0.172-1.15-1.127-1.989-2.259-2.025c-1.139-0.037-2.154,0.746-2.374,1.885
c-0.092,0.483-0.074,0.985-0.117,1.475c-0.024,0.27,0.08,0.367,0.35,0.361C462.226,344.097,462.917,344.104,463.603,344.104z"/>
<path d="M578.652,296.202H360.333v18.85c0,4.811-3.916,8.727-8.727,8.727H216.74c-4.81,0-8.727-3.916-8.727-8.727v-18.85H16.897
c-1.438,0-2.607,1.169-2.607,2.606v180.198c0,1.432,1.169,2.606,2.607,2.606h191.121v-10.159c0-4.81,3.917-8.727,8.728-8.727
h134.866c4.811,0,8.728,3.917,8.728,8.727v10.159h218.318c1.438,0,2.607-1.169,2.607-2.606V298.803
C581.259,297.371,580.09,296.202,578.652,296.202z M180.485,426.876c0,3.623-2.944,6.567-6.567,6.567h-31.444v31.45
c0,3.623-2.944,6.567-6.567,6.567H86.782c-3.623,0-6.567-2.944-6.567-6.567v-31.45H48.764c-3.623,0-6.567-2.944-6.567-6.567
v-49.125c0-3.623,2.944-6.566,6.567-6.566h31.444v-31.445c0-3.623,2.944-6.566,6.567-6.566h49.125
c3.623,0,6.566,2.943,6.566,6.566v31.445h31.445c3.623,0,6.567,2.943,6.567,6.566v49.125H180.485z M360.333,452.183
c0,4.811-3.916,8.728-8.727,8.728H216.74c-4.81,0-8.727-3.917-8.727-8.728v-43.066c0-4.811,3.917-8.728,8.727-8.728h134.867
c4.811,0,8.727,3.917,8.727,8.728V452.183z M360.333,387.58c0,4.811-3.916,8.727-8.727,8.727H216.74
c-4.81,0-8.727-3.916-8.727-8.727v-15.869c0-4.811,3.917-8.728,8.727-8.728h134.867c4.811,0,8.727,3.917,8.727,8.728V387.58z
M360.333,351.312c0,4.811-3.916,8.728-8.727,8.728H216.74c-4.81,0-8.727-3.917-8.727-8.728v-15.869
c0-4.811,3.917-8.728,8.727-8.728h134.867c4.811,0,8.727,3.917,8.727,8.728V351.312z M512.93,340.994
c3.316-2.913,8.775-2.938,12.068-0.055c3.25,2.84,3.176,7.387-0.171,10.11c-1.702,1.383-3.673,1.995-6.041,2.001
c-2.123-0.024-4.198-0.704-5.931-2.271C509.82,348.045,509.863,343.687,512.93,340.994z M493.713,342.077
c0.686-0.973,1.554-1.738,2.625-2.276c1.059-0.532,2.179-0.729,3.36-0.655c1.193,0.074,2.252,0.545,3.341,1.139
c0-1.23,0-2.381,0-3.531c0-1.156,0-2.313,0-3.513c1.897,0,3.746,0,5.625,0c0,6.364,0,12.711,0,19.088c-1.867,0-3.722,0-5.601,0
c-0.018-0.214-0.036-0.422-0.061-0.691c-1.94,1.126-3.947,1.414-6.047,0.691c-1.383-0.478-2.473-1.358-3.311-2.552
C492.042,347.519,492.072,344.396,493.713,342.077z M473.847,339.685c1.873,0,3.722,0,5.637,0c0,0.404,0,0.802,0,1.328
c0.221-0.184,0.337-0.281,0.459-0.38c2.778-2.319,7.087-1.977,9.314,0.741c0.784,0.954,1.243,2.062,1.273,3.286
c0.055,2.479,0.037,4.951,0.043,7.43c0,0.067-0.019,0.135-0.031,0.232c-1.854,0-3.702,0-5.6,0c-0.012-0.159-0.03-0.337-0.03-0.508
c0-2.479,0-4.957,0-7.43c0-1.31-0.612-2.216-1.75-2.602c-1.151-0.385-2.448,0-3.188,0.955c-0.343,0.44-0.49,0.942-0.484,1.499
c0.007,2.504,0.007,5.013,0.007,7.516c0,0.178,0,0.355,0,0.569c-1.892,0-3.752,0-5.643,0
C473.847,348.118,473.847,343.913,473.847,339.685z M427.054,339.69c1.86,0,3.715,0,5.637,0c0,0.392,0,0.79,0,1.292
c0.208-0.166,0.324-0.251,0.435-0.343c2.625-2.204,6.646-2.032,9.015,0.385c1.107,1.133,1.597,2.534,1.628,4.076
c0.043,2.351,0.012,4.706,0.012,7.057c0,0.055-0.012,0.104-0.024,0.178c-1.866,0-3.721,0-5.643,0c0-0.153,0-0.312,0-0.472
c0-2.516,0-5.037,0-7.552c0-1.316-0.802-2.338-2.025-2.602c-1.328-0.281-2.711,0.355-3.201,1.524
c-0.141,0.33-0.189,0.722-0.189,1.083c-0.013,2.503,0,5.006,0.006,7.516c0,0.159,0,0.324,0,0.514c-1.922,0-3.764,0-5.643,0
C427.054,348.118,427.054,343.92,427.054,339.69z M418.075,333.222c0.961,0,1.903,0,2.853,0c0.937,0,1.872,0,2.84,0
c0,1.273,0,2.534,0,3.831c-1.873,0-3.765,0-5.692,0C418.075,335.773,418.075,334.525,418.075,333.222z M423.785,339.69
c0,4.229,0,8.421,0,12.645c-1.896,0-3.77,0-5.679,0c0-4.211,0-8.415,0-12.645C419.997,339.69,421.876,339.69,423.785,339.69z
M394.691,333.228c0.152,0,0.3,0,0.446,0c1.652,0,3.305,0.013,4.957-0.006c0.355-0.006,0.557,0.092,0.753,0.41
c2.546,4.149,5.104,8.286,7.662,12.43c0.086,0.141,0.172,0.275,0.355,0.397c0-4.394,0-8.788,0-13.207c1.988,0,3.904,0,5.851,0
c0,6.371,0,12.718,0,19.113c-0.367,0-0.704,0-1.047,0c-1.456,0-2.919-0.013-4.376,0.006c-0.318,0.006-0.489-0.104-0.654-0.367
c-2.577-4.161-5.159-8.323-7.742-12.479c-0.086-0.135-0.171-0.27-0.257-0.404c-0.037,0.007-0.073,0.019-0.11,0.024
c0,2.191,0,4.383,0,6.573c0,2.197,0,4.4,0,6.622c-1.958,0-3.88,0-5.838,0C394.691,345.976,394.691,339.63,394.691,333.228z
M451.374,456.148c0,4.811-3.916,8.727-8.727,8.727h-52.137c-4.811,0-8.727-3.916-8.727-8.727v-52.137
c0-4.81,3.917-8.727,8.727-8.727h52.137c4.811,0,8.727,3.917,8.727,8.727V456.148z M452.727,352.322c-1.921,0-3.812,0-5.753,0
c0-4.211,0-8.427,0-12.675c-1.052,0-2.05,0-3.121,0c0-0.587-0.012-1.145,0.019-1.701c0-0.062,0.227-0.159,0.349-0.159
c0.894-0.012,1.787-0.006,2.736-0.006c0-0.856,0-1.689,0-2.546c1.934,0,3.807,0,5.753,0c0,0.838,0,1.658,0,2.527
c1.04,0,2.05,0,3.09,0c0,0.648,0,1.249,0,1.879c-1.028,0-2.025,0-3.06,0C452.727,343.877,452.727,348.081,452.727,352.322z
M455.132,345.511c0.123-1.781,0.942-3.231,2.265-4.395c1.977-1.737,4.314-2.404,6.909-2.215c2.234,0.159,4.187,0.985,5.777,2.589
c1.249,1.254,1.995,3.011,1.928,4.553c-3.61,0-7.19,0-10.875,0c0.055,1.255,0.013,2.461,0.184,3.629
c0.184,1.23,1.206,1.94,2.43,1.892c1.12-0.043,2.025-0.894,2.191-2.1c0.067-0.483,0.079-0.979,0.122-1.529c0.931,0,1.86,0,2.791,0
c0.924,0,1.842,0,2.827,0c-0.073,0.208-0.122,0.386-0.202,0.551c-0.997,2.142-2.717,3.482-4.92,4.155
c-3.201,0.974-6.219,0.563-8.881-1.542C455.897,349.69,454.967,347.824,455.132,345.511z M532.979,456.148
c0,4.811-3.917,8.727-8.728,8.727h-52.136c-4.811,0-8.728-3.916-8.728-8.727v-52.137c0-4.81,3.917-8.727,8.728-8.727h52.136
c4.811,0,8.728,3.917,8.728,8.727V456.148z"/>
<path d="M524.251,401.411h-52.136c-1.438,0-2.607,1.169-2.607,2.607v52.136c0,1.433,1.169,2.607,2.607,2.607h52.136
c1.438,0,2.607-1.169,2.607-2.607v-52.136C526.858,402.58,525.689,401.411,524.251,401.411z M498.187,455.616
c-14.082,0-25.539-11.457-25.539-25.539s11.457-25.539,25.539-25.539s25.538,11.457,25.538,25.539
S512.269,455.616,498.187,455.616z"/>
</g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View file

@ -0,0 +1 @@
gameboy-symbolic.svg

View file

@ -0,0 +1 @@
gameboy_gameboycolor-symbolic.svg

View file

@ -0,0 +1 @@
gamecube-symbolic.svg

View file

@ -0,0 +1 @@
nintendo64-symbolic.svg

View file

@ -0,0 +1 @@
nintendoentertainmentsystem-symbolic.svg

View file

@ -0,0 +1 @@
supernintendoentertainmentsystem-symbolic.svg

View file

@ -0,0 +1 @@
switch-symbolic.svg

View file

@ -0,0 +1 @@
wii-symbolic.svg

View file

@ -0,0 +1,136 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="1956.326897pt" height="709.692284pt" viewBox="0 0 1956.326897 709.692284"
preserveAspectRatio="xMidYMid meet" id="root">
<metadata>
Created by potrace 1.12, written by Peter Selinger 2001-2015
</metadata>
<g transform="translate(-17.000000,756.856899) scale(0.100000,-0.100000)" stroke="none">
<path d="M9535 7559 c-110 -15 -271 -56 -369 -95 -210 -83 -387 -202 -561
-378 -328 -331 -481 -734 -462 -1211 10 -231 48 -409 129 -593 172 -392 581
-755 1001 -888 31 -9 57 -21 57 -25 0 -5 -82 -135 -182 -289 -101 -154 -248
-380 -328 -503 -79 -122 -200 -307 -267 -410 -68 -103 -123 -190 -123 -192 0
-3 301 -5 668 -5 648 0 669 1 678 19 8 17 477 727 1173 1774 247 371 311 488
375 678 59 177 77 283 83 479 6 203 -9 337 -58 502 -140 474 -557 905 -1031
1062 -186 63 -280 77 -508 81 -113 2 -236 -1 -275 -6z m370 -1125 c148 -38
273 -159 325 -315 42 -122 14 -328 -63 -464 -28 -50 -128 -126 -204 -156 -79
-30 -228 -38 -306 -15 -70 20 -194 103 -247 164 -165 191 -152 482 30 661 61
60 152 115 216 130 62 14 185 12 249 -5z"/>
<path d="M12950 7555 c-305 -51 -563 -192 -787 -429 -209 -221 -326 -476 -352
-772 -25 -265 34 -511 170 -721 l41 -62 -82 -89 c-254 -276 -381 -574 -397
-932 -19 -434 125 -825 426 -1151 237 -256 543 -428 891 -500 126 -26 420 -36
556 -19 360 44 672 203 930 472 231 241 370 515 431 848 25 136 25 471 0 594
-22 109 -60 230 -98 315 -63 139 -204 322 -327 423 l-43 36 48 63 c130 172
193 375 193 617 0 354 -146 685 -411 937 -222 211 -469 333 -755 375 -94 13
-342 11 -434 -5z m392 -987 c79 -36 142 -98 181 -177 29 -60 32 -73 32 -161 0
-82 -4 -103 -27 -152 -71 -152 -214 -239 -372 -224 -141 13 -259 96 -319 224
-28 60 -31 77 -31 157 0 98 17 151 70 220 38 51 116 105 182 126 83 28 208 22
284 -13z m1 -1578 c203 -63 348 -253 363 -475 20 -288 -173 -536 -449 -575
-243 -34 -463 80 -570 295 -56 114 -68 283 -29 411 51 166 192 302 363 348 83
22 243 20 322 -4z"/>
<path d="M16300 7559 c-361 -46 -683 -215 -898 -472 -173 -205 -260 -393 -302
-648 -34 -213 -42 -487 -38 -1394 5 -912 5 -920 60 -1145 94 -386 319 -675
669 -860 240 -125 500 -177 843 -167 284 8 498 59 708 169 344 179 563 461
662 853 61 242 61 251 61 1285 0 1006 -1 1044 -50 1285 -42 205 -114 391 -203
523 -53 77 -186 217 -268 283 -185 147 -438 247 -721 284 -122 16 -412 18
-523 4z m435 -968 c74 -37 117 -82 156 -166 64 -136 62 -106 66 -1155 4 -991
1 -1094 -37 -1204 -53 -154 -156 -235 -313 -244 -144 -9 -254 41 -338 152 -47
62 -74 145 -89 271 -16 141 -8 1978 9 2053 50 220 197 339 405 328 62 -3 91
-11 141 -35z"/>
<path d="M5705 7543 c-261 -31 -458 -76 -641 -148 -535 -209 -992 -632 -1244
-1149 -157 -321 -223 -626 -222 -1021 0 -225 8 -318 48 -514 115 -572 487
-1126 979 -1456 129 -87 348 -193 502 -244 151 -50 375 -96 547 -112 186 -17
514 -6 681 23 l130 23 3 609 c2 485 0 607 -10 603 -81 -30 -252 -78 -327 -91
-179 -30 -395 -15 -560 40 -380 126 -669 450 -757 849 -22 96 -29 329 -15 438
34 255 145 480 326 662 324 325 767 418 1237 260 57 -19 104 -35 106 -35 1 0
1 273 0 607 l-3 607 -60 12 c-149 30 -313 44 -498 43 -106 -1 -205 -4 -222 -6z"/>
<path d="M170 5221 l0 -2251 600 0 600 0 0 1707 0 1706 248 -6 c264 -7 359
-16 438 -42 113 -38 201 -122 245 -232 20 -50 23 -77 23 -188 1 -114 -2 -137
-23 -188 -50 -126 -164 -236 -298 -287 -88 -34 -241 -39 -356 -11 -49 12 -90
21 -93 21 -2 0 -4 -270 -4 -599 l0 -599 28 -6 c127 -25 179 -30 332 -30 122 0
203 5 267 17 336 63 609 204 851 441 275 267 435 572 487 926 23 156 16 440
-15 585 -81 383 -295 719 -602 949 -249 186 -458 256 -932 313 -106 13 -289
16 -963 20 l-833 5 0 -2251z"/>
<path d="M18530 5220 l0 -2250 595 0 595 0 0 1738 c0 956 3 1969 7 2250 l6
512 -601 0 -602 0 0 -2250z"/>
<path d="M6430 5215 l0 -335 680 0 680 0 -2 333 -3 332 -677 3 -678 2 0 -335z"/>
<path d="M4020 1729 c-178 -18 -305 -107 -345 -242 -28 -95 -13 -192 44 -278
59 -88 149 -135 378 -195 166 -44 219 -67 245 -108 24 -39 19 -102 -12 -145
-36 -52 -92 -74 -195 -79 -83 -3 -94 -1 -145 25 -64 32 -114 99 -125 164 l-7
41 -52 -6 c-28 -3 -81 -8 -118 -12 -67 -6 -68 -7 -68 -35 0 -17 9 -57 21 -91
63 -187 202 -282 434 -295 194 -11 341 33 432 130 121 128 131 339 22 477 -53
67 -160 118 -358 170 -162 43 -243 77 -261 109 -13 25 -13 77 0 102 18 33 89
62 165 67 127 8 199 -29 233 -119 10 -28 21 -50 25 -50 4 1 59 1 123 1 l117 0
-7 53 c-30 227 -236 346 -546 316z"/>
<path d="M5280 1729 c-129 -11 -200 -38 -297 -110 -56 -42 -131 -139 -161
-210 -55 -127 -70 -366 -33 -511 54 -212 199 -359 401 -409 81 -21 280 -18
355 5 191 57 327 198 381 396 25 90 26 328 1 419 -30 111 -74 190 -148 264
-123 123 -287 175 -499 156z m238 -244 c101 -55 155 -145 174 -289 29 -225
-45 -412 -190 -483 -49 -24 -69 -28 -142 -28 -73 0 -93 4 -142 28 -122 60
-184 171 -195 348 -13 221 50 362 192 431 56 27 67 29 155 26 82 -3 102 -8
148 -33z"/>
<path d="M10539 1729 c-222 -22 -387 -163 -459 -394 -31 -100 -39 -291 -16
-405 60 -301 302 -484 600 -455 193 19 324 107 401 270 59 126 61 119 -57 155
-57 17 -111 34 -120 36 -10 3 -18 1 -18 -5 0 -30 -47 -129 -78 -163 -55 -61
-104 -82 -192 -82 -84 0 -151 27 -202 81 -75 79 -112 263 -90 441 15 115 44
185 101 240 135 130 392 78 443 -90 6 -21 14 -38 17 -38 3 1 58 13 121 29 131
32 127 25 80 128 -84 183 -280 276 -531 252z"/>
<path d="M11779 1729 c-244 -24 -416 -173 -480 -416 -16 -60 -21 -109 -21
-213 -1 -215 40 -333 156 -457 65 -70 149 -122 241 -149 85 -26 297 -26 380 0
193 58 328 201 381 406 24 90 25 311 1 400 -81 305 -321 462 -658 429z m250
-244 c64 -35 111 -90 142 -165 18 -44 23 -81 27 -181 6 -187 -21 -282 -105
-367 -64 -63 -120 -85 -223 -86 -69 -1 -95 4 -138 23 -67 30 -143 113 -174
189 -20 51 -23 74 -23 207 0 189 17 240 104 326 75 74 118 89 241 86 83 -2
102 -6 149 -32z"/>
<path d="M170 1100 l0 -610 125 0 125 0 0 228 0 229 183 6 c249 9 326 31 410
121 93 99 120 302 57 443 -25 56 -89 124 -143 151 -73 36 -135 42 -453 42
l-304 0 0 -610z m519 400 c36 -5 76 -18 90 -28 101 -74 94 -223 -13 -283 -37
-21 -56 -24 -193 -27 l-153 -4 0 176 0 176 103 0 c56 0 131 -5 166 -10z"/>
<path d="M1310 1100 l0 -610 465 0 465 0 0 105 0 105 -340 0 -340 0 0 165 0
165 305 0 305 0 0 100 0 100 -305 0 -305 0 0 140 0 140 325 0 325 0 0 100 0
100 -450 0 -450 0 0 -610z"/>
<path d="M2450 1100 l0 -610 120 0 120 0 0 255 0 255 77 0 c141 0 155 -13 378
-347 l108 -163 144 0 c78 0 143 2 143 5 0 9 -202 329 -240 380 -44 58 -79 93
-134 129 -23 16 -33 27 -25 30 172 48 220 81 272 182 27 52 38 153 26 220 -27
146 -117 236 -264 263 -35 7 -194 11 -392 11 l-333 0 0 -610z m668 387 c94
-51 98 -204 5 -264 -23 -16 -55 -18 -230 -21 l-203 -3 0 149 c0 82 3 152 8
156 4 4 93 6 197 4 157 -3 196 -7 223 -21z"/>
<path d="M6142 1103 l3 -608 112 -3 113 -3 2 401 3 400 245 -397 246 -398 122
-3 122 -3 0 611 0 610 -110 0 -110 0 0 -400 c0 -220 -3 -400 -7 -400 -5 0
-118 180 -253 400 l-245 400 -123 0 -122 0 2 -607z"/>
<path d="M7500 1133 c-123 -318 -230 -593 -237 -611 l-14 -33 133 3 132 3 49
138 50 137 246 0 247 0 50 -137 51 -138 131 -3 c73 -1 132 1 132 5 0 4 -108
279 -241 611 l-242 602 -131 0 -132 0 -224 -577z m440 67 c44 -117 79 -215 77
-217 -3 -2 -76 -2 -165 -1 l-160 3 74 205 c41 113 77 211 79 219 3 8 8 12 10
9 3 -2 41 -100 85 -218z"/>
<path d="M12650 1100 l0 -611 113 3 112 3 3 465 4 465 117 -465 117 -465 119
0 119 0 115 462 c64 255 119 463 124 463 4 0 7 -209 7 -465 l0 -465 110 0 110
0 0 610 0 610 -183 0 -184 0 -103 -397 c-57 -219 -106 -404 -109 -411 -4 -7
-53 164 -110 380 -56 216 -104 401 -107 411 -5 15 -23 17 -190 17 l-184 0 0
-610z"/>
<path d="M14070 1100 l0 -610 125 0 125 0 0 228 0 229 183 6 c113 4 205 12
242 22 66 17 149 69 182 113 86 117 104 291 43 429 -25 56 -89 124 -143 151
-73 36 -135 42 -453 42 l-304 0 0 -610z m519 400 c36 -5 76 -18 90 -28 101
-74 94 -223 -13 -283 -37 -21 -56 -24 -193 -27 l-153 -4 0 176 0 176 103 0
c56 0 131 -5 166 -10z"/>
<path d="M15210 1323 c0 -499 9 -585 73 -679 71 -107 186 -160 366 -171 281
-15 451 76 507 272 15 51 18 124 22 513 l4 452 -126 0 -125 0 -3 -447 c-3
-401 -5 -451 -20 -479 -41 -75 -130 -112 -239 -100 -102 10 -169 60 -198 145
-7 23 -11 167 -11 457 l0 424 -125 0 -125 0 0 -387z"/>
<path d="M16350 1610 l0 -100 185 0 185 0 0 -510 0 -510 120 0 120 0 2 508 3
507 178 3 177 2 0 100 0 100 -485 0 -485 0 0 -100z"/>
<path d="M17482 1103 l3 -608 463 -3 462 -2 0 105 0 105 -340 0 -340 0 0 165
0 165 305 0 305 0 0 100 0 100 -302 2 -303 3 -3 138 -3 137 331 0 330 0 0 100
0 100 -455 0 -455 0 2 -607z"/>
<path d="M18620 1100 l0 -610 125 0 125 0 0 255 0 255 73 0 c88 0 140 -22 188
-78 19 -22 93 -128 164 -236 l130 -195 143 -1 c78 0 142 4 142 9 0 17 -216
352 -259 402 -24 28 -66 68 -93 90 -29 23 -44 40 -36 43 139 39 186 66 238
138 91 125 75 333 -34 441 -87 87 -143 97 -568 97 l-338 0 0 -610z m630 399
c105 -24 147 -128 93 -232 -28 -56 -75 -67 -285 -67 l-188 0 0 155 0 155 168
0 c92 0 187 -5 212 -11z"/>
<path d="M8612 1098 l3 -603 428 -3 427 -2 0 105 0 105 -305 0 -305 0 0 500 0
500 -125 0 -125 0 2 -602z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.7 KiB

View file

@ -0,0 +1,62 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
aria-hidden="true"
focusable="false"
data-prefix="fab"
data-icon="playstation"
class="svg-inline--fa fa-playstation fa-w-18"
role="img"
viewBox="0 0 594 594"
version="1.1"
id="svg4"
sodipodi:docname="sonyplaystation-symbolic.svg"
width="180"
height="180"
inkscape:version="0.92.3 (2405546, 2018-03-11)">
<metadata
id="metadata10">
<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="defs8" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1642"
inkscape:window-height="826"
id="namedview6"
showgrid="false"
scale-x="3.3"
inkscape:zoom="2.32"
inkscape:cx="224.56227"
inkscape:cy="84.95099"
inkscape:window-x="49"
inkscape:window-y="28"
inkscape:window-maximized="0"
inkscape:current-layer="svg4" />
<path
d="m 579.91642,415.05 c -11.3,14.2 -38.8,24.3 -38.8,24.3 l -205.1,73.6 v -54.3 l 150.9,-53.8 c 17.1,-6.1 19.8,-14.8 5.8,-19.4 -13.9,-4.6 -39.1,-3.3 -56.2,2.9 l -100.5,35.5 v -56.4 c 23.2,-7.8 47.1,-13.6 75.7,-16.8 40.9,-4.5 90.9,0.6 130.2,15.5 44.2,14 49.2,34.7 38,48.9 z m -224.4,-92.5 v -139 c 0,-16.3 -3,-31.3 -18.3,-35.6 -11.7,-3.8 -19,7.1 -19,23.4 v 347.9 l -93.79998,-29.8 V 74.75 c 39.9,7.4 97.99998,24.899997 129.19998,35.4 79.5,27.3 106.4,61.3 106.4,137.8 0,74.5 -46,102.8 -104.5,74.6 z M 52.216443,452.95 c -45.4000004,-12.8 -53.00000042,-39.5 -32.3,-54.8 19.1,-14.2 51.7,-24.9 51.7,-24.9 l 134.499997,-47.8 v 54.5 l -96.8,34.6 c -17.099997,6.1 -19.699997,14.8 -5.80001,19.4 13.90001,4.6 39.10001,3.3 56.20001,-2.9 l 46.4,-16.9 v 48.8 c -51.6,9.3 -101.40001,7.3 -153.899997,-10 z"
id="path2"
inkscape:connector-curvature="0" />
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -0,0 +1,124 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Capa_1"
x="0px"
y="0px"
viewBox="0 0 384 384"
xml:space="preserve"
sodipodi:docname="sonyplaystation2-symbolic.svg"
width="256"
height="256"
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
id="metadata49"><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="defs47" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1871"
inkscape:window-height="1015"
id="namedview45"
showgrid="false"
scale-x="1.5"
inkscape:zoom="1.84375"
inkscape:cx="192.90096"
inkscape:cy="206.33684"
inkscape:window-x="49"
inkscape:window-y="28"
inkscape:window-maximized="1"
inkscape:current-layer="Capa_1" />
<g
id="g12"
transform="matrix(0.97818671,0,0,0.97818671,-58.416287,-58.416287)">
<path
d="m 188.31,258.297 v -34.442 c 0,-2.845 -2.307,-5.151 -5.151,-5.151 H 67.015 c -2.845,0 -5.151,2.307 -5.151,5.151 v 4.593 c 0,2.845 2.307,5.151 5.151,5.151 h 106.401 v 14.954 H 67.015 c -2.845,0 -5.151,2.306 -5.151,5.151 v 34.441 c 0,2.845 2.307,5.151 5.151,5.151 h 4.592 c 2.845,0 5.151,-2.306 5.151,-5.151 v -24.696 h 106.401 c 2.845,0 5.151,-2.307 5.151,-5.152 z"
id="path6"
inkscape:connector-curvature="0" />
<path
d="m 444.985,263.449 c 2.845,0 5.151,-2.306 5.151,-5.151 v -34.442 c 0,-2.845 -2.307,-5.151 -5.151,-5.151 H 328.838 c -2.845,0 -5.151,2.307 -5.151,5.151 v 4.593 c 0,2.845 2.306,5.151 5.151,5.151 h 106.397 v 14.954 H 328.838 c -2.845,0 -5.151,2.306 -5.151,5.151 v 34.441 c 0,2.845 2.306,5.151 5.151,5.151 h 116.148 c 2.845,0 5.151,-2.306 5.151,-5.151 v -4.822 c 0,-3.47 -3.37,-5.949 -6.679,-4.921 H 338.58 V 263.45 h 106.405 z"
id="path8"
inkscape:connector-curvature="0" />
<path
d="m 306.48,218.704 h -64.074 c -2.845,0 -5.151,2.307 -5.151,5.151 v 54.547 h -54.096 c -2.845,0 -5.151,2.307 -5.151,5.151 v 4.592 c 0,2.845 2.307,5.151 5.151,5.151 h 64.066 c 2.845,0 5.151,-2.306 5.151,-5.151 v -54.546 h 54.103 c 2.845,0 5.151,-2.307 5.151,-5.151 v -4.593 c 10e-4,-2.845 -2.305,-5.151 -5.15,-5.151 z"
id="path10"
inkscape:connector-curvature="0" />
</g>
<g
id="g14"
transform="translate(0,-256)">
</g>
<g
id="g16"
transform="translate(0,-256)">
</g>
<g
id="g18"
transform="translate(0,-256)">
</g>
<g
id="g20"
transform="translate(0,-256)">
</g>
<g
id="g22"
transform="translate(0,-256)">
</g>
<g
id="g24"
transform="translate(0,-256)">
</g>
<g
id="g26"
transform="translate(0,-256)">
</g>
<g
id="g28"
transform="translate(0,-256)">
</g>
<g
id="g30"
transform="translate(0,-256)">
</g>
<g
id="g32"
transform="translate(0,-256)">
</g>
<g
id="g34"
transform="translate(0,-256)">
</g>
<g
id="g36"
transform="translate(0,-256)">
</g>
<g
id="g38"
transform="translate(0,-256)">
</g>
<g
id="g40"
transform="translate(0,-256)">
</g>
<g
id="g42"
transform="translate(0,-256)">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.7 KiB

View file

@ -0,0 +1,85 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 14.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 43363) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.0"
id="Ebene_1"
x="0px"
y="0px"
width="180"
height="180"
viewBox="0 0 648 648"
enable-background="new 0 0 667 279.5"
xml:space="preserve"
sodipodi:docname="sonyplaystation3-symbolic.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
id="metadata4925"><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="defs4923" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1549"
inkscape:window-height="780"
id="namedview4921"
showgrid="false"
scale-x="3.6"
inkscape:zoom="1.7871064"
inkscape:cx="50.334235"
inkscape:cy="61.580176"
inkscape:window-x="49"
inkscape:window-y="28"
inkscape:window-maximized="0"
inkscape:current-layer="Ebene_1" />
<g
id="g4918"
transform="matrix(1.0207958,0,0,1.0207958,-16.360881,235.43167)">
<g
id="g4906">
</g>
<g
id="g4916">
<g
id="g4914">
<path
d="m 421.659,19.551 h -82.591 c -25.474,0 -37.958,15.741 -37.958,36.179 v 62.087 c 0,12.684 -5.989,21.788 -18.631,21.788 h -72.24 c -0.506,0 -0.925,0.419 -0.925,0.9 v 12.53 c 0,0.512 0.419,0.941 0.925,0.941 h 81.768 c 25.464,0 37.979,-15.67 37.979,-36.118 V 55.73 c 0,-12.694 5.943,-21.818 18.657,-21.818 h 73.017 c 0.573,0 1.023,-0.409 1.023,-0.921 V 20.482 c 0,-0.491 -0.451,-0.931 -1.024,-0.931 z"
id="path4908"
inkscape:connector-curvature="0" />
<path
d="M 178.54,19.551 H 19.607 c -0.578,0 -0.998,0.44 -0.998,0.931 v 12.509 c 0,0.512 0.419,0.941 0.998,0.941 h 149.374 c 12.627,0 18.621,9.104 18.621,21.797 0,12.643 -5.994,21.726 -18.621,21.726 H 50.81 c -18.351,0 -32.2,15.415 -32.2,35.862 v 39.687 c 0,0.543 0.419,0.973 0.998,0.973 h 26.927 c 0.527,0 0.967,-0.43 0.967,-0.973 v -39.687 c 0,-12.612 7.247,-21.511 17.762,-21.511 H 178.54 c 25.423,0 37.887,-15.62 37.887,-36.067 0,-20.415 -12.464,-36.188 -37.887,-36.188 z"
id="path4910"
inkscape:connector-curvature="0" />
<path
d="m 636.409,85.086 c -0.356,-0.399 -0.356,-1.084 0,-1.473 7.917,-6.557 11.835,-16.438 11.835,-27.874 0,-20.416 -12.438,-36.188 -37.938,-36.188 H 451.414 c -0.542,0 -0.94,0.44 -0.94,0.972 v 12.468 c 0,0.512 0.398,0.941 0.94,0.941 h 149.35 c 12.591,0 18.667,9.104 18.667,21.797 0,12.643 -6.035,21.726 -18.667,21.726 h -0.185 l -149.165,0.031 c -0.542,0 -0.94,0.389 -0.94,0.961 v 12.459 c 0,0.501 0.398,0.9 0.94,0.9 h 149.35 C 617.232,92 619.4,108.038 619.4,116.242 l 0.031,1.544 c 0,12.714 -6.076,21.859 -18.667,21.859 h -149.35 c -0.542,0 -0.94,0.388 -0.94,0.899 v 12.49 c 0,0.512 0.398,0.941 0.94,0.941 h 158.893 c 25.521,0 37.938,-16.939 37.938,-36.189 v -1.544 c -10e-4,-12.274 -3.919,-23.996 -11.836,-31.156 z"
id="path4912"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB

View file

@ -0,0 +1,155 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Capa_1"
x="0px"
y="0px"
viewBox="0 0 358.4 358.4"
xml:space="preserve"
sodipodi:docname="sonyplaystationportable-symbolic.svg"
width="256"
height="256"
inkscape:version="0.92.3 (2405546, 2018-03-11)"><metadata
id="metadata6393"><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="defs6391" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1871"
inkscape:window-height="1015"
id="namedview6389"
showgrid="false"
scale-x="1.4"
inkscape:zoom="0.921875"
inkscape:cx="299.49188"
inkscape:cy="85.116884"
inkscape:window-x="49"
inkscape:window-y="28"
inkscape:window-maximized="1"
inkscape:current-layer="Capa_1" />
<g
id="g6332"
transform="matrix(0.94555031,0,0,0.92961298,-62.859934,-58.779993)">
<g
id="g6330">
<path
d="M 185.292,219.796 H 72.551 c -2.761,0 -5,2.239 -5,5 v 4.458 c 0,2.762 2.239,5 5,5 H 175.834 V 248.77 H 72.551 c -2.761,0 -5,2.239 -5,5 v 33.432 c 0,2.761 2.239,5 5,5 h 4.457 c 2.761,0 5,-2.239 5,-5 V 263.23 h 103.283 c 2.761,0 5,-2.238 5,-5 v -33.433 c 0.002,-2.762 -2.238,-5.001 -4.999,-5.001 z"
id="path6328"
inkscape:connector-curvature="0" />
</g>
</g>
<g
id="g6338"
transform="matrix(0.94555031,0,0,0.92961298,-62.859934,-58.779993)">
<g
id="g6336">
<path
d="M 439.448,219.796 H 326.707 c -2.761,0 -5,2.239 -5,5 v 4.458 c 0,2.762 2.239,5 5,5 H 429.99 V 248.77 H 326.707 c -2.761,0 -5,2.239 -5,5 v 33.432 c 0,2.761 2.239,5 5,5 h 4.457 c 2.761,0 5,-2.239 5,-5 V 263.23 h 103.283 c 2.761,0 5,-2.238 5,-5 v -33.433 c 10e-4,-2.762 -2.238,-5.001 -4.999,-5.001 z"
id="path6334"
inkscape:connector-curvature="0"/>
</g>
</g>
<g
id="g6344"
transform="matrix(0.94555031,0,0,0.92961298,-62.859934,-58.779993)">
<g
id="g6342">
<path
d="m 305.001,219.797 h -62.197 c -2.761,0 -5,2.239 -5,5 v 52.948 h -52.511 c -2.761,0 -5,2.239 -5,5 v 4.457 c 0,2.76 2.238,5 5,5 h 62.19 c 2.761,0 5,-2.239 5,-5 v -52.947 h 52.518 c 2.761,0 5,-2.238 5,-5 v -4.458 c 0.001,-2.761 -2.238,-5 -5,-5 z"
id="path6340"
inkscape:connector-curvature="0"/>
</g>
</g>
<g
id="g6350"
transform="translate(0,-256)">
<g
id="g6348">
</g>
</g>
<g
id="g6356"
transform="translate(0,-256)">
<g
id="g6354">
</g>
</g>
<g
id="g6358"
transform="translate(0,-256)">
</g>
<g
id="g6360"
transform="translate(0,-256)">
</g>
<g
id="g6362"
transform="translate(0,-256)">
</g>
<g
id="g6364"
transform="translate(0,-256)">
</g>
<g
id="g6366"
transform="translate(0,-256)">
</g>
<g
id="g6368"
transform="translate(0,-256)">
</g>
<g
id="g6370"
transform="translate(0,-256)">
</g>
<g
id="g6372"
transform="translate(0,-256)">
</g>
<g
id="g6374"
transform="translate(0,-256)">
</g>
<g
id="g6376"
transform="translate(0,-256)">
</g>
<g
id="g6378"
transform="translate(0,-256)">
</g>
<g
id="g6380"
transform="translate(0,-256)">
</g>
<g
id="g6382"
transform="translate(0,-256)">
</g>
<g
id="g6384"
transform="translate(0,-256)">
</g>
<g
id="g6386"
transform="translate(0,-256)">
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 14 KiB

View file

@ -0,0 +1 @@
dreamcast-symbolic.svg

View file

@ -0,0 +1 @@
saturn-symbolic.svg

View file

@ -0,0 +1 @@
playstation-symbolic.svg

View file

@ -0,0 +1 @@
playstation2-symbolic.svg

View file

@ -0,0 +1 @@
playstation3-symbolic.svg

View file

@ -0,0 +1 @@
playstationportable-symbolic.svg

View file

@ -0,0 +1,65 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 17.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 415.792 415.792" style="enable-background:new 0 0 415.792 415.792;" xml:space="preserve">
<g>
<path d="M123.355,199.801h-7.897v-8.022c0-8.822-7.178-16-16-16h-7.769c-8.822,0-16,7.178-16,16v8.022h-8.178
c-8.822,0-16,7.178-16,16v7.769c0,8.822,7.178,16,16,16h8.178v8.334c0,8.822,7.178,16,16,16h7.769c8.822,0,16-7.178,16-16v-8.334
h7.897c8.822,0,16-7.178,16-16v-7.769C139.355,206.979,132.177,199.801,123.355,199.801z M123.355,223.57h-15.897
c-4.418,0-8,3.582-8,8l0.001,16.334h-7.771V231.57c0-4.418-3.582-8-8-8H67.511v-7.769h16.178c4.418,0,8-3.582,8-8v-16.022h7.769
v16.022c0,4.418,3.582,8,8,8h15.897V223.57z"/>
<path d="M311.477,219.849c0.001-2.205-0.908-4.312-2.513-5.824l-8.473-7.985c-1.484-1.399-3.447-2.178-5.487-2.178h-15.37
c-4.418,0-8,3.582-8,8v15.96c0,4.418,3.582,8,8,8h15.37c2.038,0,3.999-0.778,5.483-2.174l8.473-7.975
C310.566,224.161,311.476,222.054,311.477,219.849z"/>
<path d="M359.13,203.862h-15.371c-2.04,0-4.003,0.779-5.487,2.178l-8.473,7.985c-1.604,1.512-2.514,3.62-2.513,5.824
c0.001,2.205,0.911,4.312,2.517,5.823l8.473,7.975c1.484,1.396,3.445,2.174,5.483,2.174h15.371c4.418,0,8-3.582,8-8v-15.96
C367.13,207.443,363.548,203.862,359.13,203.862z"/>
<path d="M325.212,230.263c-1.511-1.605-3.617-2.516-5.822-2.517c-0.001,0-0.002,0-0.003,0c-2.204,0-4.311,0.909-5.822,2.513
l-7.985,8.473c-1.398,1.484-2.178,3.447-2.178,5.487v15.371c0,4.418,3.582,8,8,8h15.96c4.418,0,8-3.582,8-8v-15.371
c0-2.038-0.777-3.999-2.175-5.483L325.212,230.263z"/>
<path d="M313.565,209.424c1.512,1.604,3.618,2.513,5.822,2.513c0.001,0,0.002,0,0.003,0c2.205-0.001,4.312-0.912,5.822-2.517
l7.975-8.473c1.397-1.484,2.175-3.445,2.175-5.483v-15.37c0-4.418-3.582-8-8-8h-15.96c-4.418,0-8,3.582-8,8v15.37
c0,2.04,0.779,4.002,2.178,5.487L313.565,209.424z"/>
<path d="M325.528,124.048c-0.545-0.117-1.109-0.178-1.688-0.178h-52.467c-0.059-13.183-10.8-23.892-23.997-23.892h-79.5
c-13.198,0-23.938,10.708-23.997,23.892H95.972C43.053,123.87,0,166.923,0,219.842s43.053,95.972,95.972,95.972
c25.278,0,48.91-9.64,66.928-27.22h89.991c18.019,17.58,41.651,27.22,66.929,27.22c52.919,0,95.972-43.053,95.972-95.972
C415.792,168.844,376.25,127.021,325.528,124.048z M167.875,115.978h79.5c4.375,0,7.936,3.531,7.995,7.892h-95.49
C159.939,119.509,163.5,115.978,167.875,115.978z M319.82,299.813c-22.028,0-42.558-8.789-57.808-24.747
c-1.51-1.58-3.6-2.473-5.784-2.473h-96.665c-2.185,0-4.274,0.894-5.784,2.473c-15.25,15.958-35.78,24.747-57.808,24.747
C51.875,299.813,16,263.938,16,219.842s35.875-79.972,79.972-79.972h226.592c0.3,0.048,0.605,0.08,0.916,0.093
c42.791,1.926,76.312,37.013,76.312,79.878C399.792,263.938,363.917,299.813,319.82,299.813z"/>
<path d="M183.466,203.842c-8.822,0-16,7.178-16,16s7.178,16,16,16s16-7.178,16-16S192.289,203.842,183.466,203.842z"/>
<path d="M231.785,203.842c-8.822,0-16,7.178-16,16s7.178,16,16,16s16-7.178,16-16S240.607,203.842,231.785,203.842z"/>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
<g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.4 KiB

View file

@ -0,0 +1,95 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="256"
height="256"
viewBox="0 0 256 256"
version="1.1"
id="root"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="nintendoswitch-symbolic.svg">
<defs
id="defs4517" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.5195312"
inkscape:cx="7.6870967"
inkscape:cy="167.63306"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
inkscape:pagecheckerboard="true"
inkscape:window-width="2037"
inkscape:window-height="1008"
inkscape:window-x="2286"
inkscape:window-y="182"
inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
id="grid4484"
empspacing="4" />
</sodipodi:namedview>
<metadata
id="metadata4520">
<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:license
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Lines"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-229.26666)">
<g
style="stroke:none;fill-opacity:1;"
transform="matrix(0.0501406,0,0,-0.0501406,-9.6665186,495.40922)"
id="g10">
<path
inkscape:connector-curvature="0"
d="M 1365,5154 C 884,5068 497,4712 375,4244 331,4075 328,3976 333,2665 c 3,-1204 4,-1232 24,-1325 111,-501 467,-858 973,-976 66,-15 150,-18 691,-21 560,-4 618,-3 633,12 15,15 16,208 16,2396 0,1622 -3,2386 -10,2400 -10,18 -27,19 -613,18 -476,-1 -619,-4 -682,-15 z M 2270,2754 V 728 l -407,5 c -375,4 -415,6 -490,25 -322,83 -561,331 -628,654 -22,101 -22,2589 -1,2688 60,281 255,514 518,619 132,53 193,59 621,60 l 387,1 z"
id="path4"
style="fill-opacity:1;" />
<path
inkscape:connector-curvature="0"
d="m 1451,4169 c -63,-12 -159,-60 -210,-105 -105,-91 -157,-220 -149,-372 4,-79 9,-100 41,-164 47,-97 118,-168 215,-216 67,-33 84,-37 171,-40 79,-3 107,0 160,18 217,73 348,284 311,500 -43,257 -287,429 -539,379 z"
id="path6"
style="fill-opacity:1;" />
<path
inkscape:connector-curvature="0"
d="m 3157,5163 c -4,-3 -7,-1087 -7,-2409 0,-2181 1,-2402 16,-2408 27,-10 803,-6 899,4 406,46 764,293 959,660 25,47 58,126 75,175 63,188 61,138 61,1575 0,1147 -2,1318 -16,1391 -99,521 -496,914 -1018,1004 -70,12 -178,15 -526,15 -240,0 -440,-3 -443,-7 z M 4225,2985 c 156,-41 284,-160 336,-312 33,-94 32,-232 -1,-318 -61,-158 -181,-269 -335,-310 -250,-65 -516,86 -589,334 -22,76 -21,204 4,282 75,245 335,389 585,324 z"
id="path8"
style="fill-opacity:1;" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -0,0 +1,80 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="256"
height="256"
viewBox="0 0 256 256"
version="1.1"
id="root"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="nintendowii-symbolic.svg">
<defs
id="defs4517" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.2597656"
inkscape:cx="-17.775569"
inkscape:cy="117.29253"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="true"
units="px"
inkscape:pagecheckerboard="true"
inkscape:window-width="1699"
inkscape:window-height="1078"
inkscape:window-x="2781"
inkscape:window-y="135"
inkscape:window-maximized="0">
<inkscape:grid
type="xygrid"
id="grid4484"
empspacing="4" />
</sodipodi:namedview>
<metadata
id="metadata4520">
<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:license
rdf:resource="http://creativecommons.org/publicdomain/zero/1.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/publicdomain/zero/1.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
</cc:License>
</rdf:RDF>
</metadata>
<g
inkscape:label="Lines"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-229.26666)">
<path
inkscape:connector-curvature="0"
style="stroke-width:0.41368896;opacity:0.33"
d="M 69.950962,438.96275 C 62.432929,436.89853 55.104252,429.93258 51.898414,421.80376 49.74942,416.35468 41.983987,389.0167 14.765427,291.07805 l -4.081444,-14.68596 18.41654,-0.10777 c 10.129098,-0.0593 18.546166,0.034 18.704603,0.20686 0.158437,0.17301 7.053448,26.86294 15.322248,59.31094 l 15.034176,58.99636 7.1461,-27.34917 c 16.96993,-64.94628 19.85228,-75.41973 21.99395,-79.91814 2.88606,-6.06194 7.93,-10.39357 13.91928,-11.95358 3.15569,-0.82195 10.42799,-0.83071 13.55458,-0.0163 6.60033,1.71917 11.75918,6.47817 14.5993,13.46779 1.73196,4.26233 5.45923,17.98413 19.37874,71.3419 4.6891,17.97479 8.66064,33.00637 8.82561,33.40356 0.18676,0.4496 5.99887,-21.60342 15.39962,-58.43101 l 15.09964,-59.1532 18.70644,-0.002 c 14.78566,-0.001 18.66894,0.10588 18.52752,0.51456 -0.0983,0.28441 -4.08169,14.57219 -8.85174,31.75062 -22.79555,82.09372 -30.73113,109.66241 -32.96599,114.52577 -3.79616,8.26106 -10.17543,14.0014 -17.7532,15.97515 -3.16537,0.82449 -10.04769,0.83213 -13.18607,0.0148 -4.37056,-1.1384 -6.87048,-2.64314 -10.62009,-6.39241 -2.9286,-2.92833 -3.8634,-4.20535 -5.46317,-7.46291 -2.61542,-5.32571 -5.13642,-14.01181 -21.1918,-73.0161 -3.77663,-13.87926 -6.9708,-25.51426 -7.09816,-25.85556 -0.12736,-0.34128 -4.02426,13.22979 -8.65978,30.15795 -10.18831,37.20604 -15.55521,56.42668 -17.22293,61.681 -3.604842,11.35733 -10.159304,18.62833 -18.801115,20.85645 -3.116374,0.80352 -10.662455,0.81784 -13.547323,0.0258 z"
id="path827" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.8 KiB