Compare commits

..

No commits in common. "master" and "2.0" have entirely different histories.
master ... 2.0

105 changed files with 12600 additions and 31592 deletions

View File

@ -1 +0,0 @@
plugin_path: orientation

View File

@ -1,11 +1,7 @@
# CaLiÉc
FR :
Le projet CaLiÉc consiste à documenter et automatiser une procédure pour réaliser, en utilisant des données libres (OpenStreetMap) et avec le logiciel libre QGIS, des cartes dorientation très détaillées, à échelle rapprochée, pour de multiples usages.
EN:
CaLiÉc project consists in documenting and automating a procedure to realize, using feee data (OpenStreetMap) and with free software QGIS, detailed orientation maps at a small scale, for muliple usage.
# Installation et utilisation
Le plugin est disponible dans le gestionnaire d'extension de QGIS.
[Voir le wiki du projet pour plus de détails](https://forge.chapril.org/linux_alpes/caliec/wiki/CaLi%C3%89c)

View File

@ -1,53 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="en_US" sourcelanguage="fr_FR">
<context>
<name>Orientation</name>
<message>
<source>Zone étendue</source>
<translation>Large area</translation>
</message>
<message>
<source>La zone est vraiment trop étendue, descendre en-dessous de 1:20000</source>
<translation>The area is too large, lower the scale below 1:20000</translation>
</message>
<message>
<source>La zone est étendue et le téléchargement risque de prendre longtemps.
Continuer ?</source>
<translation>The area is large and the downloading might take time.
Continue?</translation>
</message>
<message>
<source>Sélectionnez un dossier de travail pour enregistrer le projet QGIS</source>
<translation>Select a working directory to save the QGIS project</translation>
</message>
<message>
<source>Attention</source>
<translation>Warning</translation>
</message>
<message>
<source>Vous n&apos;avez pas installé l&apos;extension QuickOSM</source>
<translation>You haven&apos;t installed QuickOSM extension</translation>
</message>
<message>
<source>Chargement</source>
<translation>Loading</translation>
</message>
<message>
<source>Récupération des data en ligne</source>
<translation>Gettin gonline data</translation>
</message>
<message>
<source>Erreur</source>
<translation>Error</translation>
</message>
<message>
<source>Les champs suivants sont en doublons et ont é supprimés au profit de leur doublon en minuscule :
-
- </source>
<translation>The following fields were duplicated and have been deleted using the lower-case field in priority:
-
- </translation>
</message>
</context>
</TS>

11
orientation/i18n/fr.ts Normal file
View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS><TS version="2.0" language="fr" sourcelanguage="en">
<context>
<name>@default</name>
<message>
<location filename="test_translations.py" line="48"/>
<source>Good morning</source>
<translation>Bonjour</translation>
</message>
</context>
</TS>

View File

@ -1,2 +0,0 @@
TRANSLATIONS = en.ts
SOURCES = ../orientation.py

View File

@ -6,7 +6,7 @@
name=CaLiÉc
qgisMinimumVersion=3.0
description=Réaliser des cartes dorientation
version=2.3
version=1.0
author=Association Linux-Alpes
email=caliec@linux-alpes.org

View File

@ -20,38 +20,27 @@
* *
***************************************************************************/
"""
from qgis.PyQt.QtCore import Qt, QSettings, QTranslator, QCoreApplication
from qgis.PyQt.QtGui import QIcon
from qgis.PyQt.QtWidgets import QAction, qApp, QFileDialog, QProgressBar, QMessageBox, QMenu, QToolButton
from qgis.core import QgsCoordinateReferenceSystem, QgsCoordinateTransformContext, QgsProject, QgsVectorFileWriter, QgsVectorLayer, QgsFeatureRequest
from qgis.utils import OverrideCursor
from processing import QgsProcessingException
# Initialize Qt resources from file resources.py
from .resources import *
import processing
import os.path
import shutil
import tempfile
from pathlib import Path
import processing
from processing import QgsProcessingException
from processing.tools import dataobjects
from qgis.core import (
QgsCoordinateReferenceSystem,
QgsCoordinateTransformContext,
QgsFeatureRequest,
QgsProject,
QgsVectorFileWriter,
QgsVectorLayer,
)
from qgis.PyQt.QtCore import QCoreApplication, QSettings, Qt, QTranslator, QUrl
from qgis.PyQt.QtGui import QDesktopServices, QIcon
from qgis.PyQt.QtWidgets import (
QAction,
QFileDialog,
QMenu,
QMessageBox,
QProgressBar,
QToolButton,
qApp,
)
from qgis.utils import OverrideCursor
# Initialize Qt resources from file resources.py
from .resources_rc import *
class Orientation:
"""QGIS Plugin Implementation."""
@ -69,10 +58,11 @@ class Orientation:
# initialize plugin directory
self.plugin_dir = os.path.dirname(__file__)
# initialize locale
locale = QSettings().value("locale/userLocale")[0:2]
locale = QSettings().value('locale/userLocale')[0:2]
locale_path = os.path.join(
self.plugin_dir, "i18n", "Orientation_{}.qm".format(locale)
)
self.plugin_dir,
'i18n',
'Orientation_{}.qm'.format(locale))
if os.path.exists(locale_path):
self.translator = QTranslator()
@ -81,7 +71,7 @@ class Orientation:
# Declare instance attributes
self.actions = []
self.menu = "CaLiÉc"
self.menu = self.tr('CaLiEc')
# Check if plugin was started the first time in current QGIS session
# Must be set in initGui() to survive plugin reloads
@ -100,7 +90,8 @@ class Orientation:
:rtype: QString
"""
# noinspection PyTypeChecker,PyArgumentList,PyCallByClass
return QCoreApplication.translate("Orientation", message)
return QCoreApplication.translate('Orientation', message)
def add_action(
self,
@ -112,8 +103,7 @@ class Orientation:
add_to_toolbar=True,
status_tip=None,
whats_this=None,
parent=None,
):
parent=None):
"""Add a toolbar icon to the toolbar.
:param icon_path: Path to the icon for this action. Can be a resource
@ -169,7 +159,9 @@ class Orientation:
self.iface.addToolBarIcon(action)
if add_to_menu:
self.iface.addPluginToMenu(self.menu, action)
self.iface.addPluginToMenu(
self.menu,
action)
self.actions.append(action)
@ -178,68 +170,35 @@ class Orientation:
def initGui(self):
"""Create the menu entries and toolbar icons inside the QGIS GUI."""
icon_path = ":/plugins/caliec/icon.png"
icon_path = ':/plugins/caliec/icon.png'
my_menu = QMenu()
my_menu.addActions(
[
self.add_action(
icon_path=":/plugins/caliec/vignette_caliec",
text=self.tr("Style CaLiÉc"),
parent=my_menu,
add_to_toolbar=False,
add_to_menu=False,
callback=lambda: self.run("style_caliec"),
),
self.add_action(
icon_path=":/plugins/caliec/vignette_kid",
text=self.tr("Style kid"),
parent=my_menu,
add_to_toolbar=False,
add_to_menu=False,
callback=lambda: self.run("style_kid"),
),
self.add_action(
icon_path=":/plugins/caliec/vignette_jardin",
text=self.tr("Style jardin"),
parent=my_menu,
add_to_toolbar=False,
add_to_menu=False,
callback=lambda: self.run("style_jardin"),
),
]
)
my_menu.addActions([self.add_action(icon_path=":/plugins/caliec/vignette_caliec", text=self.tr("Style CaLiÉc"), parent=my_menu,
add_to_toolbar=False, add_to_menu=False,
callback=lambda: self.run("style_caliec")),
self.add_action(icon_path=":/plugins/caliec/vignette_jardin", text=self.tr("Style jardin"), parent=my_menu,
add_to_toolbar=False, add_to_menu=False,
callback=lambda: self.run("style_jardin"))])
menu_action = self.add_action(
icon_path,
text=self.tr("DEV - Créer le projet"),
text=self.tr('Créer le projet'),
callback=lambda: None,
parent=self.iface.mainWindow(),
)
parent=self.iface.mainWindow())
menu_action.setMenu(my_menu)
self.iface.pluginToolBar().widgetForAction(menu_action).setPopupMode(
QToolButton.InstantPopup
)
self.help_action = QAction(QIcon(icon_path), "CaLiÉc", self.iface.mainWindow())
self.iface.pluginHelpMenu().addAction(self.help_action)
self.help_action.triggered.connect(self.show_help)
self.iface.pluginToolBar().widgetForAction(menu_action).setPopupMode(QToolButton.InstantPopup)
# will be set False in run()
self.first_start = True
@staticmethod
def show_help():
QDesktopServices.openUrl(
QUrl("https://forge.chapril.org/linux_alpes/caliec/wiki/CaLi%C3%89c")
)
def unload(self):
"""Removes the plugin menu item and icon from QGIS GUI."""
for action in self.actions:
self.iface.removePluginMenu("CaLiÉc", action)
self.iface.removePluginMenu(
self.tr('CaLiÉc'),
action)
self.iface.removeToolBarIcon(action)
self.iface.pluginHelpMenu().removeAction(self.help_action)
del self.help_action
def run(self, main_style):
try:
@ -251,7 +210,7 @@ class Orientation:
def main(self, main_style):
# Paramètres du projet
tempdir = tempfile.TemporaryDirectory()
styles_url = f"https://forge.chapril.org/linux_alpes/caliec/raw/branch/master/{main_style}/styles/"
styles_url = f'https://forge.chapril.org/linux_alpes/caliec/raw/tag/2.0/{main_style}/styles/'
lambert93 = QgsCoordinateReferenceSystem("EPSG:2154")
wgspm = QgsCoordinateReferenceSystem("EPSG:3857")
scr = wgspm
@ -264,13 +223,7 @@ class Orientation:
context.setInvalidGeometryCheck(QgsFeatureRequest.GeometryNoCheck)
if len(project.mapLayersByName("OpenStreetMap")) == 0:
QMessageBox.warning(
self.iface.mainWindow(),
self.tr("Attention"),
self.tr(
"Affichez d'abord un fond Openstreetmap (menu XYZ tiles) et cadrez la zone voulue"
),
)
QMessageBox.warning(self.iface.mainWindow(), "Attention", "Affichez d'abord un fond Openstreetmap (menu XYZ tiles) et cadrez la zone voulue")
return
# Correspondances des noms des couches et des styles:
@ -278,48 +231,25 @@ class Orientation:
# Commenter les couches non désirées
# L'ordre impacte directement l'ordre final des couches
names = {
# "OUTPUT_OTHER_RELATIONS": (None, "Autres"),
"OUTPUT_MULTIPOLYGONS": ("multipolygon", "Surfaces"),
# "OUTPUT_MULTILINESTRINGS": (None, "Multilignes"),
"OUTPUT_LINES": ("linestring", "Lignes"),
"OUTPUT_POINTS": ("point", "Points"),
}
#"OUTPUT_OTHER_RELATIONS": (None, "Autres"),
"OUTPUT_MULTIPOLYGONS": ("multipolygon", "Surfaces"),
#"OUTPUT_MULTILINESTRINGS": (None, "Multilignes"),
"OUTPUT_LINES": ("linestring", "Lignes"),
"OUTPUT_POINTS": ("point", "Points"),
}
# Vérif de l'échelle
if self.iface.mapCanvas().scale() > 10000:
if self.iface.mapCanvas().scale() > 20000:
QMessageBox.warning(
self.iface.mainWindow(),
self.tr("Zone étendue"),
self.tr(
"La zone est vraiment trop étendue, descendre en-dessous de 1:20000"
),
QMessageBox.Ok,
)
return
if (
QMessageBox.warning(
self.iface.mainWindow(),
self.tr("Zone étendue"),
self.tr(
"La zone est étendue et le téléchargement risque de prendre longtemps.\n"
"Continuer ?"
),
QMessageBox.Yes | QMessageBox.No,
)
== QMessageBox.No
):
if QMessageBox.warning(self.iface.mainWindow(), "Zone étendue",
"La zone est étendue et le téléchargement risque de prendre longtemps",
QMessageBox.Ok | QMessageBox.Cancel) == QMessageBox.Cancel:
return
# Paramétrage du dossier de travail
settings = QSettings()
dir = QFileDialog.getExistingDirectory(
self.iface.mainWindow(),
self.tr(
"Sélectionnez un dossier de travail pour enregistrer le projet QGIS"
),
settings.value("caliec/workingDir"),
)
dir = QFileDialog.getExistingDirectory(self.iface.mainWindow(),
"Sélectionnez un dossier de travail",
settings.value("caliec/workingDir"))
if dir == "":
return
settings.setValue("caliec/workingDir", dir)
@ -327,16 +257,10 @@ class Orientation:
# Construction de la requête overpass
try:
url = processing.run(
"quickosm:buildqueryextent",
parameters={"EXTENT": self.iface.mapCanvas().extent()},
)["OUTPUT_URL"]
url = processing.run("quickosm:buildqueryextent",
parameters={"EXTENT": self.iface.mapCanvas().extent()})["OUTPUT_URL"]
except QgsProcessingException:
QMessageBox.warning(
self.iface.mainWindow(),
self.tr("Attention"),
self.tr("Vous n'avez pas installé l'extension QuickOSM"),
)
QMessageBox.warning(self.iface.mainWindow(), "Attention", "Vous n'avez pas installé l'extension QuickOSM")
return
# Barre de chargement animée
@ -344,9 +268,7 @@ class Orientation:
message_bar = self.iface.messageBar()
progress_bar = QProgressBar()
progress_bar.setMaximum(0)
widget = message_bar.createMessage(
self.tr("Chargement"), self.tr("Récupération des data en ligne")
)
widget = message_bar.createMessage("Chargement", "Récupération des data en ligne")
widget.layout().addWidget(progress_bar)
message_bar.pushWidget(widget)
@ -359,25 +281,18 @@ class Orientation:
style_name, layer_name = style_layer_names
# On explose les champs
layer = processing.run(
"native:explodehstorefield",
parameters={
"INPUT": layers[osm_name],
"FIELD": "other_tags",
"OUTPUT": "memory:",
},
context=context,
)["OUTPUT"]
layer = processing.run("native:explodehstorefield",
parameters={"INPUT": layers[osm_name],
"FIELD": "other_tags",
"OUTPUT": "memory:"},
context=context)["OUTPUT"]
# On enlève les champs en doublons en gardant celui des doublons qui est écrit tout en minuscule
field_names = [a.name() for a in layer.fields()]
field_names_lower = [a.lower() for a in field_names]
expected_fields, deleted_fields = [], []
for field_name, field_name_lower in zip(field_names, field_names_lower):
if (
field_names_lower.count(field_name_lower) == 1
or field_name.lower() == field_name
):
if field_names_lower.count(field_name_lower) == 1 or field_name.lower() == field_name:
expected_fields.append(field_name)
else:
deleted_fields.append(field_name)
@ -385,52 +300,30 @@ class Orientation:
# S'il y a des doublons
if len(deleted_fields) > 0:
# On réexplose les champs sans doublons
layer = processing.run(
"native:explodehstorefield",
parameters={
"INPUT": layers[osm_name],
"FIELD": "other_tags",
"OUTPUT": "memory:",
"EXPECTED_FIELDS": ",".join(expected_fields),
},
context=context,
)["OUTPUT"]
layer = processing.run("native:explodehstorefield",
parameters={"INPUT": layers[osm_name],
"FIELD": "other_tags",
"OUTPUT": "memory:",
"EXPECTED_FIELDS": ",".join(expected_fields)},
context=context)["OUTPUT"]
# On enregistre le layer dans le gpkg
options.layerName = layer_name
code, error = QgsVectorFileWriter.writeAsVectorFormatV2(
layer,
str(workDir / "data.gpkg"),
QgsCoordinateTransformContext(),
options,
)
code, error = QgsVectorFileWriter.writeAsVectorFormatV2(layer, str(workDir / "data.gpkg"), QgsCoordinateTransformContext(), options)
if code != 0:
with OverrideCursor(Qt.ArrowCursor):
QMessageBox.warning(
self.iface.mainWindow(),
self.tr("Erreur"),
self.tr(
f"Erreur à l'export de la couche {layer_name} : \n\n{error[:2000]}"
),
)
QMessageBox.warning(self.iface.mainWindow(), 'Erreur', f"Erreur à l'export de la couche {layer_name} : \n\n{error[:2000]}")
return
new_layer = QgsVectorLayer(
str(workDir / f"data.gpkg|layername={layer_name}"), layer_name
)
new_layer = QgsVectorLayer(str(workDir / f"data.gpkg|layername={layer_name}"), layer_name)
# Les layers suivants seront enregistrés dans le gpkg déjà existant
options.actionOnExistingFile = QgsVectorFileWriter.CreateOrOverwriteLayer
# On charge le style
if style_name is not None:
stylefile = str((Path(tempdir.name) / style_name).with_suffix(".qml"))
processing.run(
"native:filedownloader",
parameters={
"URL": styles_url + f"{style_name}.qml",
"OUTPUT": stylefile,
},
)
stylefile = str((Path(tempdir.name) / style_name).with_suffix('.qml'))
processing.run("native:filedownloader",
parameters={"URL": styles_url + f"{style_name}.qml", "OUTPUT": stylefile})
new_layer.loadNamedStyle(stylefile)
# On charge le nouveau layer
@ -441,15 +334,11 @@ class Orientation:
except IndexError:
pass
self.iface.mapCanvas().refreshAllLayers()
project.write(str(workDir / "orient.qgs"))
project.write(str(workDir / 'orient.qgs'))
if len(deleted_fields) > 0:
with OverrideCursor(Qt.ArrowCursor):
QMessageBox.warning(
self.iface.mainWindow(),
self.tr("Attention"),
self.tr(
"Les champs suivants sont en doublons et ont été supprimés au profit de leur doublon en minuscule :\n- "
+ "\n - ".join(deleted_fields)
),
)
QMessageBox.warning(self.iface.mainWindow(), "Attention",
"Les champs suivants sont en doublons et ont été supprimés au profit de leur doublon en minuscule :\n- " +
"\n - ".join(deleted_fields))

File diff suppressed because it is too large Load Diff

View File

@ -3,6 +3,5 @@
<file>icon.png</file>
<file alias="vignette_jardin">../style_jardin/vignette_jardin.png</file>
<file alias="vignette_caliec">../style_caliec/vignette_caliec.png</file>
<file alias="vignette_kid">../style_kid/vignette_kid.png</file>
</qresource>
</RCC>

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,102 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="3.7180686mm"
height="3.6729476mm"
viewBox="0 0 3.7180686 3.6729476"
version="1.1"
id="svg5"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="bac-sable.svg"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
id="namedview7"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="26.910887"
inkscape:cx="3.5301698"
inkscape:cy="9.0855422"
inkscape:window-width="1680"
inkscape:window-height="985"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" /><defs
id="defs2" /><g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-19.568079,-20.011839)"><g
id="rect355"
style="opacity:0.995"><path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:bevel;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 19.746094,21.78125 -0.177735,0.177734 v 1.548828 l 0.177735,0.177735 h 3.363281 l 0.177734,-0.177735 V 21.958984 L 23.109375,21.78125 Z m 0.175781,0.355469 h 3.009766 v 1.193359 h -3.009766 z"
id="path3408" /><path
style="color:#000000;fill:#000000;stroke-width:0.354493;stroke-linecap:round;stroke-linejoin:bevel;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 19.745325,21.959408 h 3.363576 v 1.548132 h -3.363576 z"
id="path3410" /></g><g
id="path413"><path
style="color:#000000;fill:#ffffff;stroke-width:0.264583px;-inkscape-stroke:none"
d="m 19.872434,22.779824 0.0011,0.613013 3.116653,0.0337 -0.03792,-1.184757 c 0,0 -0.454532,-0.249938 -0.847591,-0.154834 -0.301946,0.07306 -0.802062,-0.605039 -1.079282,-0.745246 -0.221787,-0.112172 -0.550687,-0.367206 -0.742013,-0.208567 -0.117099,0.09709 -0.318619,0.800532 -0.373362,0.942455 -0.05452,0.249461 0.0092,0.455087 -0.03761,0.704241 z"
id="path3414" /><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 20.457031,20.951172 c -0.08544,-0.0047 -0.182237,0.01741 -0.257812,0.08008 -0.07535,0.06247 -0.09794,0.129182 -0.136719,0.216797 -0.03878,0.08761 -0.07674,0.190295 -0.113281,0.294922 -0.07309,0.209254 -0.141534,0.431031 -0.16211,0.484375 l -0.0039,0.0098 -0.002,0.0098 c -0.06235,0.28528 0.0013,0.494224 -0.03906,0.708984 l -0.03516,0.191407 0.0332,-0.0059 0.002,0.582031 3.384766,0.03711 -0.04492,-1.398438 -0.06641,-0.03711 c 0,0 -0.474196,-0.279061 -0.941406,-0.166016 -0.02191,0.0053 -0.07854,-0.0055 -0.158203,-0.05273 -0.07967,-0.04719 -0.175468,-0.124408 -0.271485,-0.210938 -0.192032,-0.173058 -0.371926,-0.376294 -0.558594,-0.470703 -0.09836,-0.04975 -0.240363,-0.145889 -0.390625,-0.210937 -0.07513,-0.03252 -0.152837,-0.05782 -0.238281,-0.0625 z m -0.01563,0.263672 c 0.03697,0.002 0.0897,0.01754 0.148438,0.04297 0.117466,0.05085 0.251576,0.138749 0.375,0.201172 0.09055,0.0458 0.299136,0.250817 0.501953,0.433594 0.101408,0.09139 0.20481,0.1784 0.3125,0.242188 0.10769,0.06379 0.228357,0.111307 0.357422,0.08008 0.291611,-0.07056 0.623268,0.09998 0.6875,0.130859 l 0.0293,0.947266 -2.847657,-0.03125 -0.002,-0.501953 c 0.03667,-0.255351 -0.0078,-0.454983 0.03516,-0.654297 1.29e-4,-5.94e-4 -1.29e-4,-0.0014 0,-0.002 0.03475,-0.09344 0.09035,-0.278382 0.158204,-0.472657 0.03532,-0.101109 0.07377,-0.199369 0.107421,-0.27539 0.03365,-0.07602 0.0793,-0.135021 0.0625,-0.121094 0.02009,-0.01666 0.03725,-0.02156 0.07422,-0.01953 z"
id="path3416" /></g><g
id="g1074"
transform="translate(5.7244359,0.13205955)"><g
id="path511"><path
style="color:#000000;fill:#000000;stroke-width:0.264583px;stroke-linecap:round;stroke-linejoin:bevel;-inkscape-stroke:none"
d="m 14.408547,22.375312 1.337489,-0.0066 -0.848018,-0.788143 z"
id="path3420" /><path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:bevel;-inkscape-stroke:none"
d="m 14.988281,21.484375 -0.203125,0.02734 -0.488281,0.794922 0.113281,0.201171 1.335938,-0.0059 0.08984,-0.230469 z m -0.0625,0.302734 0.486328,0.451172 -0.765625,0.002 z"
id="path3422" /></g><path
style="color:#000000;fill:#000000;-inkscape-stroke:none"
d="m 16.433594,20.6875 -1.234375,1.171875 0.18164,0.193359 1.236328,-1.173828 z"
id="path1067" /><path
style="color:#000000;fill:#000000;stroke-linejoin:round;-inkscape-stroke:none"
d="m 16.507812,19.900391 c -0.204319,0.131571 -0.544921,0.380859 -0.544921,0.380859 a 0.13230472,0.13230472 0 0 0 -0.01367,0.201172 l 0.921875,0.898437 a 0.13230472,0.13230472 0 0 0 0.208984,-0.03516 l 0.314453,-0.597656 a 0.13230472,0.13230472 0 0 0 -0.02539,-0.15625 l -0.697266,-0.675781 a 0.13230472,0.13230472 0 0 0 -0.164063,-0.01563 z m 0.05664,0.283203 0.550781,0.529297 -0.185547,0.353515 -0.68164,-0.662109 c 0.08165,-0.05882 0.181928,-0.12949 0.316406,-0.220703 z"
id="path1069" /></g><g
id="path1190"
style="opacity:0.995"><path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 22.183594,22.417969 a 0.08250825,0.08250825 0 0 0 -0.05078,0.01563 l -0.117187,0.08594 a 0.08250825,0.08250825 0 0 0 0.05078,0.148438 c 0.02466,-6.66e-4 0.01,3.3e-4 0.03711,0 a 0.08250825,0.08250825 0 0 0 0.04687,-0.01563 l 0.115234,-0.08398 a 0.08250825,0.08250825 0 0 0 -0.04687,-0.148437 c -0.026,-3.28e-4 -0.012,-0.0013 -0.03516,-0.002 z"
id="path3434" /><path
style="color:#000000;fill:#000000;stroke-width:0.165;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 22.063606,22.586372 c 0.02447,-6.61e-4 0.01162,-3.99e-4 0.03852,-7.27e-4 0,0 0.115571,-0.08397 0.115571,-0.08397 v 0 c -0.02576,-3.25e-4 -0.01358,-6e-5 -0.03652,-7.28e-4 0,0 -0.117578,0.08543 -0.117578,0.08543 z"
id="path3436" /></g><g
id="path1192"
style="opacity:0.995"><path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 21.417969,22.826172 a 0.08250825,0.08250825 0 0 0 -0.04687,0.01563 l -0.115235,0.08398 a 0.08250825,0.08250825 0 0 0 0.04883,0.148438 c 0.03451,2.1e-4 0.01437,-7.63e-4 0.04687,0 a 0.08250825,0.08250825 0 0 0 0.05078,-0.01563 l 0.117187,-0.08398 a 0.08250825,0.08250825 0 0 0 -0.05078,-0.148437 c -0.03415,7.52e-4 -0.01534,-2.13e-4 -0.05078,0 z"
id="path3440" /><path
style="color:#000000;fill:#000000;stroke-width:0.165;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 21.470745,22.907921 c -0.03393,7.47e-4 -0.01664,5e-4 -0.05186,7.12e-4 0,0 -0.114498,0.08319 -0.114498,0.08319 v 0 c 0.03427,2.09e-4 0.01764,-4.5e-5 0.04991,7.12e-4 0,0 0.116455,-0.08461 0.116455,-0.08461 z"
id="path3442" /></g><g
id="path1194"
style="opacity:0.995"><path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 22.566406,22.945312 c -0.02767,0.0014 -0.05499,0.0043 -0.08203,0.0078 a 0.08250825,0.08250825 0 0 0 -0.03906,0.01758 l -0.115234,0.08789 a 0.08250825,0.08250825 0 0 0 -0.03125,0.04687 0.08250825,0.08250825 0 0 0 0.0957,0.09961 c 0.01926,-0.0039 0.04069,-0.0062 0.06445,-0.0078 0.0042,-2.07e-4 0.0077,-0.0018 0.01172,-0.002 a 0.08250825,0.08250825 0 0 0 0.04492,-0.01563 l 0.117187,-0.08398 a 0.08250825,0.08250825 0 0 0 -0.05273,-0.150391 h -0.01172 a 0.08250825,0.08250825 0 0 0 -0.002,0 z"
id="path3446" /><path
style="color:#000000;fill:#000000;stroke-width:0.165;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 22.378975,23.123513 c 0.02486,-0.005 0.05015,-0.0074 0.07542,-0.0091 0.0041,-2.03e-4 0.0081,-4.07e-4 0.01221,-6.11e-4 0,0 0.116747,-0.08555 0.116747,-0.08555 v 0 c -0.0041,1.29e-4 -0.0082,2.59e-4 -0.01235,3.89e-4 -0.02527,0.0013 -0.05043,0.0037 -0.07553,0.007 0,0 -0.116492,0.08785 -0.116492,0.08785 z"
id="path3448" /></g><g
id="path1196"
style="opacity:0.995"><path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 20.375,22.867187 c -0.04215,0.01302 -0.08965,0.02738 -0.138672,0.05078 a 0.08250825,0.08250825 0 0 0 -0.01563,0.0098 l -0.113281,0.08789 a 0.08250825,0.08250825 0 0 0 0.08398,0.140625 c 0.03794,-0.01759 0.07902,-0.0327 0.123047,-0.04687 a 0.08250825,0.08250825 0 0 0 0.02539,-0.01367 l 0.109375,-0.08398 A 0.08250825,0.08250825 0 0 0 20.375,22.867187 Z"
id="path3452" /><path
style="color:#000000;fill:#000000;stroke-width:0.165;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 20.157367,23.080954 c 0.04303,-0.01995 0.08769,-0.03532 0.132768,-0.04983 0,0 0.109311,-0.08464 0.109311,-0.08464 v 0 c -0.04315,0.01333 -0.08668,0.02588 -0.127572,0.0454 0,0 -0.114507,0.08906 -0.114507,0.08906 z"
id="path3454" /></g></g></svg>

Before

Width:  |  Height:  |  Size: 9.6 KiB

View File

@ -1,68 +0,0 @@
<?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"
version="1.1"
viewBox="0 0 512 512"
enable-background="new 0 0 512 512"
id="svg8"
sodipodi:docname="letter-svgrepo-com.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata14">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs12" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview10"
showgrid="false"
inkscape:zoom="0.921875"
inkscape:cx="228.89591"
inkscape:cy="261.44697"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" />
<path
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#fffefe;stroke-width:14.7525425;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke"
d="m 52.299302,271.64592 c 0,-142.35651 0.01482,-143.34115 2.128103,-141.42865 1.170457,1.05925 44.421065,44.99175 96.112465,97.62779 51.6914,52.63604 95.48917,96.5908 97.32836,97.67724 5.2045,3.07437 11.58198,2.56303 17.74929,-1.42311 2.90779,-1.8794 47.17338,-46.08282 99.03173,-98.89265 51.57552,-52.52181 93.92128,-95.49419 94.1017,-95.49419 0.1804,0 0.32801,64.18983 0.32801,142.64407 V 415.00048 H 255.68913 52.299302 Z"
id="path825"
inkscape:connector-curvature="0" />
<path
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#fffefe;stroke-width:14.7525425;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke"
d="M 168.71994,186.34338 81.750738,97.712349 168.99112,97.434747 c 47.98221,-0.152681 126.52444,-0.152681 174.53829,0 l 87.2979,0.277602 -86.77977,88.406781 c -47.72888,48.62373 -87.13497,88.50769 -87.56909,88.63103 -0.43413,0.12333 -39.92546,-39.65972 -87.75851,-88.40678 z"
id="path827"
inkscape:connector-curvature="0" />
<g
id="g6">
<g
id="g4">
<path
d="M480.5,56H31.3C20,56,10.9,65.2,10.9,76.5v359c0,11.3,9.1,20.5,20.4,20.5h449.2c11.3,0,20.4-9.2,20.4-20.5v-359 C500.9,65.2,491.7,56,480.5,56z M432.4,97L256.3,276.2L80.2,97H432.4z M51.7,415V126.5l190,193.3c10.3,10.9,18.6,9,29.1,0 l189.3-192.5V415H51.7z"
id="path2" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -1,48 +0,0 @@
<?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 495 495" style="enable-background:new 0 0 495 495;" xml:space="preserve">
<g>
<rect x="381.009" y="195.505" style="fill:#FF5023;" width="76.931" height="120"/>
<rect x="37.061" y="195.505" style="fill:#FF0C38;" width="76.93" height="120"/>
<path style="fill:#FF5023;" d="M247.5,315.505c-33.084,0-60-26.916-60-60s26.916-60,60-60V153.51H113.99V455H247.5V315.505z"/>
<path style="fill:#FF0C38;" d="M381.009,153.51H247.5v41.995c33.084,0,60,26.916,60,60s-26.916,60-60,60l0,139.495h133.509V153.51z
"/>
<path style="fill:#FFA733;" d="M187.5,255.505c0,33.084,26.916,60,60,60l0-120C214.416,195.505,187.5,222.421,187.5,255.505z"/>
<path style="fill:#FF9811;" d="M307.5,255.505c0-33.084-26.916-60-60-60v120C280.584,315.505,307.5,288.589,307.5,255.505z"/>
<path style="fill:#C70024;" d="M247.5,0c-66.821,0-122.331,49.346-132.011,113.51H247.5V0z"/>
<path style="fill:#A5001E;" d="M379.51,113.51C369.83,49.346,314.321,0,247.5,0v113.51H379.51z"/>
<rect x="93.99" y="113.51" style="fill:#FFA733;" width="307.018" height="40"/>
<rect x="53.99" y="455" style="fill:#A5001E;" width="387.018" height="40"/>
</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>

Before

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1,135 +0,0 @@
<?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="127.51759mm"
height="74.327583mm"
viewBox="0 0 127.51759 74.327583"
version="1.1"
id="svg8"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
sodipodi:docname="cage_foot.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.7"
inkscape:cx="466.54066"
inkscape:cy="79.739722"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1878"
inkscape:window-height="1031"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-40.383943,-43.166939)">
<path
style="fill:none;stroke:#000000;stroke-width:1.04489565;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 56.027259,65.4896 H 152.27121"
id="path874"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:1.04489565;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 56.5788,78.214793 h 95.41664"
id="path876"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:1.04489565;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 55.751487,90.939985 H 151.99544"
id="path878"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:1.04489565;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 56.303031,103.66518 H 152.27121"
id="path880"
inkscape:connector-curvature="0" />
<path
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2.7650001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke"
d="M 41.766443,44.549439 V 107.48254 H 54.995609 V 57.610656 h 98.294261 v 50.040354 h 13.22916 V 44.717902 H 54.995609 v -0.168463 z"
id="rect918"
inkscape:connector-curvature="0" />
<g
transform="translate(1.7627355,7.1489988)"
id="g969">
<path
style="fill:#ffffff;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 123.22939,88.154239 c 0,-12.133208 -9.83599,-21.969128 -21.9692,-21.969128 -12.133205,0 -21.969125,9.83592 -21.969125,21.969128 0,12.133211 9.83592,21.969131 21.969125,21.969131 12.13321,0 21.9692,-9.83592 21.9692,-21.969131"
id="path951" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 100.92688,80.157144 -0.0139,-0.01023 -7.765067,5.650837 0.02414,0.0071 z"
id="path953" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 96.151434,94.964121 0.06711,-0.09849 -1.338351,-3.661828 1.220973,3.760314 z"
id="path955" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 86.591873,83.910024 -0.348654,-0.107898 -3.253564,5.412331 3.603582,-5.274424 z"
id="path957" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 92.09737,101.51906 0.08423,-0.13579 -3.715913,-1.406694 z"
id="path959" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 105.72464,94.964121 1.35601,-4.179422 -1.52945,4.179422 z"
id="path961" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 115.4839,83.927006 -0.006,0.125221 1.88487,2.919914 -1.83815,-3.05782 z"
id="path963" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 109.67087,101.63132 3.63162,-1.54248 -3.71585,1.40669 z"
id="path965" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 116.69552,102.88953 0.61445,-4.094233 0.0444,-0.0163 2.87408,-7.353734 2.36713,-2.490985 c -0.195,5.4006 -2.40539,10.296156 -5.90006,13.955252 m -6.984,-1.60079 -3.99575,-6.407759 1.524,-4.021804 1.73488,-4.74053 6.36506,-1.970731 1.87914,2.910912 2.63898,4.389965 -2.76188,7.06653 -3.85382,1.416376 z m -5.01109,6.66467 h -7.54791 l -4.950731,-6.5625 -0.02019,-0.008 -0.08423,0.13586 -0.04692,-0.0199 4.32599,-6.535019 h 9.002681 l -0.0158,0.04351 4.13891,6.580589 z m -3.44024,1.5504 c -2.062734,0 -4.05795,-0.29437 -5.946223,-0.84279 l 1.691234,-0.48519 v 0.0436 h 8.003169 l 1.68905,0.58259 c -1.73652,0.45764 -3.55891,0.70181 -5.43723,0.70181 m -12.728687,-9.682191 -3.858526,-1.638786 -2.762024,-6.847257 1.220428,-2.030272 3.547451,-5.192171 6.292084,1.89332 1.750161,5.266921 1.300157,3.603174 -4.12977,6.244752 z m -8.576821,-10.287357 1.588724,1.760255 -0.0074,0.01241 2.877015,7.133234 0.04733,0.02012 -0.03772,-0.01425 0.519299,3.460289 C 82.082035,98.518142 80.255759,94.230345 79.95471,89.534284 m 13.440185,-21.22851 -0.771105,1.534094 -6.521383,5.238617 -2.226492,0.695536 c 2.37272,-3.322244 5.672866,-5.938722 9.51898,-7.468247 m 7.378565,4.730027 v 7.001191 l -7.659972,5.576019 -6.234247,-1.826618 -0.439501,-8.547698 6.299722,-5.049558 z m 0.31346,-0.2604 -0.0337,0.01166 -1.487108,-0.527757 z m 7.59094,13.174874 -0.21265,0.580955 0.19322,-0.595004 z m -7.46108,-12.857457 8.23001,-2.847687 6.16154,5.048467 -0.43978,8.54879 -6.37454,1.833847 -7.57723,-5.562923 z m 17.66994,3.027744 -3.00033,-1.029391 -6.26071,-5.127991 0.005,-0.0015 -1.06144,-1.868426 c 4.21898,1.541801 7.81928,4.378917 10.31791,8.027309 m 2.82074,3.395699 c -1.11771,-2.6426 -2.71776,-5.015797 -4.7556,-7.053708 -2.03791,-2.037911 -4.41104,-3.637889 -7.05364,-4.755603 -2.73617,-1.157271 -5.64231,-1.744091 -8.638,-1.744091 -2.995619,0 -5.901824,0.58682 -8.637931,1.744091 -2.6426,1.117714 -5.015797,2.717692 -7.053708,4.755603 -2.037911,2.037911 -3.637889,4.411108 -4.755603,7.053708 -1.157271,2.736107 -1.744091,5.642312 -1.744091,8.637932 0,2.995619 0.58682,5.901825 1.744091,8.637999 1.117714,2.6426 2.717692,5.015867 4.755603,7.053637 2.037911,2.03784 4.411108,3.63789 7.053708,4.75567 2.736107,1.1572 5.642312,1.74402 8.637931,1.74402 2.99569,0 5.90183,-0.58682 8.638,-1.74402 2.6426,-1.11778 5.01573,-2.71783 7.05364,-4.75567 2.03784,-2.03777 3.63789,-4.411037 4.7556,-7.053637 1.15728,-2.736174 1.7441,-5.64238 1.7441,-8.637999 0,-2.99562 -0.58682,-5.901825 -1.7441,-8.637932"
id="path967" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.4 KiB

View File

@ -1,48 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="3.6033981mm"
height="3.603915mm"
viewBox="0 0 3.603398 3.603915"
version="1.1"
id="svg5"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="collecteur-eau-pluie.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview7"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="38.057741"
inkscape:cx="4.9398623"
inkscape:cy="9.235966"
inkscape:window-width="1680"
inkscape:window-height="985"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs2" />
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-19.261616,-20.26938)">
<path
id="path7286"
style="color:#000000;opacity:0.995;fill:#000000;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 21.06254,20.26938 c -0.992811,0 -1.800924,0.810179 -1.800924,1.802991 0,0.992811 0.808113,1.800924 1.800924,1.800924 0.992811,0 1.802474,-0.808113 1.802474,-1.800924 0,-0.992812 -0.809663,-1.802991 -1.802474,-1.802991 z m 0,0.400493 c 0.337906,0 0.647175,0.118467 0.888835,0.316259 h -1.77767 c 0.24166,-0.197792 0.550929,-0.316259 0.888835,-0.316259 z m -1.224731,0.716752 h 2.449462 c 0.07413,0.132578 0.127117,0.278601 0.15503,0.433565 h -2.760038 c 0.02791,-0.154967 0.08141,-0.300984 0.155546,-0.433565 z m -0.170016,0.834057 h 2.789494 c -0.0161,0.154208 -0.05715,0.300733 -0.118856,0.435633 h -2.551782 c -0.06171,-0.1349 -0.102755,-0.281425 -0.118856,-0.435633 z m 0.395325,0.836125 h 1.998327 c -0.25401,0.256978 -0.607158,0.415995 -0.998905,0.415995 -0.391784,0 -0.745406,-0.158974 -0.999422,-0.415995 z" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1,60 +0,0 @@
<?xml version="1.0" encoding="windows-1252"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 393.652 393.652" style="enable-background:new 0 0 393.652 393.652;" xml:space="preserve" width="512" height="512">
<g>
<rect x="170.212" y="152.226" style="fill:#5C6670;" width="53.23" height="57.395"/>
<rect x="170.212" y="152.226" style="opacity:0.2;fill:#222222;" width="26.615" height="57.395"/>
<path style="opacity:0.2;fill:#222222;" d="M170.212,152.226v14.156c8.471,2.369,17.389,3.663,26.615,3.663 c9.226,0,18.144-1.294,26.615-3.663v-14.156H170.212z"/>
<g>
<path style="fill:#7D868C;" d="M120.401,112.067c13.969,28.079,42.937,47.382,76.426,47.382c33.49,0,62.459-19.303,76.428-47.382 H120.401z"/>
<path style="opacity:0.1;fill:#222222;" d="M120.401,112.067c13.969,28.079,42.937,47.382,76.426,47.382v-47.382H120.401z"/>
<path style="opacity:0.2;fill:#222222;" d="M120.401,112.067c3.604,7.245,8.213,13.898,13.633,19.794H259.62 c5.422-5.896,10.031-12.549,13.635-19.794H120.401z"/>
<path style="fill:#A4A9AD;" d="M270.126,124.046H123.528c-6.615,0-11.977-5.363-11.977-11.979c0-6.614,5.361-11.977,11.977-11.977 h146.598c6.615,0,11.979,5.362,11.979,11.977C282.105,118.683,276.741,124.046,270.126,124.046z"/>
</g>
<path style="fill:#00B3E3;" d="M347.554,182.338c-4.142,0-7.5-3.358-7.5-7.5c0-12.798-10.411-23.21-23.209-23.21 c-12.799,0-23.211,10.412-23.211,23.21c0,4.142-3.357,7.5-7.5,7.5c-4.143,0-7.5-3.358-7.5-7.5c0-21.069,17.142-38.21,38.211-38.21 c21.068,0,38.209,17.141,38.209,38.21C355.054,178.98,351.696,182.338,347.554,182.338z"/>
<g>
<path style="fill:#00B3E3;" d="M107.52,182.338c-4.142,0-7.5-3.358-7.5-7.5c0-12.798-10.413-23.21-23.211-23.21 c-6.204,0-12.035,2.417-16.421,6.807c-2.928,2.93-7.677,2.932-10.606,0.005c-2.931-2.928-2.933-7.677-0.005-10.607 c7.219-7.226,16.819-11.205,27.032-11.205c21.069,0,38.211,17.141,38.211,38.21C115.02,178.98,111.662,182.338,107.52,182.338z"/>
<path style="fill:#00B3E3;" d="M46.101,182.338c-4.143,0-7.5-3.358-7.5-7.5c0-3.078,0.367-6.143,1.093-9.11 c0.984-4.024,5.042-6.488,9.067-5.505c4.023,0.984,6.487,5.044,5.504,9.067c-0.44,1.803-0.664,3.669-0.664,5.548 C53.601,178.98,50.242,182.338,46.101,182.338z"/>
</g>
<path style="fill:#00B3E3;" d="M289.289,17.169C278.229,6.098,263.52,0.001,247.872,0.001c-21.892,0-41.002,12.084-51.045,29.925 C186.784,12.085,167.674,0,145.783,0c-32.281,0-58.544,26.263-58.544,58.544c0,4.142,3.357,7.5,7.5,7.5c4.142,0,7.5-3.358,7.5-7.5 c0-24.01,19.533-43.544,43.544-43.544c24.01,0,43.544,19.534,43.544,43.544v20.378c0,4.142,3.357,7.5,7.5,7.5 c4.143,0,7.5-3.358,7.5-7.5V58.544c0-24.01,19.534-43.543,43.545-43.543c11.639,0,22.579,4.535,30.806,12.769 c2.928,2.93,7.677,2.933,10.606,0.005C292.215,24.848,292.217,20.099,289.289,17.169z M304.736,44.576 c-0.985-4.022-5.047-6.485-9.07-5.498c-4.022,0.986-6.484,5.047-5.498,9.069c0.827,3.376,1.247,6.874,1.247,10.396 c0,4.142,3.357,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5C306.415,53.819,305.851,49.12,304.736,44.576z"/>
<g>
<rect x="96.931" y="216.127" style="fill:#7D868C;" width="199.794" height="75.517"/>
<g>
<path style="fill:#969DA2;" d="M135.494,237.403c-10.122,0-18.329,8.207-18.329,18.33v35.91h36.659v-35.91 C153.824,245.61,145.617,237.403,135.494,237.403z"/>
<path style="fill:#969DA2;" d="M196.826,237.403c-10.123,0-18.329,8.207-18.329,18.33v35.91h36.659v-35.91 C215.156,245.61,206.948,237.403,196.826,237.403z"/>
<path style="fill:#969DA2;" d="M258.158,237.403c-10.122,0-18.33,8.207-18.33,18.33v35.91h36.659v-35.91 C276.487,245.61,268.28,237.403,258.158,237.403z"/>
</g>
<rect x="96.931" y="216.127" style="opacity:0.1;fill:#222222;" width="99.896" height="75.517"/>
<rect x="96.931" y="216.127" style="opacity:0.2;fill:#222222;" width="199.794" height="27.126"/>
<path style="fill:#A4A9AD;" d="M295.47,221.598H98.185c-6.615,0-11.978-5.362-11.978-11.978c0-6.615,5.362-11.978,11.978-11.978 H295.47c6.615,0,11.978,5.362,11.978,11.978C307.448,216.235,302.085,221.598,295.47,221.598z"/>
</g>
<g>
<rect x="26.001" y="294.326" style="fill:#7D868C;" width="341.65" height="99.326"/>
<g>
<path style="fill:#969DA2;" d="M64.503,335.141c-10.921,0-19.774,8.854-19.774,19.773v38.738h39.546v-38.738 C84.275,343.994,75.423,335.141,64.503,335.141z"/>
<path style="fill:#969DA2;" d="M130.664,335.141c-10.92,0-19.773,8.854-19.773,19.773v38.738h39.545v-38.738 C150.437,343.994,141.584,335.141,130.664,335.141z"/>
<path style="fill:#969DA2;" d="M196.826,335.141c-10.92,0-19.773,8.854-19.773,19.773v38.738H216.6v-38.738 C216.6,343.994,207.745,335.141,196.826,335.141z"/>
<path style="fill:#969DA2;" d="M262.988,335.141c-10.919,0-19.773,8.854-19.773,19.773v38.738h39.547v-38.738 C282.762,343.994,273.907,335.141,262.988,335.141z"/>
<path style="fill:#969DA2;" d="M329.149,335.141c-10.919,0-19.772,8.854-19.772,19.773v38.738h39.547v-38.738 C348.924,343.994,340.069,335.141,329.149,335.141z"/>
</g>
<rect x="26.001" y="294.326" style="opacity:0.1;fill:#222222;" width="170.825" height="99.326"/>
<rect x="26.001" y="294.326" style="opacity:0.2;fill:#222222;" width="341.65" height="27.127"/>
<path style="fill:#A4A9AD;" d="M375.172,306.304H18.48c-6.615,0-11.977-5.363-11.977-11.978c0-6.615,5.362-11.978,11.977-11.978 h356.691c6.614,0,11.978,5.362,11.978,11.978C387.149,300.94,381.786,306.304,375.172,306.304z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.4 KiB

View File

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,52 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="2.829627mm"
height="2.9575572mm"
viewBox="0 0 2.829627 2.9575572"
version="1.1"
id="svg5"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="homme-course.svg"
xml:space="preserve"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
id="namedview7"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="26.910887"
inkscape:cx="-3.3815311"
inkscape:cy="4.2547836"
inkscape:window-width="1680"
inkscape:window-height="985"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" /><defs
id="defs2" /><g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-19.563113,-20.738281)"><path
style="color:#000000;fill:#000000;stroke-linecap:round;-inkscape-stroke:none"
d="m 20.863281,22.140625 a 0.1825,0.1825 0 0 0 -0.126953,0.05859 l -0.333984,0.36914 -0.634766,-0.07813 a 0.1825,0.1825 0 0 0 -0.203125,0.158203 0.1825,0.1825 0 0 0 0.158203,0.203125 l 0.824219,0.103516 0.460937,-0.509766 a 0.1825,0.1825 0 0 0 -0.01367,-0.257812 0.1825,0.1825 0 0 0 -0.13086,-0.04687 z"
id="path8668" /><path
style="color:#000000;opacity:0.995;fill:#000000;stroke-linecap:round;stroke-linejoin:bevel;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 21.677734,20.738281 c -0.224575,0 -0.371093,0.202614 -0.371093,0.408203 0,0.20559 0.146518,0.410157 0.371093,0.410157 0.224575,0 0.369141,-0.204567 0.369141,-0.410157 0,-0.205589 -0.144566,-0.408203 -0.369141,-0.408203 z"
id="path8724" /><path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none"
d="m 20.835937,21.171875 a 0.18251825,0.18251825 0 0 0 -0.193359,0.03516 l -0.443359,0.414063 a 0.1825,0.1825 0 0 0 -0.0078,0.259765 0.1825,0.1825 0 0 0 0.257813,0.0078 l 0.357422,-0.335938 0.421875,0.171875 0.269531,0.492188 a 0.18251825,0.18251825 0 0 0 0.121094,0.0918 l 0.552734,0.11914 A 0.1825,0.1825 0 0 0 22.388685,22.289056 0.1825,0.1825 0 0 0 22.24806,22.07226 l -0.46875,-0.103516 -0.261719,-0.476563 a 0.18251825,0.18251825 0 0 0 -0.0918,-0.08203 z"
id="path8726" /><path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none"
d="m 21.251953,21.503906 a 0.1825,0.1825 0 0 0 -0.111328,0.08594 l -0.351563,0.615234 a 0.18251825,0.18251825 0 0 0 0.01367,0.201172 l 0.330078,0.439453 -0.230468,0.601563 a 0.1825,0.1825 0 0 0 0.103515,0.236328 0.1825,0.1825 0 0 0 0.236328,-0.105469 l 0.267579,-0.695313 a 0.18251825,0.18251825 0 0 0 -0.02344,-0.175781 l -0.320312,-0.423828 0.291015,-0.511719 a 0.1825,0.1825 0 0 0 -0.06641,-0.25 0.1825,0.1825 0 0 0 -0.138672,-0.01758 z"
id="path8728" /></g></svg>

Before

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 MiB

View File

@ -1,70 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 612 612" style="enable-background:new 0 0 612 612;" xml:space="preserve">
<g>
<path d="M517.002,127.269c34.795-48.858,48.567-97.321,49.136-99.359c1.588-5.689,0.565-11.789-2.793-16.647
c-3.36-4.86-8.703-7.972-14.587-8.499C528.185,0.93,508.54,0,490.369,0c-91.523,0-153.357,23.368-183.782,69.456
c-31.759,48.104-18.893,105.348-8.956,134.088c-0.016,0.027-0.031,0.053-0.046,0.078c-6.111-4.977-12.544-8.849-18.563-11.7
c-8.083-43.785-36.625-88.232-96.018-88.232c-35.876,0-80.007,16.408-131.173,48.769c-3.615,2.286-6.027,6.063-6.579,10.303
c-0.554,4.242,0.808,8.511,3.715,11.649c2.623,2.831,65.198,69.347,147.254,69.347c20.353,0,40.183-4.142,59.18-12.339
c4.999,1.786,19.32,8.008,23.498,21.693c-3.719,16.277-6.058,34.191-6.92,53.19H90.676c-12.338,0-22.338,10.001-22.338,22.338
v23.308c0,12.338,10.001,22.337,22.338,22.337h15.216L137.81,592.89c1.602,10.974,11.012,19.11,22.103,19.11h286.694
c11.091,0,20.501-8.136,22.103-19.11l31.911-218.604h15.22c12.338,0,22.338-10.001,22.338-22.337v-23.31
c0-12.338-10.001-22.338-22.338-22.338H317.43c1.71-33.528,8.615-60.571,18.14-77.553
C407.427,228.128,470.132,193.082,517.002,127.269z M83.253,167.056c39.467-22.953,72.967-34.572,99.751-34.572
c36.966,0,54.318,23.243,62.463,45.171c-1.169-0.658-2.375-1.327-3.646-2.009c-12.044-6.528-28.857-13.734-46.45-17.672
c-4.373-1.028-8.808-1.792-13.163-2.425c-2.18-0.31-4.362-0.507-6.493-0.758c-2.144-0.149-4.262-0.295-6.344-0.443
c-2.082-0.047-4.127-0.095-6.129-0.14c-1.996,0.046-3.947,0.093-5.848,0.139c-3.794,0.232-7.348,0.503-10.606,0.975
c-1.632,0.175-3.181,0.436-4.65,0.718c-1.467,0.272-2.857,0.496-4.154,0.766c-2.581,0.629-4.824,1.107-6.646,1.617
c-3.613,1.077-5.678,1.694-5.678,1.694s2.138-0.171,5.881-0.472c1.865-0.118,4.142-0.12,6.723-0.197
c1.296,0.007,2.676,0.077,4.122,0.113c1.444,0.029,2.96,0.093,4.539,0.257c3.157,0.206,6.548,0.667,10.099,1.194
c1.763,0.332,3.575,0.673,5.427,1.023c1.825,0.432,3.69,0.875,5.587,1.323c1.867,0.538,3.764,1.081,5.688,1.633
c1.896,0.645,3.819,1.236,5.726,1.938c3.81,1.413,7.625,2.935,11.339,4.69c14.93,6.852,28.318,16.354,37.485,24.19
c4.61,3.897,8.196,7.367,10.575,9.8c0.37,0.377,0.7,0.722,1.012,1.048c-14.128,5.511-28.733,8.305-43.634,8.305
C146.748,214.965,103.918,184.633,83.253,167.056z M339.763,91.36c22.604-34.242,73.277-51.604,150.604-51.604
c9.277,0,18.986,0.263,29.049,0.78c-18.246,44.301-67.983,137.118-167.304,147.514c0.177-0.598,0.365-1.229,0.58-1.927
c1.385-4.488,3.597-11.014,6.796-18.712c1.573-3.861,3.44-7.988,5.5-12.334c2.109-4.309,4.384-8.865,6.991-13.437
c2.556-4.607,5.401-9.255,8.437-13.905c1.562-2.282,3.077-4.661,4.756-6.909l2.477-3.434l2.59-3.354
c3.451-4.501,7.173-8.777,10.96-12.921c1.9-2.062,3.885-4.001,5.806-5.994c2.013-1.892,3.998-3.759,5.954-5.596
c2.044-1.752,4.056-3.473,6.025-5.157c2.053-1.597,4.063-3.159,6.018-4.679c2.033-1.435,4.009-2.827,5.921-4.176
c1.918-1.364,3.885-2.481,5.722-3.67c0.93-0.574,1.83-1.165,2.733-1.695c0.915-0.507,1.808-1.004,2.68-1.488
c1.752-0.959,3.402-1.914,4.988-2.74c3.217-1.537,6.016-2.973,8.38-4.007c4.783-1.994,7.518-3.134,7.518-3.134
s-2.924,0.549-8.043,1.509c-2.558,0.525-5.615,1.351-9.182,2.211c-1.763,0.489-3.613,1.088-5.587,1.683
c-0.986,0.304-2,0.613-3.035,0.932c-1.028,0.343-2.06,0.742-3.126,1.125c-2.113,0.804-4.386,1.531-6.636,2.503
c-2.26,0.968-4.599,1.969-7.004,2.999c-2.363,1.145-4.789,2.321-7.266,3.524c-2.432,1.322-4.913,2.671-7.438,4.043
c-2.466,1.495-4.973,3.013-7.509,4.55c-2.461,1.653-5.013,3.274-7.494,5.031c-4.946,3.527-9.908,7.266-14.629,11.291
c-4.798,3.958-9.324,8.22-13.729,12.502c-4.355,4.322-8.524,8.717-12.38,13.136c-3.907,4.386-7.45,8.818-10.785,13.069
c-3.279,4.286-6.315,8.411-8.982,12.323c-1.054,1.528-2.045,3.006-3.001,4.453C324.619,133.264,327.418,110.06,339.763,91.36z"/>
</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>

Before

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -1,43 +1,813 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 18.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"
viewBox="0 0 296.166 296.166" style="enable-background:new 0 0 296.166 296.166;" xml:space="preserve">
<path d="M215.25,34.5c0-6.903-5.597-12.5-12.5-12.5h-15.222c2.683-2.293,4.389-5.694,4.389-9.5c0-6.903-5.597-12.5-12.5-12.5
h-62.667c-6.903,0-12.5,5.597-12.5,12.5c0,3.806,1.706,7.207,4.389,9.5H93.416c-6.903,0-12.5,5.597-12.5,12.5
c0,6.5,4.963,11.838,11.305,12.439l9.361,86.331c-5.026,1.619-8.666,6.33-8.666,11.896c0,6.903,5.597,12.5,12.5,12.5h21.299V281.97
c0,7.841,6.355,14.196,14.196,14.196h14.607c7.841,0,14.196-6.355,14.196-14.196V157.666h21.034c6.903,0,12.5-5.597,12.5-12.5
c0-5.565-3.64-10.276-8.666-11.896l9.361-86.331C210.287,46.338,215.25,41,215.25,34.5z M116.605,132.666L107.316,47h9.912
l5.784,53.334c0.417,3.844,3.667,6.692,7.447,6.692c0.27,0,0.543-0.015,0.817-0.045c4.118-0.446,7.094-4.146,6.648-8.265L132.316,47
h56.534l-9.289,85.666H116.605z"/>
<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>
<?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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="306.87485"
height="534.74402"
version="1.1"
id="svg217"
sodipodi:docname="lampadaire.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata223">
<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>streetlight d.aoi</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs221">
<inkscape:path-effect
effect="simplify"
id="path-effect1079"
is_visible="true"
steps="1"
threshold="0.0308998"
smooth_angles="360"
helper_size="0"
simplify_individual_paths="false"
simplify_just_coalesce="false"
simplifyindividualpaths="false"
simplifyJustCoalesce="false" />
<inkscape:path-effect
effect="simplify"
id="path-effect1075"
is_visible="true"
steps="1"
threshold="0.0308998"
smooth_angles="360"
helper_size="0"
simplify_individual_paths="false"
simplify_just_coalesce="false"
simplifyindividualpaths="false"
simplifyJustCoalesce="false" />
<inkscape:path-effect
effect="simplify"
id="path-effect1071"
is_visible="true"
steps="1"
threshold="0.0308998"
smooth_angles="360"
helper_size="0"
simplify_individual_paths="false"
simplify_just_coalesce="false"
simplifyindividualpaths="false"
simplifyJustCoalesce="false" />
<inkscape:path-effect
effect="simplify"
id="path-effect1067"
is_visible="true"
steps="1"
threshold="0.0308998"
smooth_angles="360"
helper_size="0"
simplify_individual_paths="false"
simplify_just_coalesce="false"
simplifyindividualpaths="false"
simplifyJustCoalesce="false" />
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview219"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="0.83084406"
inkscape:cx="368.47373"
inkscape:cy="175.41452"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg217" />
<title
id="title2">streetlight d.aoi</title>
<linearGradient
y2="0"
x2="0.5"
y1="1"
x1="0.5"
id="rect18_1_">
<stop
stop-color="#8FB8DF"
offset="0"
id="stop4" />
<stop
stop-color="#86B1DB"
offset="0.1094"
id="stop6" />
<stop
stop-color="#6C9ECF"
offset="0.2912"
id="stop8" />
<stop
stop-color="#437FBB"
offset="0.5217"
id="stop10" />
<stop
stop-color="#3A78B7"
offset="0.5674"
id="stop12" />
<stop
stop-color="#245199"
offset="1"
id="stop14" />
</linearGradient>
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,-1,114.9448,468.0098)"
r="90.184898"
cy="393.99271"
cx="83.555397"
id="polygon103_1_">
<stop
stop-color="#FFFFFF"
offset="0"
id="stop17" />
<stop
stop-color="#000000"
offset="0.6538"
id="stop19" />
</radialGradient>
<linearGradient
y2="253.0168"
x2="280.47318"
y1="253.0168"
x1="228.53442"
id="path355_1_"
gradientTransform="scale(0.77012568,1.2984894)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#1F1E21"
offset="0.6813"
id="stop22" />
<stop
stop-color="#28272A"
offset="0.7161"
id="stop24" />
<stop
stop-color="#414143"
offset="0.7737"
id="stop26" />
<stop
stop-color="#58595B"
offset="0.8187"
id="stop28" />
<stop
stop-color="#1F1E21"
offset="0.956"
id="stop30" />
</linearGradient>
<linearGradient
y2="900.31067"
x2="86.422379"
y1="900.31067"
x1="70.277214"
id="path390_1_"
gradientTransform="scale(2.5329334,0.39479917)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#1F1E21"
offset="0.6813"
id="stop33" />
<stop
stop-color="#28272A"
offset="0.7161"
id="stop35" />
<stop
stop-color="#414143"
offset="0.7737"
id="stop37" />
<stop
stop-color="#58595B"
offset="0.8187"
id="stop39" />
<stop
stop-color="#1F1E21"
offset="0.956"
id="stop41" />
</linearGradient>
<linearGradient
y2="400.15097"
x2="167.40916"
y1="400.15097"
x1="136.13446"
id="path312_1_"
gradientTransform="scale(1.3075933,0.7647638)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#000000"
offset="0.6813"
id="stop44" />
<stop
stop-color="#28272A"
offset="0.7161"
id="stop46" />
<stop
stop-color="#414143"
offset="0.7737"
id="stop48" />
<stop
stop-color="#58595B"
offset="0.8187"
id="stop50" />
<stop
stop-color="#000000"
offset="0.956"
id="stop52" />
</linearGradient>
<linearGradient
y2="346.47784"
x2="214.20921"
y1="346.47784"
x1="174.19151"
id="path370_1_"
gradientTransform="scale(1.0219126,0.97855724)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#000000"
offset="0.6813"
id="stop55" />
<stop
stop-color="#28272A"
offset="0.7161"
id="stop57" />
<stop
stop-color="#414143"
offset="0.7737"
id="stop59" />
<stop
stop-color="#58595B"
offset="0.8187"
id="stop61" />
<stop
stop-color="#000000"
offset="0.956"
id="stop63" />
</linearGradient>
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,-1,114.9448,468.0098)"
fy="118.5923"
fx="101.7087"
r="26.7481"
cy="127.0464"
cx="83.054901"
id="path377_1_">
<stop
stop-color="#585858"
offset="0"
id="stop66" />
<stop
stop-color="#000000"
offset="0.3846"
id="stop68" />
</radialGradient>
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g20"
transform="translate(-43.065173,87.144043)">
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g22">
<line
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="line24"
x1="155"
y1="109.517"
x2="175"
y2="256.52399" />
<circle
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circle26"
cx="175"
cy="256.52399"
r="6.053" />
<circle
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circle28"
cx="155.00101"
cy="109.517"
r="6.053" />
</g>
</g>
<polygon
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="polygon103"
points="253,38.517 321.001,91.517 155,109.517 76,59.517 "
transform="translate(-43.065173,87.144043)" />
<polygon
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="polygon105"
points="225,229.524 261,249.524 175,256.524 136,237.524 "
transform="translate(-43.065173,87.144043)" />
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g107"
transform="translate(-43.065173,87.144043)">
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="svg_1">
<defs
id="defs83">
<polygon
id="SVGID_1_"
points="321.001,91.517 261,249.524 225,229.524 253,38.517 " />
</defs>
<clipPath
id="SVGID_2_">
<use
height="100%"
width="100%"
y="0"
x="0"
xlink:href="#SVGID_1_"
id="svg_2" />
</clipPath>
</g>
</g>
<polygon
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="polygon137"
points="76,59.517 202,5.517 253,38.517 "
transform="translate(-43.065173,87.144043)" />
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g141"
transform="translate(-43.065173,87.144043)">
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path143"
d="m 171,259.524 c -1.41,2.115 -2,2.996 -2,5.5 0,2.199 1.54,4.58 2.5,6.5 0.889,1.775 2.583,3.082 3.981,4.481 1.451,1.451 2.798,2.98 4.429,4.285 1.704,1.363 2.768,2.83 4.127,4.529 1.011,1.265 3.744,3.608 4.067,5.224 0.912,4.562 1.896,8.649 1.896,13.31 0,-0.015 4,1.243 4,-1.095 0,-2.536 -0.396,-4.715 -0.896,-7.215 -0.875,-4.371 -1.777,-7.86 -4.609,-11.399 -2.866,-3.583 -6.104,-6.729 -9.347,-9.971 -2.656,-2.656 -6.708,-5.942 -6.148,-10.148 0.328,-2.458 2.599,-4.896 4,-7 -0.667,-1 -1.333,-2 -2,-3 -0.667,1 -1.333,2 -2,3 0.667,-1 1.333,-2 2,-3 -1.333,1.999 -2.666,3.999 -4,5.999 0.667,-1 1.333,-2 2,-3 -0.666,1 -1.333,2 -2,3 0.667,-1 1.333,-2 2,-3" />
</g>
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g145"
transform="translate(-43.065173,87.144043)">
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path147"
d="m 220,288.524 c 1.845,-1.844 4.913,-4.73 7.156,-5.954 3.202,-1.746 5.309,-3.572 8.51,-5.318 5.343,-2.914 10.952,-5.299 16.174,-8.432 2.569,-1.541 5.64,-1.832 8.16,-3.296 2.223,-1.289 4.983,-3.342 7,-5 2.487,-2.045 3.897,-3.577 0.963,-5.777 -2.927,-2.195 -5.472,-3.059 -8.963,-4.223 1.133,-2.266 1.062,-4.47 3.557,-3.223 2.304,1.152 3.733,1.794 6.123,2.749 2.013,0.805 4.609,2.139 5.32,4.474 0.375,1.23 0.401,4.838 -1.166,6.11 -3.547,2.879 -6.67,5.814 -10.834,7.89 -3.762,1.875 -7.734,3.368 -11.516,5.258 -8.72,4.36 -17.594,8.5 -25.123,14.774 -1.879,1.564 -3.106,2.961 -4.584,4.931 -1.27,1.692 -0.777,3.964 -0.777,6.037 0,2.903 -1.405,2 -4,2 -1.871,0 -1.104,-3.479 -0.784,-5.08 0.803,-4.013 1.858,-4.993 4.784,-7.92" />
</g>
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g149"
transform="translate(-43.065173,87.144043)">
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path151"
d="m 127.237,242.688 c 0.45,-2.162 2.399,-3.104 4.566,-3.465 2.411,-0.401 5.732,-0.089 4.696,-3.199 -0.852,-2.557 -3.495,-1.072 -5.92,-0.726 -2.285,0.326 -4.297,1.312 -6.439,2.17 -1.401,0.56 -2.225,3.704 -2.141,5.056 0.169,2.734 1.236,4.235 3.051,6.051 2.929,2.928 5.866,5.894 9.332,8.204 7.842,5.228 16.028,10.165 23.618,15.745 3.44,2.529 7.239,5.239 10.258,8.258 2.065,2.065 8.742,7.102 8.742,10.367 0,2.036 0,4.073 0,6.108 0,2.145 2.174,1.267 4,1.267 1.812,0 1.146,-3.41 1,-5 -0.129,-1.396 -0.353,-3.921 -1.069,-5.116 -4.667,-7.778 -11.021,-12.678 -18.272,-17.95 -6.589,-4.793 -13.497,-9.159 -20.276,-13.679 -3.261,-2.174 -6.085,-4.677 -9.469,-6.707 -1.872,-1.123 -6.159,-5.065 -5.677,-7.384 z" />
</g>
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g217"
transform="translate(-43.065173,87.144043)">
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path219"
d="m 231.544,232.467 c -0.206,-1.707 -0.099,-3.22 -1.855,-4.099 -1.472,-0.735 -2.903,-1.249 -4.465,-1.77 -0.536,-0.179 -1.91,3.302 -2.224,3.926 2.278,1.139 4.06,1.291 4,4 -0.054,2.485 -0.549,4.335 -1.886,6.341 -0.998,1.497 -1.459,3.566 -2.376,5.095 -1.252,2.088 -2.539,4.066 -3.442,6.324 -3.354,8.387 -8.6,15.95 -12.171,24.281 -1.984,4.633 -3.125,8.785 -3.125,13.874 0,1.062 -0.578,5.507 0,6.085 0.358,0.358 2.838,0 3.375,0 1.183,0 0.625,-1.741 0.625,-2.733 0,-2.035 -0.309,-4.271 0,-6.267 0.318,-2.06 1.455,-4.093 2.029,-6.102 1.414,-4.949 2.936,-8.635 5.435,-13.134 2.975,-5.353 5.416,-11.052 8.146,-16.57 1.494,-3.02 3.558,-5.53 5.077,-8.569 1.036,-2.07 3.133,-8.4 2.857,-10.682 z" />
</g>
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g223"
transform="translate(-43.065173,87.144043)">
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path225"
d="m 176,15.517 c -0.668,2.671 -1.302,3.547 0.213,5.819 1.198,1.797 3.048,3.146 5.044,3.944 3.833,1.533 8.968,3.236 13.133,3.236 8.932,0 18.913,1.349 27.167,-2.778 3.78,-1.891 9.541,-4.221 6.425,-9.445 -2.145,-3.592 -6.422,-5.138 -10.384,-6.128 -8.974,-2.243 -17.549,-3.412 -26.672,-1.131 -5.73,1.434 -10.172,2.918 -14.926,6.483" />
</g>
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g291"
transform="translate(-43.065173,87.144043)">
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path293"
d="m 225.671,114.071 c 0,18.512 -11.126,33.522 -24.854,33.522 -13.707,0 -24.833,-15.011 -24.833,-33.522 0,-18.516 11.126,-33.523 24.833,-33.523 13.728,0 24.854,15.008 24.854,33.523 z" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path295"
d="m 210.998,75.517 c 0,1.742 -4.479,3.157 -9.997,3.157 -5.544,0 -10.031,-1.415 -10.031,-3.157 0,-1.734 4.487,-3.151 10.031,-3.151 5.518,0 9.997,1.417 9.997,3.151 z" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path297"
d="m 210.998,85.511 c 0,1.742 -4.479,3.157 -9.997,3.157 -5.544,0 -10.031,-1.415 -10.031,-3.157 0,-1.734 4.487,-3.151 10.031,-3.151 5.518,0 9.997,1.417 9.997,3.151 z" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect299"
x="190.96899"
y="75.516998"
width="20.028"
height="9.9940004" />
</g>
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g314"
transform="translate(-43.065173,87.144043)">
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g316">
<line
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="line318"
x1="136"
y1="237.524"
x2="76"
y2="59.516998" />
<circle
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circle320"
cx="76"
cy="59.516998"
r="6.053" />
<circle
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circle322"
cx="136"
cy="237.524"
r="6.053" />
</g>
</g>
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g324"
transform="translate(-43.065173,87.144043)">
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g326">
<line
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="line328"
x1="225"
y1="229.524"
x2="253"
y2="38.516998" />
<circle
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circle330"
cx="253.00101"
cy="38.516998"
r="6.053" />
<circle
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circle332"
cx="225"
cy="229.524"
r="6.053" />
</g>
</g>
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g334"
transform="translate(-43.065173,87.144043)">
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g336">
<line
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="line338"
x1="321.00101"
y1="91.516998"
x2="261"
y2="249.524" />
<circle
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circle340"
cx="261"
cy="249.524"
r="6.053" />
<circle
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="circle342"
cx="321.00201"
cy="91.516998"
r="6.053" />
</g>
</g>
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path355"
d="m 154.74583,442.95804 c 9.421,0 17.116,1.227 17.355,2.741 l 0.834,-59.031 -35,-1 -0.604,59.983 c 0.395,-1.492 8.024,-2.693 17.415,-2.693 z" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path390"
d="m 162.97383,445.77204 h 12.863 v -2.933 -0.261 c -0.43,-1.762 -9.416,-3.18 -20.403,-3.18 -11.07,0 -20.061,1.418 -20.491,3.18 v 0.261 2.933 h 12.902" />
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g394"
transform="translate(-43.065173,87.144043)">
<radialGradient
id="path401_1_"
cx="90.7117"
cy="576.31488"
r="12.6218"
gradientTransform="matrix(1,0,0,-1.844,114.9448,1002.6381)"
gradientUnits="userSpaceOnUse">
<stop
id="stop123"
offset="0"
stop-color="#585858" />
<stop
id="stop125"
offset="0.3846"
stop-color="#000000" />
</radialGradient>
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path401"
d="m 208.223,-44.927 c 1.496,-2.595 4.222,-8.713 3.748,-11.741 -0.705,-4.51 -2.299,-8.469 -4.339,-12.549 -1.005,-2.01 -2.215,-3.903 -3.37,-5.83 -1.636,-2.724 -3.734,2.019 -4.36,3.062 -2.283,3.804 -4.318,7.168 -5.401,11.502 -1.157,4.63 -0.041,8.376 1.427,12.778 0.952,2.859 2.052,2.259 0.387,5.035 -1.278,2.13 -2.717,4.06 -4.209,6.05 -0.938,1.249 -2.104,3.9 -2.104,5.45 0,2.428 0.869,1.688 3.155,1.688 6.23,0 12.46,0 18.69,0 0.45,0 2.813,0.334 3.154,0 0.85,-0.832 -0.782,-4.567 -1.155,-5.312 -1.729,-3.455 -3.856,-6.687 -5.623,-10.133" />
</g>
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g403"
transform="translate(-43.065173,87.144043)">
<radialGradient
id="path410_1_"
cx="95.499802"
cy="475.30219"
r="28.0669"
gradientTransform="matrix(1,0,0,-0.9269,114.9448,425.0285)"
gradientUnits="userSpaceOnUse">
<stop
id="stop130"
offset="0"
stop-color="#585858" />
<stop
id="stop132"
offset="0.3846"
stop-color="#000000" />
</radialGradient>
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path410"
d="m 188,-28.483 c -1.429,2.858 0,2.958 0,5.688 0,0.596 -4.319,3.633 -5.051,4.363 -2.944,2.944 -5.589,6.856 -7.334,10.622 C 173.777,-3.843 174,0.515 174,4.783 c 0,4.899 1.514,8.248 5,11.734 2.066,2.066 6.562,1.126 9.336,1.189 6.618,0.15 13.236,0.301 19.854,0.451 4.945,0.112 9.89,0.225 14.834,0.337 2.947,0.067 5.521,-5.158 6.132,-7.603 1.572,-6.29 1.256,-12.846 -1.156,-18.875 -1.308,-3.269 -3.05,-5.549 -5.53,-8.031 -1.455,-1.455 -5.47,-4.498 -5.47,-6.781 0,-1.757 1.25,-3.188 0.5,-4.688 -0.775,-1.553 -2.062,-2.471 -3.381,-3.575 -1.969,-1.648 -5.928,-2.425 -8.415,-2.425 -3.251,0 -6.542,-0.291 -9.704,0.5 -3.567,0.893 -5.416,1.918 -8,4.501 l 1,-1" />
</g>
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path312"
d="m 155.43483,381.20604 c -11.322,0 -20.491,1.779 -20.491,3.962 v 19.956 h 40.895 v -19.956 c -0.001,-2.183 -9.167,-3.962 -20.404,-3.962 z" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path357"
d="m 175.83783,405.12404 c 0,2.166 -9.166,3.941 -20.403,3.941 -11.322,0 -20.491,-1.775 -20.491,-3.941 0,-2.184 9.169,-3.962 20.491,-3.962 11.237,0.001 20.403,1.78 20.403,3.962 z" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path370"
d="m 155.43483,406.61204 c -11.322,0 -20.491,1.625 -20.491,3.617 v 35.543 h 40.895 v -35.543 c -0.001,-1.992 -9.167,-3.617 -20.404,-3.617 z" />
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path392"
d="m 175.83783,445.77204 c 0,1.812 -9.166,3.293 -20.403,3.293 -11.322,0 -20.491,-1.481 -20.491,-3.293 0,-1.817 9.169,-3.303 20.491,-3.303 11.237,10e-4 20.403,1.486 20.403,3.303 z" />
<g
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="g412"
transform="translate(-43.065173,87.144043)">
<linearGradient
gradientUnits="userSpaceOnUse"
gradientTransform="scale(0.10032534,9.9675719)"
id="polygon425_1_"
x1="1790.3156"
y1="39.869671"
x2="2144.7004"
y2="39.869671">
<stop
id="stop141"
offset="0.6813"
stop-color="#000000" />
<stop
id="stop143"
offset="0.7161"
stop-color="#28272A" />
<stop
id="stop145"
offset="0.7737"
stop-color="#414143" />
<stop
id="stop147"
offset="0.8187"
stop-color="#58595B" />
<stop
id="stop149"
offset="0.956"
stop-color="#000000" />
</linearGradient>
<polygon
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="polygon425"
points="179.614,436.3 180.397,358.507 180.394,358.74 " />
<linearGradient
gradientUnits="userSpaceOnUse"
gradientTransform="scale(0.10032534,9.9675719)"
id="polygon440_1_"
x1="1790.3156"
y1="39.869671"
x2="2144.7004"
y2="39.869671">
<stop
id="stop153"
offset="0.6813"
stop-color="#000000" />
<stop
id="stop155"
offset="0.7161"
stop-color="#28272A" />
<stop
id="stop157"
offset="0.7737"
stop-color="#414143" />
<stop
id="stop159"
offset="0.8187"
stop-color="#58595B" />
<stop
id="stop161"
offset="0.956"
stop-color="#000000" />
</linearGradient>
<polygon
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="polygon440"
points="179.614,436.3 180.397,358.507 180.394,358.74 " />
<linearGradient
gradientUnits="userSpaceOnUse"
gradientTransform="scale(0.11878726,8.418411)"
id="polygon453_1_"
x1="1512.1917"
y1="47.209419"
x2="1811.3667"
y2="47.209419">
<stop
id="stop165"
offset="0.6813"
stop-color="#000000" />
<stop
id="stop167"
offset="0.7161"
stop-color="#28272A" />
<stop
id="stop169"
offset="0.7737"
stop-color="#414143" />
<stop
id="stop171"
offset="0.8187"
stop-color="#58595B" />
<stop
id="stop173"
offset="0.956"
stop-color="#000000" />
</linearGradient>
<polygon
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="polygon453"
points="214.071,436.3 215.165,358.707 215.167,358.556 214.07,436.3 " />
<linearGradient
gradientUnits="userSpaceOnUse"
gradientTransform="scale(0.11878726,8.418411)"
id="polygon468_1_"
x1="1512.1917"
y1="47.209419"
x2="1811.3667"
y2="47.209419">
<stop
id="stop177"
offset="0.6813"
stop-color="#000000" />
<stop
id="stop179"
offset="0.7161"
stop-color="#28272A" />
<stop
id="stop181"
offset="0.7737"
stop-color="#414143" />
<stop
id="stop183"
offset="0.8187"
stop-color="#58595B" />
<stop
id="stop185"
offset="0.956"
stop-color="#000000" />
</linearGradient>
<polygon
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="polygon468"
points="214.071,436.3 215.165,358.707 215.167,358.556 214.07,436.3 " />
<linearGradient
gradientUnits="userSpaceOnUse"
gradientTransform="scale(0.66463109,1.5045941)"
id="path481_1_"
x1="270.24615"
y1="263.23224"
x2="323.74008"
y2="263.23224">
<stop
id="stop189"
offset="0.6813"
stop-color="#000000" />
<stop
id="stop191"
offset="0.7161"
stop-color="#28272A" />
<stop
id="stop193"
offset="0.7737"
stop-color="#414143" />
<stop
id="stop195"
offset="0.8187"
stop-color="#58595B" />
<stop
id="stop197"
offset="0.956"
stop-color="#000000" />
</linearGradient>
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path481"
d="m 214.07,436.3 1.098,-77.744 c -0.239,-1.516 -7.935,-2.741 -17.355,-2.741 -9.392,0 -17.021,1.2 -17.415,2.692 l -0.783,77.793 z" />
<linearGradient
gradientUnits="userSpaceOnUse"
gradientTransform="scale(0.66463109,1.5045941)"
id="path494_1_"
x1="270.24615"
y1="263.23224"
x2="323.74008"
y2="263.23224">
<stop
id="stop201"
offset="0.6813"
stop-color="#000000" />
<stop
id="stop203"
offset="0.7161"
stop-color="#28272A" />
<stop
id="stop205"
offset="0.7737"
stop-color="#414143" />
<stop
id="stop207"
offset="0.8187"
stop-color="#58595B" />
<stop
id="stop209"
offset="0.956"
stop-color="#000000" />
</linearGradient>
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path494"
d="m 214.07,436.3 1.098,-77.744 c -0.239,-1.516 -7.935,-2.741 -17.355,-2.741 -9.392,0 -17.021,1.2 -17.415,2.692 l -0.783,77.793 z" />
</g>
<path
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:22.60000038;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
id="path377"
d="m 187.90783,428.18504 c 0,10.146 -14.77,18.461 -32.973,18.461 -18.205,0 -32.975,-8.313 -32.975,-18.461 0,-10.299 14.77,-18.615 32.975,-18.615 18.204,-0.001 32.973,8.316 32.973,18.615 z" />
<path
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 32.934827,146.66104 60,178.00701 125.000003,12 60.001,-158.00701 z"
id="path1081"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 32 KiB

View File

@ -1,21 +0,0 @@
<?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="463.89285" height="438.87704" id="svg2" sodipodi:version="0.32" inkscape:version="0.46" version="1.0" sodipodi:docname="dynaHouse.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs id="defs4">
<inkscape:perspective sodipodi:type="inkscape:persp3d" inkscape:vp_x="0 : 526.18109 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" id="perspective10"/>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" gridtolerance="10000" guidetolerance="10" objecttolerance="10" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="1.4098083" inkscape:cx="231.94643" inkscape:cy="219.43852" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1006" inkscape:window-height="954" inkscape:window-x="660" inkscape:window-y="43"/>
<metadata id="metadata7">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-42.339286,-276.34171)">
<path style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.40000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 437.14509,499.4375 L 437.14509,499.4375 z M 437.14509,499.4375 L 274.33259,355.25 L 111.42634,499.5 L 111.42634,705.625 C 111.42634,710.94838 115.72796,715.21875 121.05134,715.21875 L 222.86384,715.21875 L 222.86384,624.84375 C 222.86384,619.52035 227.13421,615.21875 232.45759,615.21875 L 316.11384,615.21875 C 321.43719,615.21875 325.70759,619.52037 325.70759,624.84375 L 325.70759,715.21875 L 427.55134,715.21875 C 432.87471,715.21875 437.14511,710.9484 437.14509,705.625 L 437.14509,499.4375 z M 111.42634,499.5 L 111.42634,499.5 z" id="rect2391" sodipodi:nodetypes="cccccccccccccccccc"/>
<path style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.40000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 273.3878,276.34171 L 42.339286,480.92527 L 66.677596,508.38266 L 274.33298,324.49848 L 481.9411,508.38266 L 506.23215,480.92527 L 275.2309,276.34171 L 274.33298,277.3814 L 273.3878,276.34171 z" id="path2399"/>
<path style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.40000001;stroke-miterlimit:4;stroke-opacity:1" d="M 111.42634,305.79074 L 169.99777,305.79074 L 169.48739,340.48183 L 111.42634,392.9336 L 111.42634,305.79074 z" id="rect2404" sodipodi:nodetypes="ccccc"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -1,92 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="3.814636mm"
height="5.3916502mm"
viewBox="0 0 3.8146359 5.3916502"
version="1.1"
id="svg5"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="marelle.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview7"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="38.057741"
inkscape:cx="5.0581037"
inkscape:cy="10.444656"
inkscape:window-width="1680"
inkscape:window-height="985"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs2" />
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-19.257999,-19.95002)">
<g
id="rect234"
style="opacity:0.995">
<path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 19.396484,21.541016 c -0.0757,6e-6 -0.138665,0.06102 -0.138672,0.136718 v 1.763672 c 7e-6,0.0757 0.06297,0.138666 0.138672,0.138672 h 1.761719 c 0.0757,-6e-6 0.138666,-0.06297 0.138672,-0.138672 v -1.763672 c -6e-6,-0.0757 -0.06297,-0.136712 -0.138672,-0.136718 z m 0,0.09961 h 1.761719 c 0.02166,2e-6 0.03906,0.01545 0.03906,0.03711 v 1.763672 c -2e-6,0.02166 -0.0174,0.03906 -0.03906,0.03906 h -1.761719 c -0.02166,-2e-6 -0.03906,-0.0174 -0.03906,-0.03906 v -1.763672 c 2e-6,-0.02166 0.0174,-0.03711 0.03906,-0.03711 z m 0.08789,0.07617 a 0.050005,0.050005 0 0 0 -0.05078,0.05078 v 1.585938 a 0.050005,0.050005 0 0 0 0.05078,0.04883 h 1.585937 a 0.050005,0.050005 0 0 0 0.05078,-0.04883 v -1.585938 a 0.050005,0.050005 0 0 0 -0.05078,-0.05078 z m 0.05078,0.09961 h 1.486328 v 1.486328 h -1.486328 z"
id="path2717" />
<path
style="color:#000000;fill:#000000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 19.396149,21.590318 a 0.08815731,0.08815731 0 0 0 -0.08815,0.08815 v 1.76297 a 0.08815731,0.08815731 0 0 0 0.08815,0.08815 h 1.76297 a 0.08815731,0.08815731 0 0 0 0.08815,-0.08815 v -1.76297 a 0.08815731,0.08815731 0 0 0 -0.08815,-0.08815 z m 0.08815,0.176297 h 1.586673 v 1.586673 h -1.586673 z"
id="path2719" />
</g>
<g
id="rect234-3"
style="opacity:0.995">
<path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 21.171875,21.541016 c -0.0757,6e-6 -0.138666,0.06102 -0.138672,0.136718 v 1.763672 c 6e-6,0.0757 0.06297,0.138666 0.138672,0.138672 h 1.761719 c 0.0757,-6e-6 0.138665,-0.06297 0.138672,-0.138672 v -1.763672 c -7e-6,-0.0757 -0.06297,-0.136712 -0.138672,-0.136718 z m 0,0.09961 h 1.761719 c 0.02166,2e-6 0.03906,0.01545 0.03906,0.03711 v 1.763672 c -2e-6,0.02166 -0.0174,0.03906 -0.03906,0.03906 h -1.761719 c -0.02166,-2e-6 -0.03906,-0.0174 -0.03906,-0.03906 v -1.763672 c 2e-6,-0.02166 0.0174,-0.03711 0.03906,-0.03711 z m 0.08789,0.07617 a 0.050005,0.050005 0 0 0 -0.05078,0.05078 v 1.585938 a 0.050005,0.050005 0 0 0 0.05078,0.04883 h 1.585937 a 0.050005,0.050005 0 0 0 0.05078,-0.04883 v -1.585938 a 0.050005,0.050005 0 0 0 -0.05078,-0.05078 z m 0.05078,0.09961 h 1.486328 v 1.486328 h -1.486328 z"
id="path2711" />
<path
style="color:#000000;fill:#000000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 21.171515,21.590318 a 0.08815731,0.08815731 0 0 0 -0.08815,0.08815 v 1.76297 a 0.08815731,0.08815731 0 0 0 0.08815,0.08815 h 1.76297 a 0.08815731,0.08815731 0 0 0 0.08815,-0.08815 v -1.76297 a 0.08815731,0.08815731 0 0 0 -0.08815,-0.08815 z m 0.08815,0.176297 h 1.586673 v 1.586673 h -1.586673 z"
id="path2713" />
</g>
<g
id="rect234-3-6"
style="opacity:0.995">
<path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 20.283203,23.302734 c -0.0757,7e-6 -0.136712,0.06297 -0.136719,0.138672 v 1.761719 c 7e-6,0.0757 0.06102,0.138666 0.136719,0.138672 h 1.763672 c 0.0757,-6e-6 0.138666,-0.06297 0.138672,-0.138672 v -1.761719 c -6e-6,-0.0757 -0.06297,-0.138665 -0.138672,-0.138672 z m 0,0.09961 h 1.763672 c 0.02166,2e-6 0.03711,0.0174 0.03711,0.03906 v 1.761719 c -1e-6,0.02166 -0.01545,0.03906 -0.03711,0.03906 h -1.763672 c -0.02166,-1e-6 -0.03711,-0.0174 -0.03711,-0.03906 v -1.761719 c 2e-6,-0.02166 0.01545,-0.03906 0.03711,-0.03906 z m 0.08789,0.07617 a 0.050005,0.050005 0 0 0 -0.04883,0.05078 v 1.585937 a 0.050005,0.050005 0 0 0 0.04883,0.05078 h 1.58789 a 0.050005,0.050005 0 0 0 0.04883,-0.05078 v -1.585937 a 0.050005,0.050005 0 0 0 -0.04883,-0.05078 z m 0.05078,0.09961 h 1.486328 v 1.486328 h -1.486328 z"
id="path2723" />
<path
style="color:#000000;fill:#000000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 20.283763,23.3524 a 0.08815731,0.08815731 0 0 0 -0.08815,0.08815 v 1.76297 a 0.08815731,0.08815731 0 0 0 0.08815,0.08815 h 1.76297 a 0.08815731,0.08815731 0 0 0 0.08815,-0.08815 v -1.76297 a 0.08815731,0.08815731 0 0 0 -0.08815,-0.08815 z m 0.08815,0.176298 h 1.586673 v 1.586672 h -1.586673 z"
id="path2725" />
</g>
<g
id="path1102"
style="opacity:0.995">
<path
style="color:#000000;fill:#000000;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 21.162109,19.949219 c -0.388305,7.76e-4 -0.735002,0.206111 -0.978515,0.521484 -0.243374,0.315193 -0.388672,0.742497 -0.388672,1.210938 6e-6,0.0757 0.06297,0.138665 0.138672,0.138671 h 1.232422 l 1.232421,-0.0059 c 0.0757,-2.03e-4 0.136911,-0.06102 0.136719,-0.136719 -0.0011,-0.468429 -0.146435,-0.896655 -0.390625,-1.210937 -0.244334,-0.314469 -0.594111,-0.518361 -0.982422,-0.517578 z m 0.002,0.101562 c 0.353219,-7.11e-4 0.671366,0.183751 0.900391,0.478516 0.22917,0.294951 0.370019,0.700783 0.371094,1.148437 5.5e-5,0.02166 -0.01545,0.03705 -0.03711,0.03711 l -1.232421,0.0059 a 0.050005,0.050005 0 0 0 -0.04687,0.03125 l 0.01172,-0.03125 h -1.197265 c -0.02166,-2e-6 -0.03906,-0.0174 -0.03906,-0.03906 0,-0.447649 0.140689,-0.852571 0.369141,-1.148438 0.228312,-0.295686 0.547165,-0.481716 0.90039,-0.482422 z m 0,0.07617 c -0.32658,6.59e-4 -0.624957,0.172299 -0.841796,0.453125 -0.20164,0.261143 -0.319516,0.619238 -0.337891,1.011719 a 0.050005,0.050005 0 0 0 0.05078,0.05273 h 1.13086 l 1.130859,-0.0059 a 0.050005,0.050005 0 0 0 0.04883,-0.05078 c -0.01929,-0.392501 -0.13951,-0.751367 -0.341797,-1.011719 -0.217484,-0.279912 -0.513255,-0.44989 -0.839844,-0.449219 z m 0,0.09961 c 0.291867,-5.99e-4 0.559108,0.149387 0.761719,0.410157 0.176316,0.226926 0.275312,0.551784 0.302735,0.902343 l -1.0625,0.0039 h -1.064454 c 0.02659,-0.350595 0.125014,-0.674708 0.300782,-0.902344 0.202014,-0.261627 0.469843,-0.413474 0.761718,-0.414063 z"
id="path2705" />
<path
style="color:#000000;fill:#000000;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;-inkscape-stroke:none;paint-order:stroke fill markers"
d="m 21.165707,21.770089 1.232472,-0.0048 a 0.08815731,0.08815731 0 0 0 0.08792,-0.08838 c -0.0011,-0.458042 -0.144838,-0.87391 -0.381518,-1.178527 -0.23668,-0.304617 -0.570633,-0.499107 -0.941398,-0.49836 -0.370766,7.41e-4 -0.703879,0.196503 -0.939792,0.502033 -0.235913,0.30553 -0.378763,0.72186 -0.378763,1.179905 a 0.08815731,0.08815731 0 0 0 0.08815,0.08815 h 1.232472 a 0.08815731,0.08815731 0 0 0 4.49e-4,0 z m -4.5e-4,-0.176297 h -1.130551 c 0.01797,-0.383837 0.134192,-0.733054 0.328032,-0.984095 0.209427,-0.271227 0.491684,-0.432773 0.800912,-0.433397 0.309228,-6.35e-4 0.591552,0.159842 0.8016,0.430183 0.19445,0.250266 0.311693,0.599108 0.330557,0.982948 z"
id="path2707" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.4 KiB

View File

@ -28,8 +28,8 @@
id="namedview6"
showgrid="false"
inkscape:zoom="33.714286"
inkscape:cx="0.38126703"
inkscape:cy="4.0848826"
inkscape:cx="6.5507585"
inkscape:cy="4.1442046"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
@ -49,7 +49,7 @@
<defs
id="defs113" />
<rect
style="opacity:1;vector-effect:none;fill:#dbdbdb;fill-opacity:1;stroke:none;stroke-width:1.12158978;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke"
style="opacity:1;vector-effect:none;fill:#ed9822;fill-opacity:1;stroke:none;stroke-width:1.12158978;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke"
id="rect824"
width="12"
height="9"

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1,40 +0,0 @@
<?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"
version="1.1"
width="100%"
height="100%"
viewBox="0 0 14 14"
id="svg2">
<metadata
id="metadata8">
<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="defs6" />
<rect
width="14"
height="14"
x="0"
y="0"
id="canvas"
style="fill:none;stroke:none;visibility:hidden" />
<path
d="M 7,0.25 C 6.625,0.25 6.25,0.5 6.25,1 l 0,13 1.5,0 0,-13 C 7.75,0.5 7.375,0.25 7,0.25 z M 2,1 0,2.5 2,4 6,4 6,1 2,1 z M 8,4 8,7 12,7 14,5.5 12,4 8,4 z"
id="guidepost"
style="fill:#000000;fill-opacity:1;stroke:none" />
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -10,8 +10,8 @@
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="500.02963"
height="350.57217"
width="500"
height="400"
id="svg13388"
version="1.1"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
@ -33,6 +33,30 @@
offset="1"
id="stop3864" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient3832">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop3834" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop3836" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient3820">
<stop
style="stop-color:#b3b3b3;stop-opacity:1;"
offset="0"
id="stop3822" />
<stop
style="stop-color:#b3b3b3;stop-opacity:0;"
offset="1"
id="stop3824" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient14380">
@ -182,6 +206,36 @@
x2="2312.1321"
y2="399.892"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient14380"
id="linearGradient3920"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.47654268,-0.06300155,0.06300155,0.47654268,-793.04491,257.38442)"
x1="2335.1101"
y1="122.39021"
x2="2312.1321"
y2="399.892" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3820"
id="linearGradient3930"
gradientUnits="userSpaceOnUse"
x1="330.82361"
y1="477.07788"
x2="263.30792"
y2="382.62634"
gradientTransform="matrix(0.95624708,0,0,0.95624708,35.430029,624.45975)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3832"
id="linearGradient3932"
gradientUnits="userSpaceOnUse"
x1="210.87845"
y1="850.14929"
x2="246.59084"
y2="915.34595"
gradientTransform="matrix(0.95624708,0,0,0.95624708,35.430029,96.265031)" />
</defs>
<sodipodi:namedview
id="base"
@ -191,8 +245,8 @@
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.84596866"
inkscape:cx="-177.18746"
inkscape:cy="15.626062"
inkscape:cx="147.30093"
inkscape:cy="220.99528"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
@ -200,20 +254,14 @@
inkscape:window-height="1031"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0">
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid14237"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-7.6729684"
originy="-19.89713" />
snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<metadata
id="metadata13393">
@ -223,7 +271,6 @@
<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>
@ -231,24 +278,34 @@
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-7.6729684,-681.89289)">
transform="translate(0,-652.36218)">
<path
style="fill:#7d7d7d;fill-opacity:1;stroke:#000000;stroke-width:10.25599957;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:url(#linearGradient3920);stroke:#000000;stroke-width:0.95624709;stroke-opacity:1"
d="m 340.875,149.46094 -79.63281,178.90234 c 0,0 35.81712,-37.21314 59.66211,-41.69922 14.98098,4.74134 7.22897,1.90873 19.92382,7.72461 l 131.55274,60.9336 c 0,0 13.89824,-18.30959 18.88086,-28.58399 4.80443,-9.90696 10.36914,-31.36133 10.36914,-31.36133 L 371.56988,239.87317 C 353.48405,232.1996 352.56558,227.0487 351.33008,224.72656 339.76628,202.19092 340.875,149.46094 340.875,149.46094 Z"
transform="translate(0,652.36218)"
id="path14324"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccscccc" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:7.75600004;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
style="fill:#aa0000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.95624709;stroke-opacity:1"
d="m 133.72402,687.04559 c -57.192498,6.27207 -106.94335,52.322 -118.149318,108.66861 -11.3444431,44.5767 1.974171,93.30364 32.170181,127.61137 28.234622,33.48963 68.112667,54.99622 108.827747,69.56641 35.02262,12.00892 78.60681,13.70722 107.74876,-12.605 12.71838,-11.61229 15.34492,-29.97694 23.45848,-44.628 18.24816,-41.3756 36.5181,-82.74155 54.75986,-124.12 -1.99514,-38.24927 -32.27887,-67.1599 -62.45443,-86.8661 -36.75339,-23.0026 -79.6275,-37.35776 -123.09259,-38.87666 -7.76727,-0.12989 -15.58751,0.23335 -23.26869,1.24937 z"
id="path6604"
inkscape:connector-curvature="0" />
<circle
r="43.960594"
cy="986.75446"
cx="227.13269"
style="fill:#f9f9f9;fill-opacity:1;stroke:#000000;stroke-width:3.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
cy="991.48285"
cx="274.41577"
style="fill:#f9f9f9;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
id="path3023" />
<path
inkscape:connector-curvature="0"
style="fill:url(#linearGradient3930);fill-opacity:1;stroke:none;stroke-width:0.95624709"
d="m 313.2198,970.83037 c 1.46906,4.38772 2.30097,9.07309 2.30097,13.95523 0,24.2788 -19.70859,43.9575 -43.98736,43.9575 -16.84915,0 -31.46825,-9.4818 -38.84754,-23.3982 5.80427,17.4889 22.27926,30.0919 41.71628,30.0919 24.27877,0 43.98736,-19.6787 43.98736,-43.95747 0,-7.46706 -1.88513,-14.49039 -5.16971,-20.64896 z"
id="path3047" />
<path
id="path3828"
d="m 235.85737,1011.858 c -1.46906,-4.3878 -2.30097,-9.0731 -2.30097,-13.95528 0,-24.27877 19.70859,-43.95748 43.98736,-43.95748 16.84915,0 31.46825,9.48184 38.84754,23.39817 -5.80427,-17.4889 -22.27926,-30.0919 -41.71628,-30.0919 -24.27877,0 -43.98736,19.67871 -43.98736,43.95748 0,7.46707 1.88513,14.49041 5.16971,20.64901 z"
style="fill:url(#linearGradient3932);fill-opacity:1;stroke:none;stroke-width:0.95624709"
inkscape:connector-curvature="0" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View File

@ -1,60 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="3.7165411mm"
height="3.4168723mm"
viewBox="0 0 3.716541 3.4168723"
version="1.1"
id="svg5"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
sodipodi:docname="rocher.svg"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<sodipodi:namedview
id="namedview7"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:showpageshadow="2"
inkscape:pageopacity="0.0"
inkscape:pagecheckerboard="0"
inkscape:deskcolor="#d1d1d1"
inkscape:document-units="mm"
showgrid="false"
inkscape:zoom="38.057741"
inkscape:cx="2.5750346"
inkscape:cy="7.2127245"
inkscape:window-width="1680"
inkscape:window-height="985"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="layer1" />
<defs
id="defs2" />
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-19.253285,-20.446294)">
<path
style="color:#000000;fill:#000000;stroke-linejoin:bevel;-inkscape-stroke:none"
d="m 19.6875,22.517578 -0.273438,0.123047 0.38086,0.837891 0.107422,0.08398 0.925781,0.185547 0.0957,-0.01172 0.441406,-0.220703 h 0.002 l 0.69336,-0.349609 -0.136719,-0.267579 -0.691406,0.34961 -0.396485,0.197265 -0.798828,-0.162109 z"
id="path342" />
<path
style="color:#000000;fill:#000000;stroke-linejoin:bevel;-inkscape-stroke:none"
d="m 21.496094,20.466797 -0.16211,0.07813 -0.345703,0.664062 -0.408203,0.783203 0.265625,0.138672 0.408203,-0.783203 0.294922,-0.564453 0.632813,0.123047 -0.09961,0.707031 0.126953,0.169922 0.457032,0.06836 -0.01172,0.990235 -0.169922,0.544922 -0.679688,0.148437 -0.27539,-0.279297 -0.214844,0.210938 0.333984,0.33789 0.138672,0.04102 0.847657,-0.183594 0.111328,-0.101562 0.201172,-0.650391 0.0059,-0.04297 0.01563,-1.142578 -0.128906,-0.15039 -0.439453,-0.06641 0.09766,-0.701171 -0.119141,-0.167969 z"
id="path344" />
<path
style="color:#000000;fill:#000000;stroke-linejoin:bevel;-inkscape-stroke:none"
d="m 21.248047,20.75 -0.892578,0.117187 -0.105469,0.06641 -0.314453,0.476562 -0.388672,-0.152344 -0.205078,0.128907 -0.08203,1.115234 0.08008,0.144531 0.761718,0.398438 0.138672,-0.265625 -0.673828,-0.353516 0.06055,-0.814453 0.310547,0.121094 0.179687,-0.05664 0.345704,-0.519531 0.824218,-0.107422 z"
id="path346" />
<path
style="color:#000000;fill:#000000;stroke-linejoin:bevel;-inkscape-stroke:none"
d="m 22.021484,22.208984 -0.259765,0.15625 -0.507813,-0.154297 -0.128906,0.01953 -0.402344,0.279297 0.171875,0.246093 0.341797,-0.238281 0.501953,0.154297 0.123047,-0.01563 0.314453,-0.191406 z"
id="path1748" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,25 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="65" height="65" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g id="svg_1" stroke="null">
<path id="svg_2" d="m62.75653,34.58033l-8.05376,-2.01399c-0.81086,-0.19895 -1.66603,-0.00337 -2.27777,0.52673l-3.12657,2.70092l-1.71601,-1.73935l1.06051,-1.62063c0.70161,-1.07148 0.34201,-2.47333 -0.80283,-3.13006c-1.14235,-0.65815 -2.64222,-0.32117 -3.34396,0.75147l-0.34201,0.52336l-1.04251,-1.05696c-0.82554,-0.83935 -1.99281,-1.14056 -3.12076,-1.01056l-1.08211,-1.33381c1.15924,-1.60404 1.04639,-3.79482 -0.41775,-5.28208c-1.25769,-1.27393 -3.15163,-1.66185 -4.80257,-1.14276l-10.94632,-13.47518l-1.13418,-4.49289c-0.32415,-1.28378 -1.54847,-2.19078 -2.95806,-2.19078c-1.40959,0 -2.63391,0.907 -2.95806,2.19091l-14.73698,58.38389c-0.38701,1.52951 0.62462,3.06227 2.25866,3.42349c1.63044,0.35928 3.27168,-0.5857 3.65759,-2.11405l11.77878,-46.66374l11.77892,46.66387c0.33038,1.30931 1.5781,2.19195 2.9557,2.19195c0.23179,0 0.46663,-0.02553 0.70175,-0.07789c1.63418,-0.36122 2.64582,-1.89397 2.25866,-3.42349l-12.22534,-48.43459l7.56096,9.30799c-1.47259,1.62063 -1.47384,4.04159 0.10676,5.64447c1.3776,1.39615 3.51165,1.71848 5.25965,0.9604l0.73609,0.907c-0.748,0.76262 -1.03767,1.74635 -0.90335,2.71777c-0.00485,0.15462 1.49613,8.23989 1.49613,8.23989c0.20895,1.08042 1.21477,1.87077 2.39298,1.87077c0.83578,0 1.6267,-0.4036 2.07326,-1.08703l0.77901,-1.18942l2.12338,2.09863c0.46192,0.39686 1.03656,0.62692 1.62933,0.62692c0.58904,0 1.18015,-0.19999 1.64803,-0.60372l5.71797,-4.93849l6.76048,1.69075c1.30754,0.32441 2.63142,-0.3979 2.97827,-1.61169c0.34658,-1.21495 -0.42523,-2.46335 -1.72197,-2.78802z" fill="black" stroke="null"/>
<path id="svg_3" d="m54.33583,39.12234l-4.89742,4.2294c-0.98671,0.85257 -1.04833,2.292 -0.13764,3.21676c0.47965,0.48551 1.13293,0.73242 1.78829,0.73242c0.58904,0 1.18043,-0.20012 1.64844,-0.60346l4.89714,-4.2294c0.98699,-0.85257 1.04861,-2.29187 0.13791,-3.21689c-0.91083,-0.92152 -2.44753,-0.9814 -3.43674,-0.12883l0.00002,0z" stroke="null"/>
</g>
<g id="svg_4"/>
<g id="svg_5"/>
<g id="svg_6"/>
<g id="svg_7"/>
<g id="svg_8"/>
<g id="svg_9"/>
<g id="svg_10"/>
<g id="svg_11"/>
<g id="svg_12"/>
<g id="svg_13"/>
<g id="svg_14"/>
<g id="svg_15"/>
<g id="svg_16"/>
<g id="svg_17"/>
<g id="svg_18"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1,174 +0,0 @@
<?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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="252.24365"
height="251.86287"
id="svg2"
sodipodi:version="0.32"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
sodipodi:docname="basket.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
inkscape:export-filename="/home/gioppo/Disegni/basketball2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
sodipodi:modified="TRUE"
version="1.1">
<defs
id="defs4">
<linearGradient
id="linearGradient2189">
<stop
style="stop-color:#ffd52a;stop-opacity:1;"
offset="0"
id="stop2191" />
<stop
style="stop-color:#ff7f2a;stop-opacity:1;"
offset="1"
id="stop2193" />
</linearGradient>
<linearGradient
id="linearGradient17099">
<stop
style="stop-color:#f09700;stop-opacity:1;"
offset="0"
id="stop17101" />
<stop
id="stop17107"
offset="1"
style="stop-color:#f6f700;stop-opacity:0.49803922;" />
<stop
style="stop-color:#f6f700;stop-opacity:0;"
offset="1"
id="stop17103" />
</linearGradient>
<linearGradient
id="linearGradient4180">
<stop
style="stop-color:#ffe92a;stop-opacity:1;"
offset="0"
id="stop4182" />
<stop
id="stop4188"
offset="0.5"
style="stop-color:#fff22a;stop-opacity:0.49803922;" />
<stop
style="stop-color:#ff7f2a;stop-opacity:0;"
offset="1"
id="stop4184" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4180"
id="radialGradient5277"
cx="378.40622"
cy="466.38931"
fx="378.40622"
fy="466.38931"
r="171.71356"
gradientTransform="matrix(1,0,0,0.9950338,0,2.3161611)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient17099"
id="radialGradient17105"
cx="129.15811"
cy="738.49414"
fx="129.15811"
fy="738.49414"
r="483.95963"
gradientTransform="matrix(1,0,0,0.9994274,0,0.4228264)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2189"
id="linearGradient3172"
x1="481.63095"
y1="537.79144"
x2="274.91696"
y2="486.54004"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.1706996"
inkscape:cx="1.7660124"
inkscape:cy="31.551992"
inkscape:document-units="px"
inkscape:current-layer="layer1"
inkscape:window-width="1878"
inkscape:window-height="1031"
inkscape:window-x="42"
inkscape:window-y="25"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-maximized="1" />
<metadata
id="metadata7">
<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="Livello 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-274.92648,-319.60744)">
<path
style="fill:#ee6900;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:4.9243083;stroke-miterlimit:4;stroke-opacity:1"
d="m 290.0785,500.00544 c -30.11295,-61.16013 -4.83796,-135.19883 56.41738,-165.26497 61.25534,-30.06614 135.4093,-4.83043 165.52224,56.32969 30.11294,61.16013 4.83796,135.19884 -56.41738,165.26497 -61.19954,30.03875 -135.27102,4.89016 -165.44407,-56.1712"
id="path2236"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.73245698px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 277.39495,430.72241 Z"
id="path9163"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.39474154;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 278.66319,433.19164 c 19.44633,-47.32695 235.46979,-0.82308 244.77022,24.69233"
id="path9165"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.39474154;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 430.85192,324.54541 c 103.99563,36.62695 55.80254,231.28477 -41.8519,243.2194"
id="path10136"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.39474154;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 349.6846,333.18772 c 59.18451,4.93847 98.07718,93.83084 161.06641,61.73082"
id="path12150"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.39474154;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 295.15031,510.97246 c 84.97204,12.7577 197.84535,-105.35392 205.45478,8.64232"
id="path13121"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6.2 KiB

View File

@ -1,234 +0,0 @@
<?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="458.92419"
height="488.90564"
version="1.1"
id="svg81"
sodipodi:docname="dechets.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata85">
<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>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview83"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="0.5606433"
inkscape:cx="-305.42413"
inkscape:cy="31.876073"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg81" />
<defs
id="defs66">
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.64365,0,0,0.207583,-2534.28,-1995.51)"
r="164.24319"
cy="12661.793"
cx="1725.5107"
id="SVGID_11_">
<stop
stop-color="#706F6F"
offset="0.1044"
id="stop2" />
<stop
stop-color="#8A8989"
offset="0.2809"
id="stop4" />
<stop
stop-color="#A8A8A7"
offset="0.478"
id="stop6" />
<stop
stop-color="#FFFFFF"
offset="0.9157"
id="stop8" />
</radialGradient>
<linearGradient
y2="321.64993"
x2="278.91382"
y1="679.90643"
x1="278.91382"
id="SVGID_12_"
gradientTransform="scale(1.0814242,0.92470652)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#305F1B"
offset="0"
id="stop11" />
<stop
stop-color="#30601B"
offset="0.0017"
id="stop13" />
<stop
stop-color="#457B24"
offset="0.0602"
id="stop15" />
<stop
stop-color="#558F2A"
offset="0.1153"
id="stop17" />
<stop
stop-color="#609C2D"
offset="0.1656"
id="stop19" />
<stop
stop-color="#67A52F"
offset="0.2094"
id="stop21" />
<stop
stop-color="#69A82F"
offset="0.2418"
id="stop23" />
<stop
stop-color="#C6D76B"
offset="0.8956"
id="stop25" />
</linearGradient>
<linearGradient
y2="297.33185"
x2="165.47058"
y1="542.98517"
x1="165.47058"
id="SVGID_13_"
gradientTransform="scale(1.8227923,0.54860887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#3C2803"
offset="0.022"
id="stop28" />
<stop
stop-color="#624314"
offset="0.2033"
id="stop30" />
<stop
stop-color="#9F834A"
offset="0.6099"
id="stop32" />
</linearGradient>
<linearGradient
y2="326.82501"
x2="218.18687"
y1="326.82501"
x1="129.90536"
id="SVGID_14_"
gradientTransform="scale(1.7330155,0.57702887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#9F834A"
offset="0.309"
id="stop35" />
<stop
stop-color="#B79764"
offset="0.6067"
id="stop37" />
<stop
stop-color="#AF905B"
offset="0.7332"
id="stop39" />
<stop
stop-color="#9F834A"
offset="0.9066"
id="stop41" />
</linearGradient>
<linearGradient
y2="1101.8185"
x2="172.10794"
y1="1306.282"
x1="172.10794"
id="SVGID_15_"
gradientTransform="scale(1.7524962,0.57061465)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#FFFFFF"
offset="0.1703"
id="stop44" />
<stop
stop-color="#EDEADA"
offset="0.6538"
id="stop46" />
<stop
stop-color="#E9E7D6"
offset="0.7062"
id="stop48" />
<stop
stop-color="#DDDCC9"
offset="0.7638"
id="stop50" />
<stop
stop-color="#C8C9B5"
offset="0.824"
id="stop52" />
<stop
stop-color="#ABAE99"
offset="0.8859"
id="stop54" />
<stop
stop-color="#878C76"
offset="0.9484"
id="stop56" />
<stop
stop-color="#636A54"
offset="1"
id="stop58" />
</linearGradient>
<linearGradient
y2="526.30341"
x2="277.54233"
y1="388.42102"
x1="310.1022"
id="SVGID_23_"
gradientTransform="scale(1.0217712,0.9786927)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#706045"
offset="0.0506"
id="stop61" />
<stop
stop-color="#473E2A"
offset="0.6011"
id="stop63" />
</linearGradient>
</defs>
<polygon
id="svg_16"
points="107.91808,297.43576 495.33099,297.43576 472.87463,628.70563 130.37862,628.70563 "
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:19.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="translate(-72.160409,-149.54999)" />
<path
id="svg_17"
d="m 312.97704,79.073425 h -7.08691 c 0.025,-0.65769 0.0706,-1.30397 0.0706,-1.96182 v -38.65074 c 0,-18.17569 -10.68643,-32.8857698 -23.86788,-32.8857698 H 176.83559 c -13.19404,0 -23.8721,14.7156298 -23.8721,32.8857698 v 38.65074 c 0,0.65785 0.0332,1.30413 0.0622,1.96182 h -7.07854 L 5.5750952,150.62146 v 40.60661 H 453.34911 v -40.60661 z m -136.49863,-32.4454 c 0,-5.296 3.12212,-9.59124 6.96236,-9.59124 h 92.03835 c 3.83618,0 6.96237,4.29524 6.96237,9.59124 v 32.43964 H 176.47841 Z"
style="fill:#c1c1c1;fill-opacity:1;stroke:#000000;stroke-width:11.15019035;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 6.5 KiB

View File

@ -1,126 +0,0 @@
<?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="518.43048" height="480.05527" id="svg4779" version="1.1" inkscape:version="0.48.3.1 r9886" sodipodi:docname="defibrillator.svg">
<defs id="defs4781"/>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="0.35" inkscape:cx="-237.2133" inkscape:cy="100.02765" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1600" inkscape:window-height="848" inkscape:window-x="1272" inkscape:window-y="116" inkscape:window-maximized="1"/>
<metadata id="metadata4784">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Calque 1" inkscape:groupmode="layer" id="layer1" transform="translate(-117.92759,-152.33457)">
<g id="g4601" transform="matrix(34.728732,0,0,34.728732,-7885.2132,-7492.0539)" style="fill:#00a654;fill-opacity:1;stroke:none">
<g display="none" id="Selected_x5F_Ver1" style="fill:#00a654;fill-opacity:1;stroke:none;display:none">
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4484">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective9"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="base-8"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1-9" style="fill:#00a654;fill-opacity:1;stroke:none">
<linearGradient y2="445.9136" x2="371.97739" y1="459.7363" x1="371.97739" gradientUnits="userSpaceOnUse" id="path7_9_">
<stop id="stop4490" style="stop-color:#CE5C00" offset="0"/>
<stop id="stop4492" style="stop-color:#D16200" offset="0.1753"/>
<stop id="stop4494" style="stop-color:#D97100" offset="0.3981"/>
<stop id="stop4496" style="stop-color:#E68B00" offset="0.6465"/>
<stop id="stop4498" style="stop-color:#F8AF00" offset="0.9118"/>
<stop id="stop4500" style="stop-color:#FFBD00" offset="1"/>
</linearGradient>
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 4.438,5.555 7.464,9.904 2.863,-4.321 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_2" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4504">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4506"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4508"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_5_" style="opacity:0.45000000000000001;fill:#00a654;fill-opacity:1;stroke:none">
<linearGradient y2="448.07031" x2="372.6199" y1="459.7363" x1="372.6199" gradientUnits="userSpaceOnUse" id="path7_10_">
<stop id="stop4512" style="stop-color:#703C19" offset="0"/>
<stop id="stop4514" style="stop-color:#CE5C00" offset="0.589"/>
</linearGradient>
<path d="m 365.805,453.426 c 1.543,1.95 4.169,3.427 6.172,6.311 2.576,-3.889 9.168,-6.734 7.043,-11.666 -0.301,2.726 -3,4.479 -5.584,5.271 -1.735,0.532 -5.124,1.333 -7.631,0.084 z" sodipodi:nodetypes="ccccccc" id="path7_5_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4518">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4520"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4522"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_1_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 4.438,5.555 7.464,9.904 2.863,-4.321 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7_1_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="Highlights_copy" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4527">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4529"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4531"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_8_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.036,447.644 c -0.645,0 -1.22,0.3 -1.593,0.768 -0.277,0.349 -0.442,0.79 -0.442,1.269 0,0.45 0.09,0.835 0.246,1.181 -0.147,-1.261 0.686,-2.784 1.789,-3.218 z" sodipodi:nodetypes="ccccccc" id="path7_8_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
</g>
<g display="none" id="Selected_x5F_Ver2" style="fill:#00a654;fill-opacity:1;stroke:none;display:none">
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_4_2_" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4537">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4539"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4541"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_6_" style="fill:#00a654;fill-opacity:1;stroke:none">
<linearGradient y2="445.9136" x2="371.97739" y1="459.7363" x1="371.97739" gradientUnits="userSpaceOnUse" id="path7_11_">
<stop id="stop4545" style="stop-color:#67A42C" offset="0"/>
<stop id="stop4547" style="stop-color:#88CD44" offset="0.7669"/>
<stop id="stop4549" style="stop-color:#99DA4C" offset="0.8651"/>
<stop id="stop4551" style="stop-color:#B8F059" offset="1"/>
</linearGradient>
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 4.438,5.555 7.464,9.904 2.863,-4.321 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7_6_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_4_1_" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4555">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4557"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4559"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_4_" style="opacity:0.31999996000000003;fill:#00a654;fill-opacity:1;stroke:none">
<linearGradient y2="448.07031" x2="372.6199" y1="459.7363" x1="372.6199" gradientUnits="userSpaceOnUse" id="path7_12_">
<stop id="stop4563" style="stop-color:#4C662B" offset="0"/>
<stop id="stop4565" style="stop-color:#4C662B" offset="1"/>
</linearGradient>
<path d="m 365.805,453.426 c 1.543,1.95 4.169,3.427 6.172,6.311 2.576,-3.889 9.168,-6.734 7.043,-11.666 -0.301,2.726 -3,4.479 -5.584,5.271 -1.735,0.532 -5.124,1.333 -7.631,0.084 z" sodipodi:nodetypes="ccccccc" id="path7_4_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="Highlights" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4569">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4571"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4573"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_7_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.036,447.644 c -0.645,0 -1.22,0.3 -1.593,0.768 -0.277,0.349 -0.442,0.79 -0.442,1.269 0,0.45 0.09,0.835 0.246,1.181 -0.147,-1.261 0.686,-2.784 1.789,-3.218 z" sodipodi:nodetypes="ccccccc" id="path7_7_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_4" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4578">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4580"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4582"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_3_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 4.438,5.555 7.464,9.904 2.863,-4.321 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7_3_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
</g>
<g inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_3" style="fill:#00a654;fill-opacity:1;stroke:none">
<defs id="defs4587">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4589"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4591"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_2_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 3.17563,6.69521 7.464,9.904 4.45115,-3.22151 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7_2_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
</g>
<path style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 459.30542,208.16062 -145.58282,173.50679 58.60048,0 -77.34278,162.89651 161.05792,-180.36371 -66.972,0 z" id="path11839" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 19 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 24 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 32 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 10 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 20 KiB

View File

@ -28,8 +28,8 @@
id="namedview6"
showgrid="false"
inkscape:zoom="33.714286"
inkscape:cx="0.38126703"
inkscape:cy="4.0848826"
inkscape:cx="6.5507585"
inkscape:cy="4.1442046"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
@ -49,7 +49,7 @@
<defs
id="defs113" />
<rect
style="opacity:1;vector-effect:none;fill:#dbdbdb;fill-opacity:1;stroke:none;stroke-width:1.12158978;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke"
style="opacity:1;vector-effect:none;fill:#ed9822;fill-opacity:1;stroke:none;stroke-width:1.12158978;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke"
id="rect824"
width="12"
height="9"

Before

Width:  |  Height:  |  Size: 2.3 KiB

After

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1,99 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
<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="Layer_1"
x="0px"
y="0px"
width="142.18591"
height="104.58382"
viewBox="0 0 142.18593 104.58381"
xml:space="preserve"
sodipodi:docname="parking_velos.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"><metadata
id="metadata21"><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 /></cc:Work></rdf:RDF></metadata><defs
id="defs19"><inkscape:path-effect
effect="simplify"
id="path-effect865"
is_visible="true"
steps="1"
threshold="0.0308998"
smooth_angles="360"
helper_size="0"
simplify_individual_paths="false"
simplify_just_coalesce="false"
simplifyindividualpaths="false"
simplifyJustCoalesce="false" />
</defs><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview17"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="5.6568543"
inkscape:cx="53.28101"
inkscape:cy="40.907667"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" />
<g
id="g889"><path
inkscape:connector-curvature="0"
id="path6"
d="M 25.4149,52.348265 C 9.7645253,52.210346 -3.0169234,68.425398 0.62583776,83.596312 3.3160329,99.189947 21.900281,108.85147 36.219588,102.23108 50.942655,96.556905 56.880991,76.506558 47.586776,63.746703 42.744432,56.50052 34.125723,52.065125 25.4149,52.348265 Z m 1.560547,8.447266 c 14.215211,0.01353 22.170061,19.27854 12.083985,29.314453 C 30.067621,101.14064 10.150841,95.125996 8.7352128,80.979125 6.8432193,70.30665 16.155664,59.98214 26.975447,60.795531 Z"
style="opacity:1;vector-effect:none;fill:#686868;fill-opacity:1;stroke:none;stroke-width:4.36143017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><path
inkscape:connector-curvature="0"
id="path8"
d="M 96.006697,52.586546 C 80.349854,52.440293 67.543952,68.65287 71.194197,83.834593 73.887574,99.426962 92.479692,109.08953 106.79771,102.46741 121.51258,96.782516 127.4452,76.739398 118.15318,63.981078 113.31661,56.744125 104.70946,52.300948 96.006697,52.586546 Z m 1.556641,8.435547 c 14.199882,0.03832 22.156992,19.276038 12.066412,29.31836 -8.98086,10.991357 -28.867923,5.00191 -30.322271,-9.09961 -1.96243,-10.626325 7.487295,-21.091458 18.255859,-20.21875 z"
style="opacity:1;vector-effect:none;fill:#686868;fill-opacity:1;stroke:none;stroke-width:4.36143017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><path
inkscape:connector-curvature="0"
id="path10"
d="M 72.207869,0.02404652 C 63.248151,-0.01629286 58.176551,12.131338 64.567244,18.442015 70.238609,25.327236 82.74649,21.550554 83.623885,12.662718 84.768806,5.9983007 78.962764,-0.4440427 72.207869,0.02404652 Z"
style="opacity:1;vector-effect:none;fill:#686868;fill-opacity:1;stroke:none;stroke-width:4.36143017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><path
inkscape:connector-curvature="0"
id="path12"
d="m 58.600447,13.871703 c -7.651426,0.817672 -11.135089,9.391916 -16.841801,13.523734 -4.469714,4.868696 -13.404065,10.159692 -10.361324,18.150094 3.387352,7.518431 13.179595,8.632211 19.199532,13.33622 6.801444,2.014189 2.213549,10.730802 3.540703,15.966514 -1.2091,5.123909 0.924451,12.582087 7.289062,12.351563 6.192668,0.06451 8.273944,-7.176637 7.095703,-12.210938 -0.677688,-7.939453 1.203419,-16.246064 -0.603515,-24.021484 -2.39983,-5.137361 -8.9328,-6.001094 -13.171875,-9 4.444698,-4.317378 9.280124,-12.142579 12.159607,-2.407931 2.962022,6.78727 11.595738,3.838289 17.190002,4.361056 4.363638,0.567202 12.511709,0.718046 12.484375,-5.621094 C 96.340659,31.801686 87.941264,32.47962 83.522332,32.879569 75.878856,35.324794 73.591,27.978376 70.13035,22.776167 67.838848,18.318251 64.27004,13.328243 58.600447,13.871703 Z"
style="opacity:1;vector-effect:none;fill:#686868;fill-opacity:1;stroke:none;stroke-width:4.36143017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><g
id="g879"><rect
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:6.28336287;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke"
id="rect867"
width="43.551727"
height="80.28817"
x="98.634186"
y="24.196041" /></g><g
id="flowRoot871"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:21.33333397px;line-height:1.25;font-family:Purisa;-inkscape-font-specification:Purisa;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none"
transform="matrix(3.3033733,0,0,3.4967424,37.966582,-21.463321)"
aria-label="P"><path
id="path875"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ffffff"
d="m 30.993815,18.54974 q 0,1.416667 -0.645833,2.53125 -0.645833,1.114583 -1.854167,1.729167 -1.197916,0.604166 -2.854167,0.604166 H 21.993815 V 28.58099 H 18.920898 V 13.903906 h 6.59375 q 2.635417,0 4.052084,1.21875 1.427083,1.208334 1.427083,3.427084 z m -3.09375,0.05208 q 0,-2.3125 -2.729167,-2.3125 h -3.177083 v 4.760417 h 3.260417 q 1.270833,0 1.958333,-0.625 0.6875,-0.635417 0.6875,-1.822917 z" /></g></g></svg>

Before

Width:  |  Height:  |  Size: 6.4 KiB

View File

@ -1,254 +0,0 @@
<?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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="500.02963"
height="350.57217"
id="svg13388"
version="1.1"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
sodipodi:docname="ping-pong.svg">
<defs
id="defs13390">
<linearGradient
id="linearGradient3860">
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="0"
id="stop3862" />
<stop
id="stop3868"
offset="0.42549232"
style="stop-color:#000000;stop-opacity:1;" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop3864" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient14380">
<stop
style="stop-color:#deaa87;stop-opacity:1;"
offset="0"
id="stop14382" />
<stop
style="stop-color:#c87137;stop-opacity:1"
offset="1"
id="stop14384" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient14351">
<stop
style="stop-color:#d89a71;stop-opacity:1;"
offset="0"
id="stop14353" />
<stop
style="stop-color:#e9c6af;stop-opacity:1"
offset="1"
id="stop14355" />
</linearGradient>
<linearGradient
id="linearGradient14339">
<stop
style="stop-color:#d38d5f;stop-opacity:1"
offset="0"
id="stop14341" />
<stop
id="stop14347"
offset="0.5"
style="stop-color:#f4e3d7;stop-opacity:1" />
<stop
style="stop-color:#d38d5f;stop-opacity:1"
offset="1"
id="stop14343" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient14059">
<stop
id="stop14063"
offset="0"
style="stop-color:#ff2a2a;stop-opacity:1" />
<stop
id="stop14061"
offset="1"
style="stop-color:#be0d00;stop-opacity:1;" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath7292">
<path
inkscape:connector-curvature="0"
d="m 6214.53,4715.05 c 10.7,-10.72 24.24,-18.59 39.4,-22.34 6.48,-1.61 13.26,-2.45 20.23,-2.45 13.55,0 26.33,3.2 37.68,8.9 8.14,4.08 15.54,9.45 21.91,15.84 5.37,5.37 10,11.46 13.79,18.12 7.05,12.4 11.09,26.78 11.09,42.1 0,8.77 -1.33,17.22 -3.79,25.19 -4.12,13.39 -11.44,25.37 -21.09,35.02 -6.37,6.39 -13.77,11.76 -21.91,15.85 -11.35,5.7 -24.13,8.9 -37.68,8.9 -6.97,0 -13.75,-0.85 -20.23,-2.46 -15.16,-3.74 -28.7,-11.6 -39.4,-22.33 -9.65,-9.65 -16.95,-21.63 -21.05,-35.01 -2.46,-7.95 -3.79,-16.4 -3.79,-25.16 0,-15.31 4.02,-29.67 11.07,-42.07 3.77,-6.65 8.4,-12.73 13.77,-18.1"
id="path7294" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath7298">
<path
inkscape:connector-curvature="0"
d="m 6214.53,4715.05 c 10.7,-10.72 24.24,-18.59 39.4,-22.34 6.48,-1.61 13.26,-2.45 20.23,-2.45 13.55,0 26.33,3.2 37.68,8.9 8.14,4.08 15.54,9.45 21.91,15.84 5.37,5.37 10,11.46 13.79,18.12 7.05,12.4 11.09,26.78 11.09,42.1 0,8.77 -1.33,17.22 -3.79,25.19 -4.12,13.39 -11.44,25.37 -21.09,35.02 -6.37,6.39 -13.77,11.76 -21.91,15.85 -11.35,5.7 -24.13,8.9 -37.68,8.9 -6.97,0 -13.75,-0.85 -20.23,-2.46 -15.16,-3.74 -28.7,-11.6 -39.4,-22.33 -9.65,-9.65 -16.95,-21.63 -21.05,-35.01 -2.46,-7.95 -3.79,-16.4 -3.79,-25.16 0,-15.31 4.02,-29.67 11.07,-42.07 3.77,-6.65 8.4,-12.73 13.77,-18.1"
id="path7300" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6676">
<path
inkscape:connector-curvature="0"
d="m 6200.02,4962.56 c 0,0 166.86,-108.33 184.36,-119.75 0,0 112.16,-84.57 147.89,-115 l 2.36,-2.01 c 0,0 14.12,-15.21 26.03,3.14 11.23,19.12 22.45,38.24 33.68,57.36 8.06,13.72 16.13,27.46 24.18,41.19 0,0 8.98,8.23 -17.35,23.09 -1.42,0.79 -2.93,1.6 -4.53,2.44 0,0 -164.94,84.15 -190.76,110.83 0,0 -133.5,94.5 -150.29,96.3 -7.74,-13.6 -15.49,-27.2 -23.23,-40.79 -10.78,-18.94 -21.56,-37.87 -32.34,-56.8"
id="path6678" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6682">
<path
inkscape:connector-curvature="0"
d="m 6200.02,4962.56 c 0,0 166.86,-108.33 184.36,-119.75 0,0 112.16,-84.57 147.89,-115 l 2.36,-2.01 c 0,0 14.12,-15.21 26.03,3.14 11.23,19.12 22.45,38.24 33.68,57.36 8.06,13.72 16.13,27.46 24.18,41.19 0,0 8.98,8.23 -17.35,23.09 -1.42,0.79 -2.93,1.6 -4.53,2.44 0,0 -164.94,84.15 -190.76,110.83 0,0 -133.5,94.5 -150.29,96.3 -7.74,-13.6 -15.49,-27.2 -23.23,-40.79 -10.78,-18.94 -21.56,-37.87 -32.34,-56.8"
id="path6684" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6562">
<path
inkscape:connector-curvature="0"
d="m 6035.64,4829.77 c 25.32,43.88 50.65,87.77 75.98,131.67 63.42,109.88 126.84,219.77 190.26,329.65 0,0 39.06,-64.98 22.53,-210.85 0,0 -7.12,-56.3 48.46,-94.13 -8.4,-13.51 -16.82,-27.01 -25.19,-40.51 -12.09,-19.42 -24.16,-38.84 -36.23,-58.24 0,0 -63.38,51.04 -179.16,-31.37 0,0 -77.9,-35.51 -96.65,-26.22"
id="path6564" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6568">
<path
inkscape:connector-curvature="0"
d="m 6035.64,4829.77 c 25.32,43.88 50.65,87.77 75.98,131.67 63.42,109.88 126.84,219.77 190.26,329.65 0,0 39.06,-64.98 22.53,-210.85 0,0 -7.12,-56.3 48.46,-94.13 -8.4,-13.51 -16.82,-27.01 -25.19,-40.51 -12.09,-19.42 -24.16,-38.84 -36.23,-58.24 0,0 -63.38,51.04 -179.16,-31.37 0,0 -77.9,-35.51 -96.65,-26.22"
id="path6570" />
</clipPath>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient14059"
id="radialGradient14065"
cx="46.00568"
cy="310.12067"
fx="46.00568"
fy="310.12067"
r="345.23618"
gradientTransform="matrix(1,0,0,0.96960782,1793.654,-206.37142)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient14059"
id="radialGradient14327"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.96960782,1793.654,-206.37142)"
cx="46.00568"
cy="310.12067"
fx="46.00568"
fy="310.12067"
r="345.23618" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient14339"
id="linearGradient14345"
x1="2427.4524"
y1="452.19705"
x2="2505.4219"
y2="330.04474"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient14351"
id="linearGradient14357"
x1="2345.4033"
y1="315.42029"
x2="2308.2268"
y2="293.36719"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(1,3)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient14380"
id="linearGradient14386"
x1="2335.1101"
y1="122.39021"
x2="2312.1321"
y2="399.892"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.84596866"
inkscape:cx="-177.18746"
inkscape:cy="15.626062"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1878"
inkscape:window-height="1031"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0">
<inkscape:grid
type="xygrid"
id="grid14237"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-7.6729684"
originy="-19.89713" />
</sodipodi:namedview>
<metadata
id="metadata13393">
<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="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-7.6729684,-681.89289)">
<path
style="fill:#7d7d7d;fill-opacity:1;stroke:#000000;stroke-width:10.25599957;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 340.875,149.46094 -79.63281,178.90234 c 0,0 35.81712,-37.21314 59.66211,-41.69922 14.98098,4.74134 7.22897,1.90873 19.92382,7.72461 l 131.55274,60.9336 c 0,0 13.89824,-18.30959 18.88086,-28.58399 4.80443,-9.90696 10.36914,-31.36133 10.36914,-31.36133 L 371.56988,239.87317 C 353.48405,232.1996 352.56558,227.0487 351.33008,224.72656 339.76628,202.19092 340.875,149.46094 340.875,149.46094 Z"
transform="translate(0,652.36218)"
id="path14324"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccscccc" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:7.75600004;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 133.72402,687.04559 c -57.192498,6.27207 -106.94335,52.322 -118.149318,108.66861 -11.3444431,44.5767 1.974171,93.30364 32.170181,127.61137 28.234622,33.48963 68.112667,54.99622 108.827747,69.56641 35.02262,12.00892 78.60681,13.70722 107.74876,-12.605 12.71838,-11.61229 15.34492,-29.97694 23.45848,-44.628 18.24816,-41.3756 36.5181,-82.74155 54.75986,-124.12 -1.99514,-38.24927 -32.27887,-67.1599 -62.45443,-86.8661 -36.75339,-23.0026 -79.6275,-37.35776 -123.09259,-38.87666 -7.76727,-0.12989 -15.58751,0.23335 -23.26869,1.24937 z"
id="path6604"
inkscape:connector-curvature="0" />
<circle
r="43.960594"
cy="986.75446"
cx="227.13269"
style="fill:#f9f9f9;fill-opacity:1;stroke:#000000;stroke-width:3.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3023" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 10 KiB

View File

@ -1,203 +0,0 @@
<?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="437"
height="322.96289"
version="1.1"
id="svg33"
sodipodi:docname="ressort.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata39">
<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>Spring</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs37">
<defs
id="defs11">
<linearGradient
id="svg_21"
x1="0"
y1="0"
x2="1"
y2="0">
<stop
id="stop6"
stop-color="#333333"
stop-opacity="0.996094"
offset="0" />
<stop
id="stop8"
stop-color="#999999"
stop-opacity="0.996094"
offset="1" />
</linearGradient>
</defs>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview35"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="1.3906433"
inkscape:cx="123.65745"
inkscape:cy="224.79729"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg33" />
<!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->
<title
id="title2">Spring</title>
<g
id="g902"
transform="translate(-97.5,-81.5)">
<g
transform="matrix(0.53002014,0,0,1,146.39356,0)"
style="fill:#000000;fill-opacity:1"
id="svg_17">
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="305.00085"
y="231.0491"
width="22"
height="251.00128"
transform="rotate(-75.7685,316,356.551)"
id="svg_18" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="304.9989"
y="231.96317"
width="22"
height="251.00128"
transform="rotate(75.7685,316,357.465)"
id="svg_19" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="169.49997"
y="372.96289"
width="301.00003"
height="28.999998"
id="svg_20" />
</g>
<g
transform="matrix(0.53002014,0,0,1,146.39356,0)"
style="fill:#000000;fill-opacity:1"
id="svg_13">
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="305.00085"
y="164.0491"
width="22"
height="251.00128"
transform="rotate(-75.7685,316,289.551)"
id="svg_14" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="304.9989"
y="164.96317"
width="22"
height="251.00128"
transform="rotate(75.7685,316,290.465)"
id="svg_15" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="169.49997"
y="305.96289"
width="301.00003"
height="28.999998"
id="svg_16" />
</g>
<g
transform="matrix(0.53002014,0,0,1,145.86354,0)"
style="fill:#000000;fill-opacity:1"
id="svg_9">
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="306.00085"
y="97.051064"
width="22"
height="251.00128"
transform="rotate(-75.7685,317,222.551)"
id="svg_10" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="305.9989"
y="97.965126"
width="22"
height="251.00128"
transform="rotate(75.7685,317,223.465)"
id="svg_11" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="170.49997"
y="238.96484"
width="301.00003"
height="28.999998"
id="svg_12" />
</g>
<g
transform="matrix(0.53002014,0,0,1,146.39356,0)"
style="fill:#000000;fill-opacity:1"
id="svg_8">
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="305.00085"
y="33.08622"
width="22"
height="251.00128"
id="svg_5"
transform="rotate(-75.7685,316,158.586)" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="304.9989"
y="34.000278"
width="22"
height="251.00128"
transform="rotate(75.7685,316,159.5)"
id="svg_6" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="169.49997"
y="175"
width="301.00003"
height="28.999998"
id="svg_7" />
</g>
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="100"
y="84"
width="432"
height="55"
id="svg_1"
rx="21"
ry="21" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.7 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 653 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 66 KiB

View File

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
<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.2" baseProfile="tiny" id="Layer_1" x="0px" y="0px" width="73.401px" height="102.427px" viewBox="0 0 73.401 102.427" xml:space="preserve" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docname="memorial.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata id="metadata18"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/><cc:license rdf:resource="http://creativecommons.org/licenses/publicdomain/"/></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/publicdomain/"><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><defs id="defs16"><inkscape:perspective sodipodi:type="inkscape:persp3d" inkscape:vp_x="0 : 51.213501 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_z="73.401001 : 51.213501 : 1" inkscape:persp3d-origin="36.7005 : 34.142334 : 1" id="perspective20"/></defs><sodipodi:namedview inkscape:window-height="713" inkscape:window-width="760" inkscape:pageshadow="2" inkscape:pageopacity="0.0" guidetolerance="10.0" gridtolerance="10.0" objecttolerance="10.0" borderopacity="1.0" bordercolor="#666666" pagecolor="#ffffff" id="base" showgrid="false" inkscape:zoom="4.822947" inkscape:cx="63.465426" inkscape:cy="51.213501" inkscape:window-x="0" inkscape:window-y="0" inkscape:current-layer="Layer_1"/>
<g id="g3">
<g id="g5">
<path d="M14.001,100.758l-12.4-17.274c-0.42-0.587-0.676-1.284-0.736-2l0,0L0.014,71.282c-0.132-1.611,0.718-3.151,2.158-3.89l0,0 l5.25-2.699c0.257-0.133,0.592-0.259,0.873-0.327l0,0l3.519-0.867L9.505,9.521c-0.089-2.073,1.413-3.865,3.474-4.136l0,0 l40.549-5.35c0.691-0.093,1.38-0.004,2.027,0.259l0,0l4.8,1.951c1.565,0.635,2.567,2.199,2.49,3.887l0,0L60.39,59.958l11.52,9.276 c1.032,0.831,1.583,2.111,1.479,3.432l0,0l-0.801,10.125c-0.13,1.636-1.233,3.016-2.801,3.504l0,0l-51.349,15.95 c-0.395,0.123-0.797,0.182-1.194,0.182l0,0C15.981,102.427,14.768,101.826,14.001,100.758L14.001,100.758z" id="path7"/>
</g>
</g>
<polygon fill-rule="evenodd" fill="#FFFFFF" points="56.102,65.151 19.452,74.901 17.251,11.651 58.852,5.952 " id="polygon9"/>
<path fill="#FFFFFF" d="M16.924,89.49l0.327,8.937l51.35-15.951l0.632-7.995l-51.828,14.94 C17.245,89.468,17.084,89.484,16.924,89.49z" id="path11"/>
<polygon fill="#FFFFFF" points="63.854,67.868 19.001,80.201 17.521,85.226 67.502,70.816 " id="polygon13"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -1,215 +0,0 @@
<?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="127.85367"
height="64.79351"
version="1.1"
id="svg24"
sodipodi:docname="structure.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata30">
<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>playhouse1</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs28" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview26"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="5.1346831"
inkscape:cx="51.84005"
inkscape:cy="33.888395"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg24" />
<title
id="title2">playhouse1</title>
<g
id="svg_2-5"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_3-3"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_4-5"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_5-6"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_6-2"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_7-9"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_8-1"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_9-2"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_10-7"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_11-0"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_12-9"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_13-3"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_14-6"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_15-0"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_16-6"
transform="translate(50.551498,-0.33717169)" />
<g
id="g1078"
transform="translate(-0.332261,0.04829947)">
<g
id="g22">
<title
id="title4">Layer 1</title>
<path
d="m 63.334192,22.885041 c 0.595791,0 1.132692,-0.381221 1.360653,-0.966047 0.227968,-0.584826 0.101967,-1.258227 -0.319328,-1.705706 L 46.23258,0.933345 c -0.575219,-0.611281 -1.507652,-0.611281 -2.082878,0 L 26.00741,20.213288 c -0.421295,0.447478 -0.547296,1.12088 -0.319328,1.705706 0.227968,0.584826 0.764869,0.966047 1.360441,0.966047 h 3.728216 v 11.554343 h -3.240893 c -1.375163,0 -2.683427,0.629461 -3.59053,1.727559 L 6.869687,56.83257 H 2.713463 c -1.314977,0 -2.381202,1.133071 -2.381202,2.530718 v 2.851198 c 0,1.397418 1.066224,2.530489 2.381202,2.530489 h 10.684769 c 0.685202,0 1.337277,-0.313576 1.789525,-0.860906 L 30.776951,45.017097 V 61.30826 c 0,1.898271 1.447904,3.436946 3.233968,3.436946 1.786064,0 3.233968,-1.538675 3.233968,-3.436946 v -2.026643 c 0,-1.397418 1.066224,-2.530489 2.381421,-2.530489 H 50.75662 c 1.31519,0 2.381421,1.133071 2.381421,2.530489 v 2.026878 c 0,1.898042 1.447685,3.436717 3.233748,3.436717 1.786063,0 3.233968,-1.538675 3.233968,-3.436717 V 22.885271 h 3.728436 v -2.29e-4 z M 53.138041,39.614707 c 0,1.397418 -1.066224,2.530489 -2.381421,2.530489 H 39.626308 c -1.31519,0 -2.381421,-1.133071 -2.381421,-2.530489 v -8.516561 c 0,-1.397418 1.066224,-2.530489 2.381421,-2.530489 H 50.75662 c 1.31519,0 2.381421,1.133071 2.381421,2.530489 z"
id="svg_1"
inkscape:connector-curvature="0"
style="fill:#000000" />
<g
id="svg_2" />
<g
id="svg_3" />
<g
id="svg_4" />
<g
id="svg_5" />
<g
id="svg_6" />
<g
id="svg_7" />
<g
id="svg_8" />
<g
id="svg_9" />
<g
id="svg_10" />
<g
id="svg_11" />
<g
id="svg_12" />
<g
id="svg_13" />
<g
id="svg_14" />
<g
id="svg_15" />
<g
id="svg_16" />
</g>
<g
id="g22-2"
transform="translate(51.847742,-0.52318372)">
<title
id="title4-6">Layer 1</title>
<path
sodipodi:nodetypes="ccccccsccsssssssssccccsssssssss"
d="m 63.334192,22.885041 c 0.595791,0 1.132692,-0.381221 1.360653,-0.966047 0.227968,-0.584826 0.101967,-1.258227 -0.319328,-1.705706 L 46.23258,0.933345 c -0.575219,-0.611281 -1.507652,-0.611281 -2.082878,0 L 26.00741,20.213288 c -0.421295,0.447478 -0.547296,1.12088 -0.319328,1.705706 0.227968,0.584826 0.764869,0.966047 1.360441,0.966047 -0.88219,15.475147 3.245598,33.298071 3.728428,38.423219 0,1.898271 1.447904,3.436946 3.233968,3.436946 1.786064,0 3.233968,-1.538675 3.233968,-3.436946 v -2.026643 c 0,-1.397418 1.066224,-2.530489 2.381421,-2.530489 H 50.75662 c 1.31519,0 2.381421,1.133071 2.381421,2.530489 v 2.026878 c 0,1.898042 1.447685,3.436717 3.233748,3.436717 1.786063,0 3.233968,-1.538675 3.233968,-3.436717 V 22.885271 h 3.728436 v -2.29e-4 z M 53.138041,39.614707 c 0,1.397418 -1.066224,2.530489 -2.381421,2.530489 H 39.626308 c -1.31519,0 -2.381421,-1.133071 -2.381421,-2.530489 v -8.516561 c 0,-1.397418 1.066224,-2.530489 2.381421,-2.530489 H 50.75662 c 1.31519,0 2.381421,1.133071 2.381421,2.530489 z"
id="svg_1-1"
inkscape:connector-curvature="0"
style="fill:#000000" />
<g
id="svg_2-8" />
<g
id="svg_3-7" />
<g
id="svg_4-9" />
<g
id="svg_5-2" />
<g
id="svg_6-0" />
<g
id="svg_7-2" />
<g
id="svg_8-3" />
<g
id="svg_9-7" />
<g
id="svg_10-5" />
<g
id="svg_11-9" />
<g
id="svg_12-2" />
<g
id="svg_13-2" />
<g
id="svg_14-8" />
<g
id="svg_15-9" />
<g
id="svg_16-7" />
</g>
<rect
y="25.614407"
x="57.701271"
height="19.830507"
width="29.608051"
id="rect1004"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.85938358;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke" />
<rect
y="41.912704"
x="108.02262"
height="22.309322"
width="9.0947161"
id="rect1006"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:5.46906614;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke" />
<rect
y="49.073723"
x="116.61813"
height="15.148305"
width="5.7838984"
id="rect1006-3"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.59391475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke" />
<rect
y="55.821606"
x="122.40203"
height="8.400424"
width="5.7838984"
id="rect1006-3-6"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.67630935;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -1,85 +0,0 @@
<?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="118.625"
height="118.624"
version="1.1"
id="svg13"
sodipodi:docname="tennis.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata19">
<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>SQUASH YELLOW</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs17" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview15"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="3.8206558"
inkscape:cx="23.516536"
inkscape:cy="72.818296"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg13" />
<title
id="title2">SQUASH YELLOW</title>
<g
id="g11"
transform="translate(-2.344,-2.918)">
<title
id="title4">Layer 1</title>
<g
id="svg_1">
<path
id="svg_3"
d="M 15.242,2.918 C 8.133001,2.918 2.344,8.707 2.344,15.816 v 92.828 c 0,7.117 5.789001,12.898 12.898,12.898 h 92.805 c 7.133,0 12.922,-5.781 12.922,-12.898 V 15.816 c 0,-7.109 -5.789,-12.898 -12.922,-12.898 z"
inkscape:connector-curvature="0"
style="fill:none;stroke-width:0" />
<path
id="svg_4"
d="m 18.375,68.449005 c -2.031006,0 -3.688004,1.655991 -3.688004,3.687996 0,2.023003 1.656006,3.655998 3.688004,3.655998 2.022995,0 3.664001,-1.632996 3.664001,-3.655998 0,-2.032005 -1.641006,-3.687996 -3.664001,-3.687996 z"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
id="svg_5"
d="m 72.476997,35.762001 c 4.398003,0 7.984001,-3.57 7.984001,-7.984001 0,-4.422001 -3.585999,-8.007999 -7.984001,-8.007999 -4.413994,0 -8,3.585999 -8,8.007999 0,4.413002 3.584999,7.984001 8,7.984001 z"
inkscape:connector-curvature="0"
style="fill:#000000" />
<path
id="svg_6"
d="M 109.828,105.973 96.844002,90.644997 c 0,0 -4.055,-23.68 -4.055,-23.734001 0,-0.02299 -0.609001,-2.679993 -0.609001,-2.679993 0.023,0.02299 -1.640999,-7.477001 -2.905998,-13.336002 2.022995,1.172001 3.859001,2.227001 3.952995,2.272999 0.102005,0.219002 6.883002,13.132996 6.883002,13.132996 0.516,0.953003 1.367,1.664001 2.398,1.977005 1.047,0.32 2.148,0.219002 3.102,-0.289001 0.945,-0.491997 1.656,-1.343994 1.977,-2.390999 0.336,-1.030998 0.242,-2.125 -0.273,-3.077995 L 99.869003,48.332002 c 0,0 -0.289001,-0.507999 -0.68,-0.898003 C 98.650002,46.895001 97.477997,46.231 97.477997,46.231 L 83.025002,38.003999 c -1.835999,-0.921997 -3.859001,-1.241997 -5.883003,-0.805 -0.827995,0.172005 -1.609001,0.492004 -2.491997,0.977005 -0.102005,0.023 -3.289001,1.444996 -5.148003,5.788998 l -7.421997,14.938 c 0,0 -11.296997,2.203003 -11.688004,2.272995 -0.101997,0.02301 -0.195,0.047 -0.272995,0.09401 L 39.563995,53.801 c -2.375,-1.655998 -2.663994,-6.640999 -2.687996,-6.835999 -0.297005,-3.414001 -2.25,-6.640999 -5.374992,-8.858997 -2.828003,-2 -6.25,-2.859001 -9.375,-2.344002 -2.438004,0.414001 -4.516006,1.68 -5.836014,3.538998 -1.022995,1.438 -1.561996,3.172001 -1.561996,5.031002 0,0.023 0.14801,1.609001 0.14801,1.609001 0.538986,3.147999 2.468994,6.077999 5.296997,8.101997 2.858994,2.031002 6.25,2.882999 9.375,2.344002 l 0.733994,-0.141003 c 0.07001,-0.055 4.758003,-1.491997 7.055008,0.07 0,0.023 7.897995,5.594002 10,7.077995 -0.219009,0.344002 -0.609009,1.102005 -0.586006,1.883003 0,0.241997 0.023,0.484001 0.07,0.734001 0.414001,2.195 2.561996,3.655998 4.766006,3.218994 l 14.007996,-2.733994 c 0,0 1.203003,-0.367004 1.710999,-0.734001 0.664001,-0.461006 1.148003,-1.437996 1.148003,-1.437996 L 72.142,56.902 c 0,0 2.530998,11.984001 2.578003,12.210999 -0.289001,0.289001 -11.492004,12.18 -11.492004,12.18 l -0.194992,0.242004 c -1.094009,1 -1.703003,2.32 -1.703003,3.710999 V 110.441 c 0,2.688 2.195,4.859 4.882996,4.859 2.656006,0 4.852005,-2.172 4.852005,-4.859 0,0 0,-20.703001 0,-21.047003 1.030998,-1.07 9.616997,-10.125 11.913994,-12.522995 0.242004,1.421997 2.461006,14.187996 2.461006,14.187996 0.195,1.125 0.734001,2.148003 1.538994,2.977005 0,0.023 15.430001,18.241997 15.430001,18.241997 0.859,0.977 2.03101,1.586 3.32,1.703 1.297,0.102 2.539,-0.312 3.539,-1.148 1.125,-0.945 1.711,-2.344 1.711,-3.711 -0.002,-1.118 -0.37,-2.22 -1.15099,-3.149 z M 32.820007,51.043 c -0.852005,1.195 -2.172012,1.977001 -3.805008,2.273003 C 26.718002,53.707002 24.156005,53.043 22.007003,51.480001 19.834991,49.941003 18.365997,47.746 17.975997,45.449003 L 17.882003,44.308 c 0,-1.202999 0.311996,-2.272999 0.97699,-3.202999 2.117004,-2.977001 6.977005,-3.172001 10.836014,-0.438 3.835999,2.735001 5.249992,7.399002 3.125,10.375999 z"
inkscape:connector-curvature="0"
style="fill:#000000" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.5 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 154 KiB

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,51 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
<svg height="400pt" id="svg548" sodipodi:docbase="/home/nicu/svg_gal/arrows" sodipodi:docname="/home/nicu/svg_gal/arrows/arrow12_1.svg" sodipodi:version="0.32" width="400pt" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:xlink="http://www.w3.org/1999/xlink">
<metadata>
<rdf:RDF xmlns:cc="http://web.resource.org/cc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<cc:Work rdf:about="">
<dc:title>Clipart by Nicu Buculei - arrow08_4</dc:title>
<dc:description/>
<dc:subject>
<rdf:Bag>
<rdf:li/>
<rdf:li>shape</rdf:li>
<rdf:li>arrow</rdf:li>
</rdf:Bag>
</dc:subject>
<dc:publisher>
<cc:Agent rdf:about="http://www.openclipart.org">
<dc:title>Nicu Buculei</dc:title>
</cc:Agent>
</dc:publisher>
<dc:creator>
<cc:Agent>
<dc:title>Nicu Buculei</dc:title>
</cc:Agent>
</dc:creator>
<dc:rights>
<cc:Agent>
<dc:title>Nicu Buculei</dc:title>
</cc:Agent>
</dc:rights>
<dc:date/>
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<cc:license rdf:resource="http://web.resource.org/cc/PublicDomain"/>
<dc:language>en</dc:language>
</cc:Work>
<cc:License rdf:about="http://web.resource.org/cc/PublicDomain">
<cc:permits rdf:resource="http://web.resource.org/cc/Reproduction"/>
<cc:permits rdf:resource="http://web.resource.org/cc/Distribution"/>
<cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks"/>
</cc:License>
</rdf:RDF>
</metadata>
<defs id="defs550"/>
<sodipodi:namedview id="base"/>
<path d="M 193.827 68.5149 L 209.411 50.9828 C 209.411 50.9828 224.022 50.9828 236.684 46.1128 C 249.346 41.2428 276.618 42.2168 276.618 42.2168 L 273.696 409.417 L 266.878 431.82 C 266.878 431.82 215.256 391.885 215.256 389.937 C 215.256 387.989 193.827 68.5149 193.827 68.5149 z " id="path632" style="fill:#8c6500;fill-rule:evenodd;stroke:none;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 194.801 68.5149 L 208.437 432.794 L 266.878 430.846 L 262.008 60.7229 C 262.008 60.7229 232.788 56.8269 226.944 61.6969 C 221.1 66.5669 192.853 69.4889 194.801 68.5149 z " id="path631" style="fill:#865500;fill-rule:evenodd;stroke:none;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;"/>
<path d="M 19.4801 134.747 L 39.9343 122.085 C 39.9343 122.085 212.334 113.319 221.1 114.293 C 229.866 115.267 229.866 119.163 235.71 119.163 C 241.554 119.163 347.72 122.085 356.487 120.137 C 365.253 118.189 426.615 125.007 433.433 127.929 C 440.251 130.851 488.951 180.526 488.951 181.5 C 488.951 182.474 486.029 198.058 486.029 198.058 C 486.029 198.058 82.7906 226.304 81.8166 226.304 C 80.8426 226.304 19.4801 135.721 19.4801 134.747 z " id="path630" style="fill:#8c7300;fill-rule:evenodd;stroke:none;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;" transform="translate(3.896027,-14.61010)"/>
<path d="M 36.0383 134.747 C 36.0383 134.747 221.1 123.059 224.022 129.877 C 226.944 136.695 242.528 131.825 245.45 131.825 C 248.372 131.825 352.591 128.903 364.279 130.851 C 375.967 132.799 421.745 139.617 424.667 139.617 C 427.589 139.617 486.029 196.11 486.029 197.084 C 486.029 198.058 431.485 271.108 431.485 271.108 C 431.485 271.108 215.256 282.796 207.463 277.926 C 199.671 273.056 179.217 275.004 156.815 278.9 C 134.413 282.796 26.2982 283.77 22.4022 286.692 C 18.5061 289.615 12.6621 289.615 12.6621 289.615 C 12.6621 289.615 25.3242 257.472 28.2462 250.654 C 31.1682 243.836 40.9083 234.096 42.8563 229.226 C 44.8043 224.356 41.8823 204.876 36.0383 191.24 C 30.1942 177.604 22.4022 167.864 22.4022 151.306 C 22.4022 134.747 19.4801 134.747 19.4801 134.747 L 36.0383 134.747 z " id="path629" sodipodi:nodetypes="ccccccccccccccccc" style="fill:#8c5700;fill-rule:evenodd;stroke:none;stroke-opacity:1;stroke-width:1pt;stroke-linejoin:miter;stroke-linecap:butt;fill-opacity:1;" transform="translate(3.896027,-14.61010)"/>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 17 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 168 KiB

View File

@ -1,203 +0,0 @@
<?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="437"
height="322.96289"
version="1.1"
id="svg33"
sodipodi:docname="ressort.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata39">
<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>Spring</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs37">
<defs
id="defs11">
<linearGradient
id="svg_21"
x1="0"
y1="0"
x2="1"
y2="0">
<stop
id="stop6"
stop-color="#333333"
stop-opacity="0.996094"
offset="0" />
<stop
id="stop8"
stop-color="#999999"
stop-opacity="0.996094"
offset="1" />
</linearGradient>
</defs>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview35"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="1.3906433"
inkscape:cx="123.65745"
inkscape:cy="224.79729"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg33" />
<!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->
<title
id="title2">Spring</title>
<g
id="g902"
transform="translate(-97.5,-81.5)">
<g
transform="matrix(0.53002014,0,0,1,146.39356,0)"
style="fill:#000000;fill-opacity:1"
id="svg_17">
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="305.00085"
y="231.0491"
width="22"
height="251.00128"
transform="rotate(-75.7685,316,356.551)"
id="svg_18" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="304.9989"
y="231.96317"
width="22"
height="251.00128"
transform="rotate(75.7685,316,357.465)"
id="svg_19" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="169.49997"
y="372.96289"
width="301.00003"
height="28.999998"
id="svg_20" />
</g>
<g
transform="matrix(0.53002014,0,0,1,146.39356,0)"
style="fill:#000000;fill-opacity:1"
id="svg_13">
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="305.00085"
y="164.0491"
width="22"
height="251.00128"
transform="rotate(-75.7685,316,289.551)"
id="svg_14" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="304.9989"
y="164.96317"
width="22"
height="251.00128"
transform="rotate(75.7685,316,290.465)"
id="svg_15" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="169.49997"
y="305.96289"
width="301.00003"
height="28.999998"
id="svg_16" />
</g>
<g
transform="matrix(0.53002014,0,0,1,145.86354,0)"
style="fill:#000000;fill-opacity:1"
id="svg_9">
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="306.00085"
y="97.051064"
width="22"
height="251.00128"
transform="rotate(-75.7685,317,222.551)"
id="svg_10" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="305.9989"
y="97.965126"
width="22"
height="251.00128"
transform="rotate(75.7685,317,223.465)"
id="svg_11" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="170.49997"
y="238.96484"
width="301.00003"
height="28.999998"
id="svg_12" />
</g>
<g
transform="matrix(0.53002014,0,0,1,146.39356,0)"
style="fill:#000000;fill-opacity:1"
id="svg_8">
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="305.00085"
y="33.08622"
width="22"
height="251.00128"
id="svg_5"
transform="rotate(-75.7685,316,158.586)" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="304.9989"
y="34.000278"
width="22"
height="251.00128"
transform="rotate(75.7685,316,159.5)"
id="svg_6" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="169.49997"
y="175"
width="301.00003"
height="28.999998"
id="svg_7" />
</g>
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="100"
y="84"
width="432"
height="55"
id="svg_1"
rx="21"
ry="21" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.7 KiB

View File

@ -1,215 +0,0 @@
<?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="127.85367"
height="64.79351"
version="1.1"
id="svg24"
sodipodi:docname="structure.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata30">
<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>playhouse1</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs28" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview26"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="5.1346831"
inkscape:cx="51.84005"
inkscape:cy="33.888395"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg24" />
<title
id="title2">playhouse1</title>
<g
id="svg_2-5"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_3-3"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_4-5"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_5-6"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_6-2"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_7-9"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_8-1"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_9-2"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_10-7"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_11-0"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_12-9"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_13-3"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_14-6"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_15-0"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_16-6"
transform="translate(50.551498,-0.33717169)" />
<g
id="g1078"
transform="translate(-0.332261,0.04829947)">
<g
id="g22">
<title
id="title4">Layer 1</title>
<path
d="m 63.334192,22.885041 c 0.595791,0 1.132692,-0.381221 1.360653,-0.966047 0.227968,-0.584826 0.101967,-1.258227 -0.319328,-1.705706 L 46.23258,0.933345 c -0.575219,-0.611281 -1.507652,-0.611281 -2.082878,0 L 26.00741,20.213288 c -0.421295,0.447478 -0.547296,1.12088 -0.319328,1.705706 0.227968,0.584826 0.764869,0.966047 1.360441,0.966047 h 3.728216 v 11.554343 h -3.240893 c -1.375163,0 -2.683427,0.629461 -3.59053,1.727559 L 6.869687,56.83257 H 2.713463 c -1.314977,0 -2.381202,1.133071 -2.381202,2.530718 v 2.851198 c 0,1.397418 1.066224,2.530489 2.381202,2.530489 h 10.684769 c 0.685202,0 1.337277,-0.313576 1.789525,-0.860906 L 30.776951,45.017097 V 61.30826 c 0,1.898271 1.447904,3.436946 3.233968,3.436946 1.786064,0 3.233968,-1.538675 3.233968,-3.436946 v -2.026643 c 0,-1.397418 1.066224,-2.530489 2.381421,-2.530489 H 50.75662 c 1.31519,0 2.381421,1.133071 2.381421,2.530489 v 2.026878 c 0,1.898042 1.447685,3.436717 3.233748,3.436717 1.786063,0 3.233968,-1.538675 3.233968,-3.436717 V 22.885271 h 3.728436 v -2.29e-4 z M 53.138041,39.614707 c 0,1.397418 -1.066224,2.530489 -2.381421,2.530489 H 39.626308 c -1.31519,0 -2.381421,-1.133071 -2.381421,-2.530489 v -8.516561 c 0,-1.397418 1.066224,-2.530489 2.381421,-2.530489 H 50.75662 c 1.31519,0 2.381421,1.133071 2.381421,2.530489 z"
id="svg_1"
inkscape:connector-curvature="0"
style="fill:#000000" />
<g
id="svg_2" />
<g
id="svg_3" />
<g
id="svg_4" />
<g
id="svg_5" />
<g
id="svg_6" />
<g
id="svg_7" />
<g
id="svg_8" />
<g
id="svg_9" />
<g
id="svg_10" />
<g
id="svg_11" />
<g
id="svg_12" />
<g
id="svg_13" />
<g
id="svg_14" />
<g
id="svg_15" />
<g
id="svg_16" />
</g>
<g
id="g22-2"
transform="translate(51.847742,-0.52318372)">
<title
id="title4-6">Layer 1</title>
<path
sodipodi:nodetypes="ccccccsccsssssssssccccsssssssss"
d="m 63.334192,22.885041 c 0.595791,0 1.132692,-0.381221 1.360653,-0.966047 0.227968,-0.584826 0.101967,-1.258227 -0.319328,-1.705706 L 46.23258,0.933345 c -0.575219,-0.611281 -1.507652,-0.611281 -2.082878,0 L 26.00741,20.213288 c -0.421295,0.447478 -0.547296,1.12088 -0.319328,1.705706 0.227968,0.584826 0.764869,0.966047 1.360441,0.966047 -0.88219,15.475147 3.245598,33.298071 3.728428,38.423219 0,1.898271 1.447904,3.436946 3.233968,3.436946 1.786064,0 3.233968,-1.538675 3.233968,-3.436946 v -2.026643 c 0,-1.397418 1.066224,-2.530489 2.381421,-2.530489 H 50.75662 c 1.31519,0 2.381421,1.133071 2.381421,2.530489 v 2.026878 c 0,1.898042 1.447685,3.436717 3.233748,3.436717 1.786063,0 3.233968,-1.538675 3.233968,-3.436717 V 22.885271 h 3.728436 v -2.29e-4 z M 53.138041,39.614707 c 0,1.397418 -1.066224,2.530489 -2.381421,2.530489 H 39.626308 c -1.31519,0 -2.381421,-1.133071 -2.381421,-2.530489 v -8.516561 c 0,-1.397418 1.066224,-2.530489 2.381421,-2.530489 H 50.75662 c 1.31519,0 2.381421,1.133071 2.381421,2.530489 z"
id="svg_1-1"
inkscape:connector-curvature="0"
style="fill:#000000" />
<g
id="svg_2-8" />
<g
id="svg_3-7" />
<g
id="svg_4-9" />
<g
id="svg_5-2" />
<g
id="svg_6-0" />
<g
id="svg_7-2" />
<g
id="svg_8-3" />
<g
id="svg_9-7" />
<g
id="svg_10-5" />
<g
id="svg_11-9" />
<g
id="svg_12-2" />
<g
id="svg_13-2" />
<g
id="svg_14-8" />
<g
id="svg_15-9" />
<g
id="svg_16-7" />
</g>
<rect
y="25.614407"
x="57.701271"
height="19.830507"
width="29.608051"
id="rect1004"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.85938358;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke" />
<rect
y="41.912704"
x="108.02262"
height="22.309322"
width="9.0947161"
id="rect1006"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:5.46906614;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke" />
<rect
y="49.073723"
x="116.61813"
height="15.148305"
width="5.7838984"
id="rect1006-3"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.59391475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke" />
<rect
y="55.821606"
x="122.40203"
height="8.400424"
width="5.7838984"
id="rect1006-3-6"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.67630935;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@ -1,46 +0,0 @@
<?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"
id="svg8"
version="1.1"
viewBox="0 0 43.832203 43.832203"
height="43.832203mm"
width="43.832203mm">
<defs
id="defs2" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(-80.448126,-115.79125)"
id="layer1">
<g
id="g823">
<circle
style="opacity:0.597;vector-effect:none;fill:#008000;fill-opacity:1;stroke:none;stroke-width:1.66499996;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.77307697;paint-order:markers fill stroke"
id="path815"
cx="102.36423"
cy="137.70735"
r="21.916101" />
<circle
style="opacity:1;vector-effect:none;fill:#aa4400;fill-opacity:1;stroke:none;stroke-width:1.66499996;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.77307697;paint-order:markers fill stroke"
id="path819"
cx="102.36423"
cy="137.70735"
r="3.3408689" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1,25 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg width="65" height="65" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
<g>
<title>Layer 1</title>
<g id="svg_1" stroke="null">
<path id="svg_2" d="m62.75653,34.58033l-8.05376,-2.01399c-0.81086,-0.19895 -1.66603,-0.00337 -2.27777,0.52673l-3.12657,2.70092l-1.71601,-1.73935l1.06051,-1.62063c0.70161,-1.07148 0.34201,-2.47333 -0.80283,-3.13006c-1.14235,-0.65815 -2.64222,-0.32117 -3.34396,0.75147l-0.34201,0.52336l-1.04251,-1.05696c-0.82554,-0.83935 -1.99281,-1.14056 -3.12076,-1.01056l-1.08211,-1.33381c1.15924,-1.60404 1.04639,-3.79482 -0.41775,-5.28208c-1.25769,-1.27393 -3.15163,-1.66185 -4.80257,-1.14276l-10.94632,-13.47518l-1.13418,-4.49289c-0.32415,-1.28378 -1.54847,-2.19078 -2.95806,-2.19078c-1.40959,0 -2.63391,0.907 -2.95806,2.19091l-14.73698,58.38389c-0.38701,1.52951 0.62462,3.06227 2.25866,3.42349c1.63044,0.35928 3.27168,-0.5857 3.65759,-2.11405l11.77878,-46.66374l11.77892,46.66387c0.33038,1.30931 1.5781,2.19195 2.9557,2.19195c0.23179,0 0.46663,-0.02553 0.70175,-0.07789c1.63418,-0.36122 2.64582,-1.89397 2.25866,-3.42349l-12.22534,-48.43459l7.56096,9.30799c-1.47259,1.62063 -1.47384,4.04159 0.10676,5.64447c1.3776,1.39615 3.51165,1.71848 5.25965,0.9604l0.73609,0.907c-0.748,0.76262 -1.03767,1.74635 -0.90335,2.71777c-0.00485,0.15462 1.49613,8.23989 1.49613,8.23989c0.20895,1.08042 1.21477,1.87077 2.39298,1.87077c0.83578,0 1.6267,-0.4036 2.07326,-1.08703l0.77901,-1.18942l2.12338,2.09863c0.46192,0.39686 1.03656,0.62692 1.62933,0.62692c0.58904,0 1.18015,-0.19999 1.64803,-0.60372l5.71797,-4.93849l6.76048,1.69075c1.30754,0.32441 2.63142,-0.3979 2.97827,-1.61169c0.34658,-1.21495 -0.42523,-2.46335 -1.72197,-2.78802z" fill="black" stroke="null"/>
<path id="svg_3" d="m54.33583,39.12234l-4.89742,4.2294c-0.98671,0.85257 -1.04833,2.292 -0.13764,3.21676c0.47965,0.48551 1.13293,0.73242 1.78829,0.73242c0.58904,0 1.18043,-0.20012 1.64844,-0.60346l4.89714,-4.2294c0.98699,-0.85257 1.04861,-2.29187 0.13791,-3.21689c-0.91083,-0.92152 -2.44753,-0.9814 -3.43674,-0.12883l0.00002,0z" stroke="null"/>
</g>
<g id="svg_4"/>
<g id="svg_5"/>
<g id="svg_6"/>
<g id="svg_7"/>
<g id="svg_8"/>
<g id="svg_9"/>
<g id="svg_10"/>
<g id="svg_11"/>
<g id="svg_12"/>
<g id="svg_13"/>
<g id="svg_14"/>
<g id="svg_15"/>
<g id="svg_16"/>
<g id="svg_17"/>
<g id="svg_18"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1,3 +0,0 @@
<svg enable-background="new 0 0 580 580" height="580" viewBox="0 0 580 580" width="580" xmlns="http://www.w3.org/2000/svg">
<path d="m529.47 221.775h-466.541v40h69.628v103.399h30v-103.399h267.284v103.399h30v-103.399h69.629z" fill="param(fill)" fill-opacity="param(fill-opacity)" stroke="param(outline)" stroke-opacity="param(outline-opacity)" stroke-width="param(outline-width)"/>
</svg>

Before

Width:  |  Height:  |  Size: 388 B

View File

@ -1,174 +0,0 @@
<?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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="252.24365"
height="251.86287"
id="svg2"
sodipodi:version="0.32"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
sodipodi:docname="basket.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape"
inkscape:export-filename="/home/gioppo/Disegni/basketball2.png"
inkscape:export-xdpi="90"
inkscape:export-ydpi="90"
sodipodi:modified="TRUE"
version="1.1">
<defs
id="defs4">
<linearGradient
id="linearGradient2189">
<stop
style="stop-color:#ffd52a;stop-opacity:1;"
offset="0"
id="stop2191" />
<stop
style="stop-color:#ff7f2a;stop-opacity:1;"
offset="1"
id="stop2193" />
</linearGradient>
<linearGradient
id="linearGradient17099">
<stop
style="stop-color:#f09700;stop-opacity:1;"
offset="0"
id="stop17101" />
<stop
id="stop17107"
offset="1"
style="stop-color:#f6f700;stop-opacity:0.49803922;" />
<stop
style="stop-color:#f6f700;stop-opacity:0;"
offset="1"
id="stop17103" />
</linearGradient>
<linearGradient
id="linearGradient4180">
<stop
style="stop-color:#ffe92a;stop-opacity:1;"
offset="0"
id="stop4182" />
<stop
id="stop4188"
offset="0.5"
style="stop-color:#fff22a;stop-opacity:0.49803922;" />
<stop
style="stop-color:#ff7f2a;stop-opacity:0;"
offset="1"
id="stop4184" />
</linearGradient>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient4180"
id="radialGradient5277"
cx="378.40622"
cy="466.38931"
fx="378.40622"
fy="466.38931"
r="171.71356"
gradientTransform="matrix(1,0,0,0.9950338,0,2.3161611)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient17099"
id="radialGradient17105"
cx="129.15811"
cy="738.49414"
fx="129.15811"
fy="738.49414"
r="483.95963"
gradientTransform="matrix(1,0,0,0.9994274,0,0.4228264)"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2189"
id="linearGradient3172"
x1="481.63095"
y1="537.79144"
x2="274.91696"
y2="486.54004"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.1706996"
inkscape:cx="1.7660124"
inkscape:cy="31.551992"
inkscape:document-units="px"
inkscape:current-layer="layer1"
inkscape:window-width="1878"
inkscape:window-height="1031"
inkscape:window-x="42"
inkscape:window-y="25"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-maximized="1" />
<metadata
id="metadata7">
<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="Livello 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-274.92648,-319.60744)">
<path
style="fill:#ee6900;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:4.9243083;stroke-miterlimit:4;stroke-opacity:1"
d="m 290.0785,500.00544 c -30.11295,-61.16013 -4.83796,-135.19883 56.41738,-165.26497 61.25534,-30.06614 135.4093,-4.83043 165.52224,56.32969 30.11294,61.16013 4.83796,135.19884 -56.41738,165.26497 -61.19954,30.03875 -135.27102,4.89016 -165.44407,-56.1712"
id="path2236"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.73245698px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 277.39495,430.72241 Z"
id="path9163"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.39474154;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 278.66319,433.19164 c 19.44633,-47.32695 235.46979,-0.82308 244.77022,24.69233"
id="path9165"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.39474154;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 430.85192,324.54541 c 103.99563,36.62695 55.80254,231.28477 -41.8519,243.2194"
id="path10136"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.39474154;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 349.6846,333.18772 c 59.18451,4.93847 98.07718,93.83084 161.06641,61.73082"
id="path12150"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:4.39474154;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 295.15031,510.97246 c 84.97204,12.7577 197.84535,-105.35392 205.45478,8.64232"
id="path13121"
sodipodi:nodetypes="cc"
inkscape:connector-curvature="0" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 6.2 KiB

View File

@ -1,68 +0,0 @@
<?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"
version="1.1"
viewBox="0 0 512 512"
enable-background="new 0 0 512 512"
id="svg8"
sodipodi:docname="letter-svgrepo-com.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata14">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs12" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview10"
showgrid="false"
inkscape:zoom="0.921875"
inkscape:cx="228.89591"
inkscape:cy="261.44697"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg8" />
<path
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#fffefe;stroke-width:14.7525425;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke"
d="m 52.299302,271.64592 c 0,-142.35651 0.01482,-143.34115 2.128103,-141.42865 1.170457,1.05925 44.421065,44.99175 96.112465,97.62779 51.6914,52.63604 95.48917,96.5908 97.32836,97.67724 5.2045,3.07437 11.58198,2.56303 17.74929,-1.42311 2.90779,-1.8794 47.17338,-46.08282 99.03173,-98.89265 51.57552,-52.52181 93.92128,-95.49419 94.1017,-95.49419 0.1804,0 0.32801,64.18983 0.32801,142.64407 V 415.00048 H 255.68913 52.299302 Z"
id="path825"
inkscape:connector-curvature="0" />
<path
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#fffefe;stroke-width:14.7525425;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke"
d="M 168.71994,186.34338 81.750738,97.712349 168.99112,97.434747 c 47.98221,-0.152681 126.52444,-0.152681 174.53829,0 l 87.2979,0.277602 -86.77977,88.406781 c -47.72888,48.62373 -87.13497,88.50769 -87.56909,88.63103 -0.43413,0.12333 -39.92546,-39.65972 -87.75851,-88.40678 z"
id="path827"
inkscape:connector-curvature="0" />
<g
id="g6">
<g
id="g4">
<path
d="M480.5,56H31.3C20,56,10.9,65.2,10.9,76.5v359c0,11.3,9.1,20.5,20.4,20.5h449.2c11.3,0,20.4-9.2,20.4-20.5v-359 C500.9,65.2,491.7,56,480.5,56z M432.4,97L256.3,276.2L80.2,97H432.4z M51.7,415V126.5l190,193.3c10.3,10.9,18.6,9,29.1,0 l189.3-192.5V415H51.7z"
id="path2" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -1,48 +0,0 @@
<?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 495 495" style="enable-background:new 0 0 495 495;" xml:space="preserve">
<g>
<rect x="381.009" y="195.505" style="fill:#FF5023;" width="76.931" height="120"/>
<rect x="37.061" y="195.505" style="fill:#FF0C38;" width="76.93" height="120"/>
<path style="fill:#FF5023;" d="M247.5,315.505c-33.084,0-60-26.916-60-60s26.916-60,60-60V153.51H113.99V455H247.5V315.505z"/>
<path style="fill:#FF0C38;" d="M381.009,153.51H247.5v41.995c33.084,0,60,26.916,60,60s-26.916,60-60,60l0,139.495h133.509V153.51z
"/>
<path style="fill:#FFA733;" d="M187.5,255.505c0,33.084,26.916,60,60,60l0-120C214.416,195.505,187.5,222.421,187.5,255.505z"/>
<path style="fill:#FF9811;" d="M307.5,255.505c0-33.084-26.916-60-60-60v120C280.584,315.505,307.5,288.589,307.5,255.505z"/>
<path style="fill:#C70024;" d="M247.5,0c-66.821,0-122.331,49.346-132.011,113.51H247.5V0z"/>
<path style="fill:#A5001E;" d="M379.51,113.51C369.83,49.346,314.321,0,247.5,0v113.51H379.51z"/>
<rect x="93.99" y="113.51" style="fill:#FFA733;" width="307.018" height="40"/>
<rect x="53.99" y="455" style="fill:#A5001E;" width="387.018" height="40"/>
</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>

Before

Width:  |  Height:  |  Size: 1.5 KiB

View File

@ -1,135 +0,0 @@
<?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="127.51759mm"
height="74.327583mm"
viewBox="0 0 127.51759 74.327583"
version="1.1"
id="svg8"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
sodipodi:docname="cage_foot.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.7"
inkscape:cx="466.54066"
inkscape:cy="79.739722"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1878"
inkscape:window-height="1031"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Calque 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-40.383943,-43.166939)">
<path
style="fill:none;stroke:#000000;stroke-width:1.04489565;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 56.027259,65.4896 H 152.27121"
id="path874"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:1.04489565;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 56.5788,78.214793 h 95.41664"
id="path876"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:1.04489565;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 55.751487,90.939985 H 151.99544"
id="path878"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#000000;stroke-width:1.04489565;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 56.303031,103.66518 H 152.27121"
id="path880"
inkscape:connector-curvature="0" />
<path
style="opacity:1;vector-effect:none;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2.7650001;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke"
d="M 41.766443,44.549439 V 107.48254 H 54.995609 V 57.610656 h 98.294261 v 50.040354 h 13.22916 V 44.717902 H 54.995609 v -0.168463 z"
id="rect918"
inkscape:connector-curvature="0" />
<g
transform="translate(1.7627355,7.1489988)"
id="g969">
<path
style="fill:#ffffff;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 123.22939,88.154239 c 0,-12.133208 -9.83599,-21.969128 -21.9692,-21.969128 -12.133205,0 -21.969125,9.83592 -21.969125,21.969128 0,12.133211 9.83592,21.969131 21.969125,21.969131 12.13321,0 21.9692,-9.83592 21.9692,-21.969131"
id="path951" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 100.92688,80.157144 -0.0139,-0.01023 -7.765067,5.650837 0.02414,0.0071 z"
id="path953" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 96.151434,94.964121 0.06711,-0.09849 -1.338351,-3.661828 1.220973,3.760314 z"
id="path955" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 86.591873,83.910024 -0.348654,-0.107898 -3.253564,5.412331 3.603582,-5.274424 z"
id="path957" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 92.09737,101.51906 0.08423,-0.13579 -3.715913,-1.406694 z"
id="path959" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 105.72464,94.964121 1.35601,-4.179422 -1.52945,4.179422 z"
id="path961" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 115.4839,83.927006 -0.006,0.125221 1.88487,2.919914 -1.83815,-3.05782 z"
id="path963" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 109.67087,101.63132 3.63162,-1.54248 -3.71585,1.40669 z"
id="path965" />
<path
style="fill:#030000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0"
d="m 116.69552,102.88953 0.61445,-4.094233 0.0444,-0.0163 2.87408,-7.353734 2.36713,-2.490985 c -0.195,5.4006 -2.40539,10.296156 -5.90006,13.955252 m -6.984,-1.60079 -3.99575,-6.407759 1.524,-4.021804 1.73488,-4.74053 6.36506,-1.970731 1.87914,2.910912 2.63898,4.389965 -2.76188,7.06653 -3.85382,1.416376 z m -5.01109,6.66467 h -7.54791 l -4.950731,-6.5625 -0.02019,-0.008 -0.08423,0.13586 -0.04692,-0.0199 4.32599,-6.535019 h 9.002681 l -0.0158,0.04351 4.13891,6.580589 z m -3.44024,1.5504 c -2.062734,0 -4.05795,-0.29437 -5.946223,-0.84279 l 1.691234,-0.48519 v 0.0436 h 8.003169 l 1.68905,0.58259 c -1.73652,0.45764 -3.55891,0.70181 -5.43723,0.70181 m -12.728687,-9.682191 -3.858526,-1.638786 -2.762024,-6.847257 1.220428,-2.030272 3.547451,-5.192171 6.292084,1.89332 1.750161,5.266921 1.300157,3.603174 -4.12977,6.244752 z m -8.576821,-10.287357 1.588724,1.760255 -0.0074,0.01241 2.877015,7.133234 0.04733,0.02012 -0.03772,-0.01425 0.519299,3.460289 C 82.082035,98.518142 80.255759,94.230345 79.95471,89.534284 m 13.440185,-21.22851 -0.771105,1.534094 -6.521383,5.238617 -2.226492,0.695536 c 2.37272,-3.322244 5.672866,-5.938722 9.51898,-7.468247 m 7.378565,4.730027 v 7.001191 l -7.659972,5.576019 -6.234247,-1.826618 -0.439501,-8.547698 6.299722,-5.049558 z m 0.31346,-0.2604 -0.0337,0.01166 -1.487108,-0.527757 z m 7.59094,13.174874 -0.21265,0.580955 0.19322,-0.595004 z m -7.46108,-12.857457 8.23001,-2.847687 6.16154,5.048467 -0.43978,8.54879 -6.37454,1.833847 -7.57723,-5.562923 z m 17.66994,3.027744 -3.00033,-1.029391 -6.26071,-5.127991 0.005,-0.0015 -1.06144,-1.868426 c 4.21898,1.541801 7.81928,4.378917 10.31791,8.027309 m 2.82074,3.395699 c -1.11771,-2.6426 -2.71776,-5.015797 -4.7556,-7.053708 -2.03791,-2.037911 -4.41104,-3.637889 -7.05364,-4.755603 -2.73617,-1.157271 -5.64231,-1.744091 -8.638,-1.744091 -2.995619,0 -5.901824,0.58682 -8.637931,1.744091 -2.6426,1.117714 -5.015797,2.717692 -7.053708,4.755603 -2.037911,2.037911 -3.637889,4.411108 -4.755603,7.053708 -1.157271,2.736107 -1.744091,5.642312 -1.744091,8.637932 0,2.995619 0.58682,5.901825 1.744091,8.637999 1.117714,2.6426 2.717692,5.015867 4.755603,7.053637 2.037911,2.03784 4.411108,3.63789 7.053708,4.75567 2.736107,1.1572 5.642312,1.74402 8.637931,1.74402 2.99569,0 5.90183,-0.58682 8.638,-1.74402 2.6426,-1.11778 5.01573,-2.71783 7.05364,-4.75567 2.03784,-2.03777 3.63789,-4.411037 4.7556,-7.053637 1.15728,-2.736174 1.7441,-5.64238 1.7441,-8.637999 0,-2.99562 -0.58682,-5.901825 -1.7441,-8.637932"
id="path967" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.4 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 5.4 KiB

View File

@ -1,239 +0,0 @@
<?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="458.92419"
height="488.90564"
version="1.1"
id="svg81"
sodipodi:docname="compost.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata85">
<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>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview83"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="1.1212866"
inkscape:cx="-56.545285"
inkscape:cy="143.88697"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg81" />
<defs
id="defs66">
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.64365,0,0,0.207583,-2534.28,-1995.51)"
r="164.24319"
cy="12661.793"
cx="1725.5107"
id="SVGID_11_">
<stop
stop-color="#706F6F"
offset="0.1044"
id="stop2" />
<stop
stop-color="#8A8989"
offset="0.2809"
id="stop4" />
<stop
stop-color="#A8A8A7"
offset="0.478"
id="stop6" />
<stop
stop-color="#FFFFFF"
offset="0.9157"
id="stop8" />
</radialGradient>
<linearGradient
y2="321.64993"
x2="278.91382"
y1="679.90643"
x1="278.91382"
id="SVGID_12_"
gradientTransform="scale(1.0814242,0.92470652)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#305F1B"
offset="0"
id="stop11" />
<stop
stop-color="#30601B"
offset="0.0017"
id="stop13" />
<stop
stop-color="#457B24"
offset="0.0602"
id="stop15" />
<stop
stop-color="#558F2A"
offset="0.1153"
id="stop17" />
<stop
stop-color="#609C2D"
offset="0.1656"
id="stop19" />
<stop
stop-color="#67A52F"
offset="0.2094"
id="stop21" />
<stop
stop-color="#69A82F"
offset="0.2418"
id="stop23" />
<stop
stop-color="#C6D76B"
offset="0.8956"
id="stop25" />
</linearGradient>
<linearGradient
y2="297.33185"
x2="165.47058"
y1="542.98517"
x1="165.47058"
id="SVGID_13_"
gradientTransform="scale(1.8227923,0.54860887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#3C2803"
offset="0.022"
id="stop28" />
<stop
stop-color="#624314"
offset="0.2033"
id="stop30" />
<stop
stop-color="#9F834A"
offset="0.6099"
id="stop32" />
</linearGradient>
<linearGradient
y2="326.82501"
x2="218.18687"
y1="326.82501"
x1="129.90536"
id="SVGID_14_"
gradientTransform="scale(1.7330155,0.57702887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#9F834A"
offset="0.309"
id="stop35" />
<stop
stop-color="#B79764"
offset="0.6067"
id="stop37" />
<stop
stop-color="#AF905B"
offset="0.7332"
id="stop39" />
<stop
stop-color="#9F834A"
offset="0.9066"
id="stop41" />
</linearGradient>
<linearGradient
y2="1101.8185"
x2="172.10794"
y1="1306.282"
x1="172.10794"
id="SVGID_15_"
gradientTransform="scale(1.7524962,0.57061465)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#FFFFFF"
offset="0.1703"
id="stop44" />
<stop
stop-color="#EDEADA"
offset="0.6538"
id="stop46" />
<stop
stop-color="#E9E7D6"
offset="0.7062"
id="stop48" />
<stop
stop-color="#DDDCC9"
offset="0.7638"
id="stop50" />
<stop
stop-color="#C8C9B5"
offset="0.824"
id="stop52" />
<stop
stop-color="#ABAE99"
offset="0.8859"
id="stop54" />
<stop
stop-color="#878C76"
offset="0.9484"
id="stop56" />
<stop
stop-color="#636A54"
offset="1"
id="stop58" />
</linearGradient>
<linearGradient
y2="526.30341"
x2="277.54233"
y1="388.42102"
x1="310.1022"
id="SVGID_23_"
gradientTransform="scale(1.0217712,0.9786927)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#706045"
offset="0.0506"
id="stop61" />
<stop
stop-color="#473E2A"
offset="0.6011"
id="stop63" />
</linearGradient>
</defs>
<polygon
id="svg_16"
points="107.91808,297.43576 495.33099,297.43576 472.87463,628.70563 130.37862,628.70563 "
style="fill:#a17400;fill-opacity:1;stroke:#000000;stroke-width:19.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="translate(-72.160409,-149.54999)" />
<path
id="svg_17"
d="m 312.97704,79.073425 h -7.08691 c 0.025,-0.65769 0.0706,-1.30397 0.0706,-1.96182 v -38.65074 c 0,-18.17569 -10.68643,-32.8857698 -23.86788,-32.8857698 H 176.83559 c -13.19404,0 -23.8721,14.7156298 -23.8721,32.8857698 v 38.65074 c 0,0.65785 0.0332,1.30413 0.0622,1.96182 h -7.07854 L 5.5750952,150.62146 v 40.60661 H 453.34911 v -40.60661 z m -136.49863,-32.4454 c 0,-5.296 3.12212,-9.59124 6.96236,-9.59124 h 92.03835 c 3.83618,0 6.96237,4.29524 6.96237,9.59124 v 32.43964 H 176.47841 Z"
style="fill:#3c2803;fill-opacity:1;stroke:#000000;stroke-width:11.15019035;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="svg_28"
d="m 215.60974,222.31038 c -16.19899,2.177 -36.46726,31.17419 -55.2344,53.50557 -0.24903,0.28469 40.04563,27.44645 40.04563,27.44645 l 47.82148,-56.13772 c 0,0 -7.99631,-28.1223 -32.63271,-24.8143 z m 82.06191,74.10822 43.59546,-51.59893 -22.29556,11.0768 c -2.04904,-6.62333 -8.45175,-25.97387 -14.34946,-30.00771 -7.14262,-4.89439 -68.80818,-3.30801 -68.80818,-3.30801 0,0 2.02759,0.24901 10.73531,10.87034 7.51255,9.1417 14.09332,41.76725 15.77933,50.63859 l -23.38438,11.66019 z m -156.78188,79.67866 c 0,0 -23.59063,27.82361 -13.26784,46.24927 6.77981,12.11536 39.33413,7.9606 65.40045,7.1994 0.34843,-0.0137 13.61649,-54.72913 13.61649,-54.72913 z m 29.98619,-39.54758 17.6004,11.16935 -16.51186,-50.45369 -60.47754,1.42983 16.7752,10.70686 c -5.52057,6.68735 -21.54895,26.62115 -23.55499,34.66741 -2.41164,9.732 17.19485,60.93977 17.19485,60.93977 0,0 -0.36278,-1.91364 6.86515,-17.24465 6.23205,-13.1968 34.4184,-43.16883 42.10879,-51.21488 z m 160.23211,-48.99532 c -0.0926,-0.29158 -54.72204,28.07252 -54.72204,28.07252 l 18.90218,55.51168 c 0,0 32.26273,-0.0137 46.64763,-22.24584 9.44042,-14.59116 -3.13026,-39.51203 -10.82777,-61.33836 z m -21.68377,85.47672 c -13.97932,4.26852 -49.48605,1.93508 -59.07613,1.18799 l 5.64152,-23.24191 -42.52128,50.98017 17.79259,50.73807 5.39249,-22.15357 c 7.73312,-0.15629 30.60513,-0.96024 38.62267,-5.11509 9.71097,-5.00819 52.0473,-59.05457 52.0473,-59.05457 0,0 -1.67889,1.70729 -17.89916,6.65891 z"
style="fill:#000000;fill-opacity:1;stroke-width:1.71356702"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -1,239 +0,0 @@
<?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="458.92419"
height="488.90564"
version="1.1"
id="svg81"
sodipodi:docname="conteneur.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata85">
<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 />
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview83"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="0.5606433"
inkscape:cx="-93.026907"
inkscape:cy="97.032039"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg81" />
<defs
id="defs66">
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.64365,0,0,0.207583,-2534.28,-1995.51)"
r="164.24319"
cy="12661.793"
cx="1725.5107"
id="SVGID_11_">
<stop
stop-color="#706F6F"
offset="0.1044"
id="stop2" />
<stop
stop-color="#8A8989"
offset="0.2809"
id="stop4" />
<stop
stop-color="#A8A8A7"
offset="0.478"
id="stop6" />
<stop
stop-color="#FFFFFF"
offset="0.9157"
id="stop8" />
</radialGradient>
<linearGradient
y2="321.64993"
x2="278.91382"
y1="679.90643"
x1="278.91382"
id="SVGID_12_"
gradientTransform="scale(1.0814242,0.92470652)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#305F1B"
offset="0"
id="stop11" />
<stop
stop-color="#30601B"
offset="0.0017"
id="stop13" />
<stop
stop-color="#457B24"
offset="0.0602"
id="stop15" />
<stop
stop-color="#558F2A"
offset="0.1153"
id="stop17" />
<stop
stop-color="#609C2D"
offset="0.1656"
id="stop19" />
<stop
stop-color="#67A52F"
offset="0.2094"
id="stop21" />
<stop
stop-color="#69A82F"
offset="0.2418"
id="stop23" />
<stop
stop-color="#C6D76B"
offset="0.8956"
id="stop25" />
</linearGradient>
<linearGradient
y2="297.33185"
x2="165.47058"
y1="542.98517"
x1="165.47058"
id="SVGID_13_"
gradientTransform="scale(1.8227923,0.54860887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#3C2803"
offset="0.022"
id="stop28" />
<stop
stop-color="#624314"
offset="0.2033"
id="stop30" />
<stop
stop-color="#9F834A"
offset="0.6099"
id="stop32" />
</linearGradient>
<linearGradient
y2="326.82501"
x2="218.18687"
y1="326.82501"
x1="129.90536"
id="SVGID_14_"
gradientTransform="scale(1.7330155,0.57702887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#9F834A"
offset="0.309"
id="stop35" />
<stop
stop-color="#B79764"
offset="0.6067"
id="stop37" />
<stop
stop-color="#AF905B"
offset="0.7332"
id="stop39" />
<stop
stop-color="#9F834A"
offset="0.9066"
id="stop41" />
</linearGradient>
<linearGradient
y2="1101.8185"
x2="172.10794"
y1="1306.282"
x1="172.10794"
id="SVGID_15_"
gradientTransform="scale(1.7524962,0.57061465)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#FFFFFF"
offset="0.1703"
id="stop44" />
<stop
stop-color="#EDEADA"
offset="0.6538"
id="stop46" />
<stop
stop-color="#E9E7D6"
offset="0.7062"
id="stop48" />
<stop
stop-color="#DDDCC9"
offset="0.7638"
id="stop50" />
<stop
stop-color="#C8C9B5"
offset="0.824"
id="stop52" />
<stop
stop-color="#ABAE99"
offset="0.8859"
id="stop54" />
<stop
stop-color="#878C76"
offset="0.9484"
id="stop56" />
<stop
stop-color="#636A54"
offset="1"
id="stop58" />
</linearGradient>
<linearGradient
y2="526.30341"
x2="277.54233"
y1="388.42102"
x1="310.1022"
id="SVGID_23_"
gradientTransform="scale(1.0217712,0.9786927)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#706045"
offset="0.0506"
id="stop61" />
<stop
stop-color="#473E2A"
offset="0.6011"
id="stop63" />
</linearGradient>
</defs>
<polygon
id="svg_16"
points="107.91808,297.43576 495.33099,297.43576 472.87463,628.70563 130.37862,628.70563 "
style="fill:#32a200;fill-opacity:1;stroke:#000000;stroke-width:19.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="translate(-72.160409,-149.54999)" />
<path
id="svg_17"
d="m 312.97704,79.073425 h -7.08691 c 0.025,-0.65769 0.0706,-1.30397 0.0706,-1.96182 v -38.65074 c 0,-18.17569 -10.68643,-32.8857698 -23.86788,-32.8857698 H 176.83559 c -13.19404,0 -23.8721,14.7156298 -23.8721,32.8857698 v 38.65074 c 0,0.65785 0.0332,1.30413 0.0622,1.96182 h -7.07854 L 5.5750952,150.62146 v 40.60661 H 453.34911 v -40.60661 z m -136.49863,-32.4454 c 0,-5.296 3.12212,-9.59124 6.96236,-9.59124 h 92.03835 c 3.83618,0 6.96237,4.29524 6.96237,9.59124 v 32.43964 H 176.47841 Z"
style="fill:#3c2803;fill-opacity:1;stroke:#000000;stroke-width:11.15019035;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
<path
id="svg_28"
d="m 216.50158,222.31038 c -16.19899,2.177 -36.46726,31.17419 -55.2344,53.50557 -0.24903,0.28469 40.04563,27.44645 40.04563,27.44645 l 47.82148,-56.13772 c 0,0 -7.99631,-28.1223 -32.63271,-24.8143 z m 82.06191,74.10822 43.59545,-51.59893 -22.29556,11.0768 c -2.04904,-6.62333 -8.45175,-25.97387 -14.34946,-30.00771 -7.14261,-4.89439 -68.80817,-3.30801 -68.80817,-3.30801 0,0 2.02759,0.24901 10.73531,10.87034 7.51255,9.1417 14.09332,41.76725 15.77933,50.63859 l -23.38438,11.66019 z m -156.78188,79.67866 c 0,0 -23.59063,27.82361 -13.26784,46.24927 6.77981,12.11536 39.33413,7.9606 65.40045,7.1994 0.34843,-0.0137 13.61649,-54.72913 13.61649,-54.72913 z m 29.98619,-39.54758 17.6004,11.16935 -16.51186,-50.45369 -60.47754,1.42983 16.7752,10.70686 c -5.52057,6.68735 -21.54895,26.62115 -23.55499,34.66741 -2.41164,9.732 17.19485,60.93977 17.19485,60.93977 0,0 -0.36278,-1.91364 6.86515,-17.24465 6.23205,-13.1968 34.4184,-43.16883 42.10879,-51.21488 z m 160.2321,-48.99532 c -0.0926,-0.29158 -54.72203,28.07252 -54.72203,28.07252 l 18.90218,55.51168 c 0,0 32.26272,-0.0137 46.64762,-22.24584 9.44042,-14.59116 -3.13026,-39.51203 -10.82777,-61.33836 z m -21.68377,85.47672 c -13.97931,4.26852 -49.48604,1.93508 -59.07612,1.18799 l 5.64152,-23.24191 -42.52128,50.98017 17.79259,50.73807 5.39249,-22.15357 c 7.73312,-0.15629 30.60513,-0.96024 38.62267,-5.11509 9.71097,-5.00819 52.04729,-59.05457 52.04729,-59.05457 0,0 -1.67889,1.70729 -17.89916,6.65891 z"
style="fill:#000000;fill-opacity:1;stroke-width:1.71356702"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -1,234 +0,0 @@
<?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="458.92419"
height="488.90564"
version="1.1"
id="svg81"
sodipodi:docname="dechets.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata85">
<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>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview83"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="0.5606433"
inkscape:cx="-305.42413"
inkscape:cy="31.876073"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg81" />
<defs
id="defs66">
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.64365,0,0,0.207583,-2534.28,-1995.51)"
r="164.24319"
cy="12661.793"
cx="1725.5107"
id="SVGID_11_">
<stop
stop-color="#706F6F"
offset="0.1044"
id="stop2" />
<stop
stop-color="#8A8989"
offset="0.2809"
id="stop4" />
<stop
stop-color="#A8A8A7"
offset="0.478"
id="stop6" />
<stop
stop-color="#FFFFFF"
offset="0.9157"
id="stop8" />
</radialGradient>
<linearGradient
y2="321.64993"
x2="278.91382"
y1="679.90643"
x1="278.91382"
id="SVGID_12_"
gradientTransform="scale(1.0814242,0.92470652)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#305F1B"
offset="0"
id="stop11" />
<stop
stop-color="#30601B"
offset="0.0017"
id="stop13" />
<stop
stop-color="#457B24"
offset="0.0602"
id="stop15" />
<stop
stop-color="#558F2A"
offset="0.1153"
id="stop17" />
<stop
stop-color="#609C2D"
offset="0.1656"
id="stop19" />
<stop
stop-color="#67A52F"
offset="0.2094"
id="stop21" />
<stop
stop-color="#69A82F"
offset="0.2418"
id="stop23" />
<stop
stop-color="#C6D76B"
offset="0.8956"
id="stop25" />
</linearGradient>
<linearGradient
y2="297.33185"
x2="165.47058"
y1="542.98517"
x1="165.47058"
id="SVGID_13_"
gradientTransform="scale(1.8227923,0.54860887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#3C2803"
offset="0.022"
id="stop28" />
<stop
stop-color="#624314"
offset="0.2033"
id="stop30" />
<stop
stop-color="#9F834A"
offset="0.6099"
id="stop32" />
</linearGradient>
<linearGradient
y2="326.82501"
x2="218.18687"
y1="326.82501"
x1="129.90536"
id="SVGID_14_"
gradientTransform="scale(1.7330155,0.57702887)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#9F834A"
offset="0.309"
id="stop35" />
<stop
stop-color="#B79764"
offset="0.6067"
id="stop37" />
<stop
stop-color="#AF905B"
offset="0.7332"
id="stop39" />
<stop
stop-color="#9F834A"
offset="0.9066"
id="stop41" />
</linearGradient>
<linearGradient
y2="1101.8185"
x2="172.10794"
y1="1306.282"
x1="172.10794"
id="SVGID_15_"
gradientTransform="scale(1.7524962,0.57061465)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#FFFFFF"
offset="0.1703"
id="stop44" />
<stop
stop-color="#EDEADA"
offset="0.6538"
id="stop46" />
<stop
stop-color="#E9E7D6"
offset="0.7062"
id="stop48" />
<stop
stop-color="#DDDCC9"
offset="0.7638"
id="stop50" />
<stop
stop-color="#C8C9B5"
offset="0.824"
id="stop52" />
<stop
stop-color="#ABAE99"
offset="0.8859"
id="stop54" />
<stop
stop-color="#878C76"
offset="0.9484"
id="stop56" />
<stop
stop-color="#636A54"
offset="1"
id="stop58" />
</linearGradient>
<linearGradient
y2="526.30341"
x2="277.54233"
y1="388.42102"
x1="310.1022"
id="SVGID_23_"
gradientTransform="scale(1.0217712,0.9786927)"
gradientUnits="userSpaceOnUse">
<stop
stop-color="#706045"
offset="0.0506"
id="stop61" />
<stop
stop-color="#473E2A"
offset="0.6011"
id="stop63" />
</linearGradient>
</defs>
<polygon
id="svg_16"
points="107.91808,297.43576 495.33099,297.43576 472.87463,628.70563 130.37862,628.70563 "
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:19.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
transform="translate(-72.160409,-149.54999)" />
<path
id="svg_17"
d="m 312.97704,79.073425 h -7.08691 c 0.025,-0.65769 0.0706,-1.30397 0.0706,-1.96182 v -38.65074 c 0,-18.17569 -10.68643,-32.8857698 -23.86788,-32.8857698 H 176.83559 c -13.19404,0 -23.8721,14.7156298 -23.8721,32.8857698 v 38.65074 c 0,0.65785 0.0332,1.30413 0.0622,1.96182 h -7.07854 L 5.5750952,150.62146 v 40.60661 H 453.34911 v -40.60661 z m -136.49863,-32.4454 c 0,-5.296 3.12212,-9.59124 6.96236,-9.59124 h 92.03835 c 3.83618,0 6.96237,4.29524 6.96237,9.59124 v 32.43964 H 176.47841 Z"
style="fill:#c1c1c1;fill-opacity:1;stroke:#000000;stroke-width:11.15019035;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
inkscape:connector-curvature="0" />
</svg>

Before

Width:  |  Height:  |  Size: 6.5 KiB

View File

@ -1,126 +0,0 @@
<?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="518.43048" height="480.05527" id="svg4779" version="1.1" inkscape:version="0.48.3.1 r9886" sodipodi:docname="defibrillator.svg">
<defs id="defs4781"/>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="0.35" inkscape:cx="-237.2133" inkscape:cy="100.02765" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1600" inkscape:window-height="848" inkscape:window-x="1272" inkscape:window-y="116" inkscape:window-maximized="1"/>
<metadata id="metadata4784">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Calque 1" inkscape:groupmode="layer" id="layer1" transform="translate(-117.92759,-152.33457)">
<g id="g4601" transform="matrix(34.728732,0,0,34.728732,-7885.2132,-7492.0539)" style="fill:#00a654;fill-opacity:1;stroke:none">
<g display="none" id="Selected_x5F_Ver1" style="fill:#00a654;fill-opacity:1;stroke:none;display:none">
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4484">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective9"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="base-8"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1-9" style="fill:#00a654;fill-opacity:1;stroke:none">
<linearGradient y2="445.9136" x2="371.97739" y1="459.7363" x1="371.97739" gradientUnits="userSpaceOnUse" id="path7_9_">
<stop id="stop4490" style="stop-color:#CE5C00" offset="0"/>
<stop id="stop4492" style="stop-color:#D16200" offset="0.1753"/>
<stop id="stop4494" style="stop-color:#D97100" offset="0.3981"/>
<stop id="stop4496" style="stop-color:#E68B00" offset="0.6465"/>
<stop id="stop4498" style="stop-color:#F8AF00" offset="0.9118"/>
<stop id="stop4500" style="stop-color:#FFBD00" offset="1"/>
</linearGradient>
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 4.438,5.555 7.464,9.904 2.863,-4.321 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_2" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4504">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4506"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4508"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_5_" style="opacity:0.45000000000000001;fill:#00a654;fill-opacity:1;stroke:none">
<linearGradient y2="448.07031" x2="372.6199" y1="459.7363" x1="372.6199" gradientUnits="userSpaceOnUse" id="path7_10_">
<stop id="stop4512" style="stop-color:#703C19" offset="0"/>
<stop id="stop4514" style="stop-color:#CE5C00" offset="0.589"/>
</linearGradient>
<path d="m 365.805,453.426 c 1.543,1.95 4.169,3.427 6.172,6.311 2.576,-3.889 9.168,-6.734 7.043,-11.666 -0.301,2.726 -3,4.479 -5.584,5.271 -1.735,0.532 -5.124,1.333 -7.631,0.084 z" sodipodi:nodetypes="ccccccc" id="path7_5_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4518">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4520"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4522"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_1_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 4.438,5.555 7.464,9.904 2.863,-4.321 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7_1_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="Highlights_copy" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4527">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4529"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4531"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_8_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.036,447.644 c -0.645,0 -1.22,0.3 -1.593,0.768 -0.277,0.349 -0.442,0.79 -0.442,1.269 0,0.45 0.09,0.835 0.246,1.181 -0.147,-1.261 0.686,-2.784 1.789,-3.218 z" sodipodi:nodetypes="ccccccc" id="path7_8_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
</g>
<g display="none" id="Selected_x5F_Ver2" style="fill:#00a654;fill-opacity:1;stroke:none;display:none">
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_4_2_" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4537">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4539"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4541"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_6_" style="fill:#00a654;fill-opacity:1;stroke:none">
<linearGradient y2="445.9136" x2="371.97739" y1="459.7363" x1="371.97739" gradientUnits="userSpaceOnUse" id="path7_11_">
<stop id="stop4545" style="stop-color:#67A42C" offset="0"/>
<stop id="stop4547" style="stop-color:#88CD44" offset="0.7669"/>
<stop id="stop4549" style="stop-color:#99DA4C" offset="0.8651"/>
<stop id="stop4551" style="stop-color:#B8F059" offset="1"/>
</linearGradient>
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 4.438,5.555 7.464,9.904 2.863,-4.321 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7_6_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_4_1_" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4555">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4557"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4559"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_4_" style="opacity:0.31999996000000003;fill:#00a654;fill-opacity:1;stroke:none">
<linearGradient y2="448.07031" x2="372.6199" y1="459.7363" x1="372.6199" gradientUnits="userSpaceOnUse" id="path7_12_">
<stop id="stop4563" style="stop-color:#4C662B" offset="0"/>
<stop id="stop4565" style="stop-color:#4C662B" offset="1"/>
</linearGradient>
<path d="m 365.805,453.426 c 1.543,1.95 4.169,3.427 6.172,6.311 2.576,-3.889 9.168,-6.734 7.043,-11.666 -0.301,2.726 -3,4.479 -5.584,5.271 -1.735,0.532 -5.124,1.333 -7.631,0.084 z" sodipodi:nodetypes="ccccccc" id="path7_4_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="Highlights" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4569">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4571"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4573"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_7_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.036,447.644 c -0.645,0 -1.22,0.3 -1.593,0.768 -0.277,0.349 -0.442,0.79 -0.442,1.269 0,0.45 0.09,0.835 0.246,1.181 -0.147,-1.261 0.686,-2.784 1.789,-3.218 z" sodipodi:nodetypes="ccccccc" id="path7_7_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
<g display="inline" inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_4" style="fill:#00a654;fill-opacity:1;stroke:none;display:inline">
<defs id="defs4578">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4580"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4582"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_3_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 4.438,5.555 7.464,9.904 2.863,-4.321 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7_3_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
</g>
<g inkscape:output_extension="org.inkscape.output.svg.inkscape" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docbase="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\submissions" sodipodi:docname="heart_jon_phillips_01.svg" id="svg1_copy_3" style="fill:#00a654;fill-opacity:1;stroke:none">
<defs id="defs4587">
<inkscape:perspective inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_x="0 : 526.18109 : 1" sodipodi:type="inkscape:persp3d" id="perspective4589"/>
</defs>
<sodipodi:namedview showgrid="false" showguides="true" pagecolor="#ffffff" inkscape:zoom="0.35" inkscape:pageshadow="2" inkscape:window-y="116" inkscape:window-x="88" inkscape:window-width="866" inkscape:window-height="667" bordercolor="#666666" inkscape:document-units="px" inkscape:cy="596.00159" inkscape:pageopacity="0.0" borderopacity="1.0" inkscape:cx="549.40674" inkscape:current-layer="layer1" inkscape:guide-bbox="true" id="namedview4591"/>
<g inkscape:groupmode="layer" inkscape:label="Layer 1" transform="translate(-134.06575,-225.79588)" id="layer1_2_" style="fill:#00a654;fill-opacity:1;stroke:none">
<path d="m 368.433,445.913 c -2.165,0 -3.92,1.755 -3.92,3.919 0,4.401 3.17563,6.69521 7.464,9.904 4.45115,-3.22151 7.464,-5.645 7.464,-9.904 0,-2.164 -1.756,-3.919 -3.92,-3.919 -1.568,0 -2.918,0.926 -3.544,2.26 -0.626,-1.334 -1.975,-2.26 -3.544,-2.26 z" sodipodi:nodetypes="ccccccc" id="path7_2_" inkscape:connector-curvature="0" style="fill:#00a654;fill-opacity:1;stroke:none"/>
</g>
</g>
</g>
<path style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 459.30542,208.16062 -145.58282,173.50679 58.60048,0 -77.34278,162.89651 161.05792,-180.36371 -66.972,0 z" id="path11839" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 19 KiB

View File

@ -1,60 +0,0 @@
<?xml version="1.0" encoding="windows-1252"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 393.652 393.652" style="enable-background:new 0 0 393.652 393.652;" xml:space="preserve" width="512" height="512">
<g>
<rect x="170.212" y="152.226" style="fill:#5C6670;" width="53.23" height="57.395"/>
<rect x="170.212" y="152.226" style="opacity:0.2;fill:#222222;" width="26.615" height="57.395"/>
<path style="opacity:0.2;fill:#222222;" d="M170.212,152.226v14.156c8.471,2.369,17.389,3.663,26.615,3.663 c9.226,0,18.144-1.294,26.615-3.663v-14.156H170.212z"/>
<g>
<path style="fill:#7D868C;" d="M120.401,112.067c13.969,28.079,42.937,47.382,76.426,47.382c33.49,0,62.459-19.303,76.428-47.382 H120.401z"/>
<path style="opacity:0.1;fill:#222222;" d="M120.401,112.067c13.969,28.079,42.937,47.382,76.426,47.382v-47.382H120.401z"/>
<path style="opacity:0.2;fill:#222222;" d="M120.401,112.067c3.604,7.245,8.213,13.898,13.633,19.794H259.62 c5.422-5.896,10.031-12.549,13.635-19.794H120.401z"/>
<path style="fill:#A4A9AD;" d="M270.126,124.046H123.528c-6.615,0-11.977-5.363-11.977-11.979c0-6.614,5.361-11.977,11.977-11.977 h146.598c6.615,0,11.979,5.362,11.979,11.977C282.105,118.683,276.741,124.046,270.126,124.046z"/>
</g>
<path style="fill:#00B3E3;" d="M347.554,182.338c-4.142,0-7.5-3.358-7.5-7.5c0-12.798-10.411-23.21-23.209-23.21 c-12.799,0-23.211,10.412-23.211,23.21c0,4.142-3.357,7.5-7.5,7.5c-4.143,0-7.5-3.358-7.5-7.5c0-21.069,17.142-38.21,38.211-38.21 c21.068,0,38.209,17.141,38.209,38.21C355.054,178.98,351.696,182.338,347.554,182.338z"/>
<g>
<path style="fill:#00B3E3;" d="M107.52,182.338c-4.142,0-7.5-3.358-7.5-7.5c0-12.798-10.413-23.21-23.211-23.21 c-6.204,0-12.035,2.417-16.421,6.807c-2.928,2.93-7.677,2.932-10.606,0.005c-2.931-2.928-2.933-7.677-0.005-10.607 c7.219-7.226,16.819-11.205,27.032-11.205c21.069,0,38.211,17.141,38.211,38.21C115.02,178.98,111.662,182.338,107.52,182.338z"/>
<path style="fill:#00B3E3;" d="M46.101,182.338c-4.143,0-7.5-3.358-7.5-7.5c0-3.078,0.367-6.143,1.093-9.11 c0.984-4.024,5.042-6.488,9.067-5.505c4.023,0.984,6.487,5.044,5.504,9.067c-0.44,1.803-0.664,3.669-0.664,5.548 C53.601,178.98,50.242,182.338,46.101,182.338z"/>
</g>
<path style="fill:#00B3E3;" d="M289.289,17.169C278.229,6.098,263.52,0.001,247.872,0.001c-21.892,0-41.002,12.084-51.045,29.925 C186.784,12.085,167.674,0,145.783,0c-32.281,0-58.544,26.263-58.544,58.544c0,4.142,3.357,7.5,7.5,7.5c4.142,0,7.5-3.358,7.5-7.5 c0-24.01,19.533-43.544,43.544-43.544c24.01,0,43.544,19.534,43.544,43.544v20.378c0,4.142,3.357,7.5,7.5,7.5 c4.143,0,7.5-3.358,7.5-7.5V58.544c0-24.01,19.534-43.543,43.545-43.543c11.639,0,22.579,4.535,30.806,12.769 c2.928,2.93,7.677,2.933,10.606,0.005C292.215,24.848,292.217,20.099,289.289,17.169z M304.736,44.576 c-0.985-4.022-5.047-6.485-9.07-5.498c-4.022,0.986-6.484,5.047-5.498,9.069c0.827,3.376,1.247,6.874,1.247,10.396 c0,4.142,3.357,7.5,7.5,7.5c4.143,0,7.5-3.358,7.5-7.5C306.415,53.819,305.851,49.12,304.736,44.576z"/>
<g>
<rect x="96.931" y="216.127" style="fill:#7D868C;" width="199.794" height="75.517"/>
<g>
<path style="fill:#969DA2;" d="M135.494,237.403c-10.122,0-18.329,8.207-18.329,18.33v35.91h36.659v-35.91 C153.824,245.61,145.617,237.403,135.494,237.403z"/>
<path style="fill:#969DA2;" d="M196.826,237.403c-10.123,0-18.329,8.207-18.329,18.33v35.91h36.659v-35.91 C215.156,245.61,206.948,237.403,196.826,237.403z"/>
<path style="fill:#969DA2;" d="M258.158,237.403c-10.122,0-18.33,8.207-18.33,18.33v35.91h36.659v-35.91 C276.487,245.61,268.28,237.403,258.158,237.403z"/>
</g>
<rect x="96.931" y="216.127" style="opacity:0.1;fill:#222222;" width="99.896" height="75.517"/>
<rect x="96.931" y="216.127" style="opacity:0.2;fill:#222222;" width="199.794" height="27.126"/>
<path style="fill:#A4A9AD;" d="M295.47,221.598H98.185c-6.615,0-11.978-5.362-11.978-11.978c0-6.615,5.362-11.978,11.978-11.978 H295.47c6.615,0,11.978,5.362,11.978,11.978C307.448,216.235,302.085,221.598,295.47,221.598z"/>
</g>
<g>
<rect x="26.001" y="294.326" style="fill:#7D868C;" width="341.65" height="99.326"/>
<g>
<path style="fill:#969DA2;" d="M64.503,335.141c-10.921,0-19.774,8.854-19.774,19.773v38.738h39.546v-38.738 C84.275,343.994,75.423,335.141,64.503,335.141z"/>
<path style="fill:#969DA2;" d="M130.664,335.141c-10.92,0-19.773,8.854-19.773,19.773v38.738h39.545v-38.738 C150.437,343.994,141.584,335.141,130.664,335.141z"/>
<path style="fill:#969DA2;" d="M196.826,335.141c-10.92,0-19.773,8.854-19.773,19.773v38.738H216.6v-38.738 C216.6,343.994,207.745,335.141,196.826,335.141z"/>
<path style="fill:#969DA2;" d="M262.988,335.141c-10.919,0-19.773,8.854-19.773,19.773v38.738h39.547v-38.738 C282.762,343.994,273.907,335.141,262.988,335.141z"/>
<path style="fill:#969DA2;" d="M329.149,335.141c-10.919,0-19.772,8.854-19.772,19.773v38.738h39.547v-38.738 C348.924,343.994,340.069,335.141,329.149,335.141z"/>
</g>
<rect x="26.001" y="294.326" style="opacity:0.1;fill:#222222;" width="170.825" height="99.326"/>
<rect x="26.001" y="294.326" style="opacity:0.2;fill:#222222;" width="341.65" height="27.127"/>
<path style="fill:#A4A9AD;" d="M375.172,306.304H18.48c-6.615,0-11.977-5.363-11.977-11.978c0-6.615,5.362-11.978,11.977-11.978 h356.691c6.614,0,11.978,5.362,11.978,11.978C387.149,300.94,381.786,306.304,375.172,306.304z"/>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 MiB

View File

@ -1,70 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 18.1.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<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 612 612" style="enable-background:new 0 0 612 612;" xml:space="preserve">
<g>
<path d="M517.002,127.269c34.795-48.858,48.567-97.321,49.136-99.359c1.588-5.689,0.565-11.789-2.793-16.647
c-3.36-4.86-8.703-7.972-14.587-8.499C528.185,0.93,508.54,0,490.369,0c-91.523,0-153.357,23.368-183.782,69.456
c-31.759,48.104-18.893,105.348-8.956,134.088c-0.016,0.027-0.031,0.053-0.046,0.078c-6.111-4.977-12.544-8.849-18.563-11.7
c-8.083-43.785-36.625-88.232-96.018-88.232c-35.876,0-80.007,16.408-131.173,48.769c-3.615,2.286-6.027,6.063-6.579,10.303
c-0.554,4.242,0.808,8.511,3.715,11.649c2.623,2.831,65.198,69.347,147.254,69.347c20.353,0,40.183-4.142,59.18-12.339
c4.999,1.786,19.32,8.008,23.498,21.693c-3.719,16.277-6.058,34.191-6.92,53.19H90.676c-12.338,0-22.338,10.001-22.338,22.338
v23.308c0,12.338,10.001,22.337,22.338,22.337h15.216L137.81,592.89c1.602,10.974,11.012,19.11,22.103,19.11h286.694
c11.091,0,20.501-8.136,22.103-19.11l31.911-218.604h15.22c12.338,0,22.338-10.001,22.338-22.337v-23.31
c0-12.338-10.001-22.338-22.338-22.338H317.43c1.71-33.528,8.615-60.571,18.14-77.553
C407.427,228.128,470.132,193.082,517.002,127.269z M83.253,167.056c39.467-22.953,72.967-34.572,99.751-34.572
c36.966,0,54.318,23.243,62.463,45.171c-1.169-0.658-2.375-1.327-3.646-2.009c-12.044-6.528-28.857-13.734-46.45-17.672
c-4.373-1.028-8.808-1.792-13.163-2.425c-2.18-0.31-4.362-0.507-6.493-0.758c-2.144-0.149-4.262-0.295-6.344-0.443
c-2.082-0.047-4.127-0.095-6.129-0.14c-1.996,0.046-3.947,0.093-5.848,0.139c-3.794,0.232-7.348,0.503-10.606,0.975
c-1.632,0.175-3.181,0.436-4.65,0.718c-1.467,0.272-2.857,0.496-4.154,0.766c-2.581,0.629-4.824,1.107-6.646,1.617
c-3.613,1.077-5.678,1.694-5.678,1.694s2.138-0.171,5.881-0.472c1.865-0.118,4.142-0.12,6.723-0.197
c1.296,0.007,2.676,0.077,4.122,0.113c1.444,0.029,2.96,0.093,4.539,0.257c3.157,0.206,6.548,0.667,10.099,1.194
c1.763,0.332,3.575,0.673,5.427,1.023c1.825,0.432,3.69,0.875,5.587,1.323c1.867,0.538,3.764,1.081,5.688,1.633
c1.896,0.645,3.819,1.236,5.726,1.938c3.81,1.413,7.625,2.935,11.339,4.69c14.93,6.852,28.318,16.354,37.485,24.19
c4.61,3.897,8.196,7.367,10.575,9.8c0.37,0.377,0.7,0.722,1.012,1.048c-14.128,5.511-28.733,8.305-43.634,8.305
C146.748,214.965,103.918,184.633,83.253,167.056z M339.763,91.36c22.604-34.242,73.277-51.604,150.604-51.604
c9.277,0,18.986,0.263,29.049,0.78c-18.246,44.301-67.983,137.118-167.304,147.514c0.177-0.598,0.365-1.229,0.58-1.927
c1.385-4.488,3.597-11.014,6.796-18.712c1.573-3.861,3.44-7.988,5.5-12.334c2.109-4.309,4.384-8.865,6.991-13.437
c2.556-4.607,5.401-9.255,8.437-13.905c1.562-2.282,3.077-4.661,4.756-6.909l2.477-3.434l2.59-3.354
c3.451-4.501,7.173-8.777,10.96-12.921c1.9-2.062,3.885-4.001,5.806-5.994c2.013-1.892,3.998-3.759,5.954-5.596
c2.044-1.752,4.056-3.473,6.025-5.157c2.053-1.597,4.063-3.159,6.018-4.679c2.033-1.435,4.009-2.827,5.921-4.176
c1.918-1.364,3.885-2.481,5.722-3.67c0.93-0.574,1.83-1.165,2.733-1.695c0.915-0.507,1.808-1.004,2.68-1.488
c1.752-0.959,3.402-1.914,4.988-2.74c3.217-1.537,6.016-2.973,8.38-4.007c4.783-1.994,7.518-3.134,7.518-3.134
s-2.924,0.549-8.043,1.509c-2.558,0.525-5.615,1.351-9.182,2.211c-1.763,0.489-3.613,1.088-5.587,1.683
c-0.986,0.304-2,0.613-3.035,0.932c-1.028,0.343-2.06,0.742-3.126,1.125c-2.113,0.804-4.386,1.531-6.636,2.503
c-2.26,0.968-4.599,1.969-7.004,2.999c-2.363,1.145-4.789,2.321-7.266,3.524c-2.432,1.322-4.913,2.671-7.438,4.043
c-2.466,1.495-4.973,3.013-7.509,4.55c-2.461,1.653-5.013,3.274-7.494,5.031c-4.946,3.527-9.908,7.266-14.629,11.291
c-4.798,3.958-9.324,8.22-13.729,12.502c-4.355,4.322-8.524,8.717-12.38,13.136c-3.907,4.386-7.45,8.818-10.785,13.069
c-3.279,4.286-6.315,8.411-8.982,12.323c-1.054,1.528-2.045,3.006-3.001,4.453C324.619,133.264,327.418,110.06,339.763,91.36z"/>
</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>

Before

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -1,49 +0,0 @@
<?xml version="1.0" encoding="windows-1252"?>
<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
<g>
<g>
<path d="M504.984,407.552c-4.486-4.37-10.547-6.739-16.809-6.578c-33.187,0.855-64.219-6.478-92.22-26.71 c-25.3-18.279-45.075-44.849-61.547-71.479c-9.209-14.888-17.894-33.443-42.745-52.21c-30.764-23.236-71.898-33.537-109.531-33.63 v-50.912l55.611,41.751c25.235,6.452,49.633,17.687,70.077,34.915c18.506,15.595,27.542,30.093,35.339,43.223l10.051-4.423 l5.98,29.697c12.223,17.828,24.964,32.867,39.287,44.615c1.685-3.255,2.321-7.08,1.541-10.952l-18.14-90.084 c-0.993-4.926-4.152-9.143-8.601-11.481c-4.449-2.336-9.714-2.544-14.333-0.566l-23.457,10.049 c-6.28-25.238-8.436-33.902-14.58-58.596l56.505-77.152c4.538-6.196,3.194-14.9-3.003-19.439 c-6.197-4.539-14.898-3.194-19.44,3.003l-57.133,78.01l-38.956,10.266l-76.747-57.619v-9.2c0-5.202-2.352-10.126-6.399-13.395 l-75.536-61.009c-5.327-4.302-12.935-4.302-18.263,0L6.399,108.655C2.353,111.925,0,116.848,0,122.05v337.033 c0,4.693,3.805,8.497,8.497,8.497h20.366c4.693,0,8.498-3.805,8.498-8.497v-90.074h107.411v90.074 c0,4.693,3.805,8.497,8.497,8.497h4.179c0.21,0,0.275,0,0.266,0h15.921c4.693,0,8.498-3.805,8.498-8.497V284.537 c18.986,2.052,43.324,7.407,65.79,20.479c18.565,10.803,33.309,25.424,43.879,43.523c23.311,39.917,44.09,65.968,67.373,84.471 c38.645,30.711,83.079,38.657,132.495,32.511c0.009-0.001,0.019-0.002,0.029-0.003C503.326,464.062,512,454.201,512,442.482v-18.3 C512,417.919,509.469,411.922,504.984,407.552z M144.772,339.822L144.772,339.822H37.361v-40.863h107.411V339.822z M144.772,269.771L144.772,269.771H37.361v-42.007h107.411V269.771z"/>
</g>
</g>
<g>
<g>
<path d="M448.619,294.203c-58.083-46.371-53.978-43.173-55.356-44.016c0.486,1.719-0.339-2.18,10.325,50.777l24.206,19.325 c7.204,5.752,17.706,4.571,23.456-2.631C457.001,310.456,455.823,299.954,448.619,294.203z"/>
</g>
</g>
<g>
<g>
<circle cx="271.262" cy="146.57" r="32.45"/>
</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>

Before

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1,43 +0,0 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- Generator: Adobe Illustrator 18.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"
viewBox="0 0 296.166 296.166" style="enable-background:new 0 0 296.166 296.166;" xml:space="preserve">
<path d="M215.25,34.5c0-6.903-5.597-12.5-12.5-12.5h-15.222c2.683-2.293,4.389-5.694,4.389-9.5c0-6.903-5.597-12.5-12.5-12.5
h-62.667c-6.903,0-12.5,5.597-12.5,12.5c0,3.806,1.706,7.207,4.389,9.5H93.416c-6.903,0-12.5,5.597-12.5,12.5
c0,6.5,4.963,11.838,11.305,12.439l9.361,86.331c-5.026,1.619-8.666,6.33-8.666,11.896c0,6.903,5.597,12.5,12.5,12.5h21.299V281.97
c0,7.841,6.355,14.196,14.196,14.196h14.607c7.841,0,14.196-6.355,14.196-14.196V157.666h21.034c6.903,0,12.5-5.597,12.5-12.5
c0-5.565-3.64-10.276-8.666-11.896l9.361-86.331C210.287,46.338,215.25,41,215.25,34.5z M116.605,132.666L107.316,47h9.912
l5.784,53.334c0.417,3.844,3.667,6.692,7.447,6.692c0.27,0,0.543-0.015,0.817-0.045c4.118-0.446,7.094-4.146,6.648-8.265L132.316,47
h56.534l-9.289,85.666H116.605z"/>
<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>

Before

Width:  |  Height:  |  Size: 1.4 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 24 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 32 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 10 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 20 KiB

View File

@ -1,21 +0,0 @@
<?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="463.89285" height="438.87704" id="svg2" sodipodi:version="0.32" inkscape:version="0.46" version="1.0" sodipodi:docname="dynaHouse.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape">
<defs id="defs4">
<inkscape:perspective sodipodi:type="inkscape:persp3d" inkscape:vp_x="0 : 526.18109 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_z="744.09448 : 526.18109 : 1" inkscape:persp3d-origin="372.04724 : 350.78739 : 1" id="perspective10"/>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" gridtolerance="10000" guidetolerance="10" objecttolerance="10" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="1.4098083" inkscape:cx="231.94643" inkscape:cy="219.43852" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1006" inkscape:window-height="954" inkscape:window-x="660" inkscape:window-y="43"/>
<metadata id="metadata7">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-42.339286,-276.34171)">
<path style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.40000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 437.14509,499.4375 L 437.14509,499.4375 z M 437.14509,499.4375 L 274.33259,355.25 L 111.42634,499.5 L 111.42634,705.625 C 111.42634,710.94838 115.72796,715.21875 121.05134,715.21875 L 222.86384,715.21875 L 222.86384,624.84375 C 222.86384,619.52035 227.13421,615.21875 232.45759,615.21875 L 316.11384,615.21875 C 321.43719,615.21875 325.70759,619.52037 325.70759,624.84375 L 325.70759,715.21875 L 427.55134,715.21875 C 432.87471,715.21875 437.14511,710.9484 437.14509,705.625 L 437.14509,499.4375 z M 111.42634,499.5 L 111.42634,499.5 z" id="rect2391" sodipodi:nodetypes="cccccccccccccccccc"/>
<path style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.40000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 273.3878,276.34171 L 42.339286,480.92527 L 66.677596,508.38266 L 274.33298,324.49848 L 481.9411,508.38266 L 506.23215,480.92527 L 275.2309,276.34171 L 274.33298,277.3814 L 273.3878,276.34171 z" id="path2399"/>
<path style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.40000001;stroke-miterlimit:4;stroke-opacity:1" d="M 111.42634,305.79074 L 169.99777,305.79074 L 169.48739,340.48183 L 111.42634,392.9336 L 111.42634,305.79074 z" id="rect2404" sodipodi:nodetypes="ccccc"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -1,62 +0,0 @@
<?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"
viewBox="0 0 14 14"
height="14"
width="14"
id="svg109"
version="1.1"
sodipodi:docname="panneau.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview6"
showgrid="false"
inkscape:zoom="33.714286"
inkscape:cx="0.38126703"
inkscape:cy="4.0848826"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg109" />
<metadata
id="metadata115">
<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 />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs113" />
<rect
style="opacity:1;vector-effect:none;fill:#dbdbdb;fill-opacity:1;stroke:none;stroke-width:1.12158978;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke"
id="rect824"
width="12"
height="9"
x="1"
y="1" />
<path
id="rect18-1"
d="m 0,0 c 0,4.6666667 0,9.3333333 0,14 h 1 v -3 h 12 v 3 h 1 C 14,9.3333333 14,4.6666667 14,0 9.3333333,0 4.6666667,0 0,0 Z m 1,1 h 12 v 9 H 1 Z m 3,2 v 1 h 6 V 3 Z M 2,5 V 6 H 12 V 5 Z M 2,7 V 8 H 12 V 7 Z"
style="opacity:1;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:5.16719103;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:markers stroke fill" />
</svg>

Before

Width:  |  Height:  |  Size: 2.3 KiB

View File

@ -1,40 +0,0 @@
<?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"
version="1.1"
width="100%"
height="100%"
viewBox="0 0 14 14"
id="svg2">
<metadata
id="metadata8">
<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="defs6" />
<rect
width="14"
height="14"
x="0"
y="0"
id="canvas"
style="fill:none;stroke:none;visibility:hidden" />
<path
d="M 7,0.25 C 6.625,0.25 6.25,0.5 6.25,1 l 0,13 1.5,0 0,-13 C 7.75,0.5 7.375,0.25 7,0.25 z M 2,1 0,2.5 2,4 6,4 6,1 2,1 z M 8,4 8,7 12,7 14,5.5 12,4 8,4 z"
id="guidepost"
style="fill:#000000;fill-opacity:1;stroke:none" />
</svg>

Before

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -1,99 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
<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="Layer_1"
x="0px"
y="0px"
width="142.18591"
height="104.58382"
viewBox="0 0 142.18593 104.58381"
xml:space="preserve"
sodipodi:docname="parking_velos.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"><metadata
id="metadata21"><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 /></cc:Work></rdf:RDF></metadata><defs
id="defs19"><inkscape:path-effect
effect="simplify"
id="path-effect865"
is_visible="true"
steps="1"
threshold="0.0308998"
smooth_angles="360"
helper_size="0"
simplify_individual_paths="false"
simplify_just_coalesce="false"
simplifyindividualpaths="false"
simplifyJustCoalesce="false" />
</defs><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview17"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="5.6568543"
inkscape:cx="53.28101"
inkscape:cy="40.907667"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" />
<g
id="g889"><path
inkscape:connector-curvature="0"
id="path6"
d="M 25.4149,52.348265 C 9.7645253,52.210346 -3.0169234,68.425398 0.62583776,83.596312 3.3160329,99.189947 21.900281,108.85147 36.219588,102.23108 50.942655,96.556905 56.880991,76.506558 47.586776,63.746703 42.744432,56.50052 34.125723,52.065125 25.4149,52.348265 Z m 1.560547,8.447266 c 14.215211,0.01353 22.170061,19.27854 12.083985,29.314453 C 30.067621,101.14064 10.150841,95.125996 8.7352128,80.979125 6.8432193,70.30665 16.155664,59.98214 26.975447,60.795531 Z"
style="opacity:1;vector-effect:none;fill:#686868;fill-opacity:1;stroke:none;stroke-width:4.36143017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><path
inkscape:connector-curvature="0"
id="path8"
d="M 96.006697,52.586546 C 80.349854,52.440293 67.543952,68.65287 71.194197,83.834593 73.887574,99.426962 92.479692,109.08953 106.79771,102.46741 121.51258,96.782516 127.4452,76.739398 118.15318,63.981078 113.31661,56.744125 104.70946,52.300948 96.006697,52.586546 Z m 1.556641,8.435547 c 14.199882,0.03832 22.156992,19.276038 12.066412,29.31836 -8.98086,10.991357 -28.867923,5.00191 -30.322271,-9.09961 -1.96243,-10.626325 7.487295,-21.091458 18.255859,-20.21875 z"
style="opacity:1;vector-effect:none;fill:#686868;fill-opacity:1;stroke:none;stroke-width:4.36143017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><path
inkscape:connector-curvature="0"
id="path10"
d="M 72.207869,0.02404652 C 63.248151,-0.01629286 58.176551,12.131338 64.567244,18.442015 70.238609,25.327236 82.74649,21.550554 83.623885,12.662718 84.768806,5.9983007 78.962764,-0.4440427 72.207869,0.02404652 Z"
style="opacity:1;vector-effect:none;fill:#686868;fill-opacity:1;stroke:none;stroke-width:4.36143017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><path
inkscape:connector-curvature="0"
id="path12"
d="m 58.600447,13.871703 c -7.651426,0.817672 -11.135089,9.391916 -16.841801,13.523734 -4.469714,4.868696 -13.404065,10.159692 -10.361324,18.150094 3.387352,7.518431 13.179595,8.632211 19.199532,13.33622 6.801444,2.014189 2.213549,10.730802 3.540703,15.966514 -1.2091,5.123909 0.924451,12.582087 7.289062,12.351563 6.192668,0.06451 8.273944,-7.176637 7.095703,-12.210938 -0.677688,-7.939453 1.203419,-16.246064 -0.603515,-24.021484 -2.39983,-5.137361 -8.9328,-6.001094 -13.171875,-9 4.444698,-4.317378 9.280124,-12.142579 12.159607,-2.407931 2.962022,6.78727 11.595738,3.838289 17.190002,4.361056 4.363638,0.567202 12.511709,0.718046 12.484375,-5.621094 C 96.340659,31.801686 87.941264,32.47962 83.522332,32.879569 75.878856,35.324794 73.591,27.978376 70.13035,22.776167 67.838848,18.318251 64.27004,13.328243 58.600447,13.871703 Z"
style="opacity:1;vector-effect:none;fill:#686868;fill-opacity:1;stroke:none;stroke-width:4.36143017;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /><g
id="g879"><rect
style="opacity:1;vector-effect:none;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:6.28336287;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke"
id="rect867"
width="43.551727"
height="80.28817"
x="98.634186"
y="24.196041" /></g><g
id="flowRoot871"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:21.33333397px;line-height:1.25;font-family:Purisa;-inkscape-font-specification:Purisa;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:none"
transform="matrix(3.3033733,0,0,3.4967424,37.966582,-21.463321)"
aria-label="P"><path
id="path875"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:'Liberation Sans';-inkscape-font-specification:'Liberation Sans Bold';fill:#ffffff"
d="m 30.993815,18.54974 q 0,1.416667 -0.645833,2.53125 -0.645833,1.114583 -1.854167,1.729167 -1.197916,0.604166 -2.854167,0.604166 H 21.993815 V 28.58099 H 18.920898 V 13.903906 h 6.59375 q 2.635417,0 4.052084,1.21875 1.427083,1.208334 1.427083,3.427084 z m -3.09375,0.05208 q 0,-2.3125 -2.729167,-2.3125 h -3.177083 v 4.760417 h 3.260417 q 1.270833,0 1.958333,-0.625 0.6875,-0.635417 0.6875,-1.822917 z" /></g></g></svg>

Before

Width:  |  Height:  |  Size: 6.4 KiB

View File

@ -1,254 +0,0 @@
<?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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="500.02963"
height="350.57217"
id="svg13388"
version="1.1"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"
sodipodi:docname="ping-pong.svg">
<defs
id="defs13390">
<linearGradient
id="linearGradient3860">
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="0"
id="stop3862" />
<stop
id="stop3868"
offset="0.42549232"
style="stop-color:#000000;stop-opacity:1;" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop3864" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient14380">
<stop
style="stop-color:#deaa87;stop-opacity:1;"
offset="0"
id="stop14382" />
<stop
style="stop-color:#c87137;stop-opacity:1"
offset="1"
id="stop14384" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient14351">
<stop
style="stop-color:#d89a71;stop-opacity:1;"
offset="0"
id="stop14353" />
<stop
style="stop-color:#e9c6af;stop-opacity:1"
offset="1"
id="stop14355" />
</linearGradient>
<linearGradient
id="linearGradient14339">
<stop
style="stop-color:#d38d5f;stop-opacity:1"
offset="0"
id="stop14341" />
<stop
id="stop14347"
offset="0.5"
style="stop-color:#f4e3d7;stop-opacity:1" />
<stop
style="stop-color:#d38d5f;stop-opacity:1"
offset="1"
id="stop14343" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient14059">
<stop
id="stop14063"
offset="0"
style="stop-color:#ff2a2a;stop-opacity:1" />
<stop
id="stop14061"
offset="1"
style="stop-color:#be0d00;stop-opacity:1;" />
</linearGradient>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath7292">
<path
inkscape:connector-curvature="0"
d="m 6214.53,4715.05 c 10.7,-10.72 24.24,-18.59 39.4,-22.34 6.48,-1.61 13.26,-2.45 20.23,-2.45 13.55,0 26.33,3.2 37.68,8.9 8.14,4.08 15.54,9.45 21.91,15.84 5.37,5.37 10,11.46 13.79,18.12 7.05,12.4 11.09,26.78 11.09,42.1 0,8.77 -1.33,17.22 -3.79,25.19 -4.12,13.39 -11.44,25.37 -21.09,35.02 -6.37,6.39 -13.77,11.76 -21.91,15.85 -11.35,5.7 -24.13,8.9 -37.68,8.9 -6.97,0 -13.75,-0.85 -20.23,-2.46 -15.16,-3.74 -28.7,-11.6 -39.4,-22.33 -9.65,-9.65 -16.95,-21.63 -21.05,-35.01 -2.46,-7.95 -3.79,-16.4 -3.79,-25.16 0,-15.31 4.02,-29.67 11.07,-42.07 3.77,-6.65 8.4,-12.73 13.77,-18.1"
id="path7294" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath7298">
<path
inkscape:connector-curvature="0"
d="m 6214.53,4715.05 c 10.7,-10.72 24.24,-18.59 39.4,-22.34 6.48,-1.61 13.26,-2.45 20.23,-2.45 13.55,0 26.33,3.2 37.68,8.9 8.14,4.08 15.54,9.45 21.91,15.84 5.37,5.37 10,11.46 13.79,18.12 7.05,12.4 11.09,26.78 11.09,42.1 0,8.77 -1.33,17.22 -3.79,25.19 -4.12,13.39 -11.44,25.37 -21.09,35.02 -6.37,6.39 -13.77,11.76 -21.91,15.85 -11.35,5.7 -24.13,8.9 -37.68,8.9 -6.97,0 -13.75,-0.85 -20.23,-2.46 -15.16,-3.74 -28.7,-11.6 -39.4,-22.33 -9.65,-9.65 -16.95,-21.63 -21.05,-35.01 -2.46,-7.95 -3.79,-16.4 -3.79,-25.16 0,-15.31 4.02,-29.67 11.07,-42.07 3.77,-6.65 8.4,-12.73 13.77,-18.1"
id="path7300" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6676">
<path
inkscape:connector-curvature="0"
d="m 6200.02,4962.56 c 0,0 166.86,-108.33 184.36,-119.75 0,0 112.16,-84.57 147.89,-115 l 2.36,-2.01 c 0,0 14.12,-15.21 26.03,3.14 11.23,19.12 22.45,38.24 33.68,57.36 8.06,13.72 16.13,27.46 24.18,41.19 0,0 8.98,8.23 -17.35,23.09 -1.42,0.79 -2.93,1.6 -4.53,2.44 0,0 -164.94,84.15 -190.76,110.83 0,0 -133.5,94.5 -150.29,96.3 -7.74,-13.6 -15.49,-27.2 -23.23,-40.79 -10.78,-18.94 -21.56,-37.87 -32.34,-56.8"
id="path6678" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6682">
<path
inkscape:connector-curvature="0"
d="m 6200.02,4962.56 c 0,0 166.86,-108.33 184.36,-119.75 0,0 112.16,-84.57 147.89,-115 l 2.36,-2.01 c 0,0 14.12,-15.21 26.03,3.14 11.23,19.12 22.45,38.24 33.68,57.36 8.06,13.72 16.13,27.46 24.18,41.19 0,0 8.98,8.23 -17.35,23.09 -1.42,0.79 -2.93,1.6 -4.53,2.44 0,0 -164.94,84.15 -190.76,110.83 0,0 -133.5,94.5 -150.29,96.3 -7.74,-13.6 -15.49,-27.2 -23.23,-40.79 -10.78,-18.94 -21.56,-37.87 -32.34,-56.8"
id="path6684" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6562">
<path
inkscape:connector-curvature="0"
d="m 6035.64,4829.77 c 25.32,43.88 50.65,87.77 75.98,131.67 63.42,109.88 126.84,219.77 190.26,329.65 0,0 39.06,-64.98 22.53,-210.85 0,0 -7.12,-56.3 48.46,-94.13 -8.4,-13.51 -16.82,-27.01 -25.19,-40.51 -12.09,-19.42 -24.16,-38.84 -36.23,-58.24 0,0 -63.38,51.04 -179.16,-31.37 0,0 -77.9,-35.51 -96.65,-26.22"
id="path6564" />
</clipPath>
<clipPath
clipPathUnits="userSpaceOnUse"
id="clipPath6568">
<path
inkscape:connector-curvature="0"
d="m 6035.64,4829.77 c 25.32,43.88 50.65,87.77 75.98,131.67 63.42,109.88 126.84,219.77 190.26,329.65 0,0 39.06,-64.98 22.53,-210.85 0,0 -7.12,-56.3 48.46,-94.13 -8.4,-13.51 -16.82,-27.01 -25.19,-40.51 -12.09,-19.42 -24.16,-38.84 -36.23,-58.24 0,0 -63.38,51.04 -179.16,-31.37 0,0 -77.9,-35.51 -96.65,-26.22"
id="path6570" />
</clipPath>
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient14059"
id="radialGradient14065"
cx="46.00568"
cy="310.12067"
fx="46.00568"
fy="310.12067"
r="345.23618"
gradientTransform="matrix(1,0,0,0.96960782,1793.654,-206.37142)"
gradientUnits="userSpaceOnUse" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient14059"
id="radialGradient14327"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1,0,0,0.96960782,1793.654,-206.37142)"
cx="46.00568"
cy="310.12067"
fx="46.00568"
fy="310.12067"
r="345.23618" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient14339"
id="linearGradient14345"
x1="2427.4524"
y1="452.19705"
x2="2505.4219"
y2="330.04474"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient14351"
id="linearGradient14357"
x1="2345.4033"
y1="315.42029"
x2="2308.2268"
y2="293.36719"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(1,3)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient14380"
id="linearGradient14386"
x1="2335.1101"
y1="122.39021"
x2="2312.1321"
y2="399.892"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.84596866"
inkscape:cx="-177.18746"
inkscape:cy="15.626062"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1878"
inkscape:window-height="1031"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0">
<inkscape:grid
type="xygrid"
id="grid14237"
empspacing="5"
visible="true"
enabled="true"
snapvisiblegridlinesonly="true"
originx="-7.6729684"
originy="-19.89713" />
</sodipodi:namedview>
<metadata
id="metadata13393">
<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="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-7.6729684,-681.89289)">
<path
style="fill:#7d7d7d;fill-opacity:1;stroke:#000000;stroke-width:10.25599957;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 340.875,149.46094 -79.63281,178.90234 c 0,0 35.81712,-37.21314 59.66211,-41.69922 14.98098,4.74134 7.22897,1.90873 19.92382,7.72461 l 131.55274,60.9336 c 0,0 13.89824,-18.30959 18.88086,-28.58399 4.80443,-9.90696 10.36914,-31.36133 10.36914,-31.36133 L 371.56988,239.87317 C 353.48405,232.1996 352.56558,227.0487 351.33008,224.72656 339.76628,202.19092 340.875,149.46094 340.875,149.46094 Z"
transform="translate(0,652.36218)"
id="path14324"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cccccscccc" />
<path
style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:7.75600004;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 133.72402,687.04559 c -57.192498,6.27207 -106.94335,52.322 -118.149318,108.66861 -11.3444431,44.5767 1.974171,93.30364 32.170181,127.61137 28.234622,33.48963 68.112667,54.99622 108.827747,69.56641 35.02262,12.00892 78.60681,13.70722 107.74876,-12.605 12.71838,-11.61229 15.34492,-29.97694 23.45848,-44.628 18.24816,-41.3756 36.5181,-82.74155 54.75986,-124.12 -1.99514,-38.24927 -32.27887,-67.1599 -62.45443,-86.8661 -36.75339,-23.0026 -79.6275,-37.35776 -123.09259,-38.87666 -7.76727,-0.12989 -15.58751,0.23335 -23.26869,1.24937 z"
id="path6604"
inkscape:connector-curvature="0" />
<circle
r="43.960594"
cy="986.75446"
cx="227.13269"
style="fill:#f9f9f9;fill-opacity:1;stroke:#000000;stroke-width:3.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path3023" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 10 KiB

View File

@ -1,20 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns="http://www.w3.org/2000/svg"
version="1.1"
width="14"
height="14"
viewBox="0 0 14 14">
<rect
width="14"
height="14"
x="0"
y="0"
id="canvas"
style="fill:none;stroke:none;visibility:hidden" />
<path
d="m 1,6 1.5,8 5,0 L 9,6 z M 2.18,7 7.81,7 7.44,9 2.55,9 M 4,5 C 4,3 5,2 7,2 L 8,2 8,1 7,1 C 6,1 6,0 7,0 l 3,0 c 1,0 1,1 0,1 l -1,0 0,1 4,0 0,1.5 -6,0 C 5.91526,3.49111 5.5,3.9824765 5.5,5 z"
id="drinking-water" />
</svg>

Before

Width:  |  Height:  |  Size: 603 B

View File

@ -1,3 +0,0 @@
<svg enable-background="new 0 0 580 580" height="580" viewBox="0 0 580 580" width="580" xmlns="http://www.w3.org/2000/svg">
<path d="m520.451 332.731h-229.295l84.422-78.886h144.873c15.101 0 27.343-12.241 27.343-27.342s-12.242-27.342-27.343-27.342h-86.351l37.085-34.654c11.033-10.31 11.62-27.613 1.31-38.646-10.31-11.034-27.612-11.62-38.646-1.31l-79.845 74.61h-285.314c-15.101 0-27.343 12.241-27.343 27.342s12.242 27.342 27.343 27.342h226.792l-84.42 78.886h-142.372c-15.101 0-27.343 12.242-27.343 27.343s12.242 27.343 27.343 27.343h83.849l-38.829 36.283c-11.034 10.31-11.62 27.612-1.31 38.646 5.384 5.762 12.674 8.675 19.984 8.675 6.687 0 13.391-2.438 18.662-7.365l81.587-76.238h287.817c15.101 0 27.343-12.242 27.343-27.343s-12.241-27.344-27.342-27.344z" fill="param(fill)" fill-opacity="param(fill-opacity)" stroke="param(outline)" stroke-opacity="param(outline-opacity)" stroke-width="param(outline-width)"/>
</svg>

Before

Width:  |  Height:  |  Size: 917 B

View File

@ -1,40 +0,0 @@
<?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"
version="1.1"
width="10"
height="10"
viewBox="0 0 10 10"
id="svg2">
<metadata
id="metadata8">
<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="defs6" />
<rect
width="10"
height="10"
x="0"
y="0"
id="canvas"
style="fill:none;stroke:none;visibility:hidden" />
<path
d="M 4,2 3,2 2,3 8,3 7,2 6,2 5,1 z M 2,4 3,9 7,9 8,4 z"
id="waste-basket"
style="fill:#000000;fill-opacity:1;stroke:none" />
</svg>

Before

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -1,203 +0,0 @@
<?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="437"
height="322.96289"
version="1.1"
id="svg33"
sodipodi:docname="ressort.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata39">
<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>Spring</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs37">
<defs
id="defs11">
<linearGradient
id="svg_21"
x1="0"
y1="0"
x2="1"
y2="0">
<stop
id="stop6"
stop-color="#333333"
stop-opacity="0.996094"
offset="0" />
<stop
id="stop8"
stop-color="#999999"
stop-opacity="0.996094"
offset="1" />
</linearGradient>
</defs>
</defs>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview35"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="1.3906433"
inkscape:cx="123.65745"
inkscape:cy="224.79729"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg33" />
<!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->
<title
id="title2">Spring</title>
<g
id="g902"
transform="translate(-97.5,-81.5)">
<g
transform="matrix(0.53002014,0,0,1,146.39356,0)"
style="fill:#000000;fill-opacity:1"
id="svg_17">
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="305.00085"
y="231.0491"
width="22"
height="251.00128"
transform="rotate(-75.7685,316,356.551)"
id="svg_18" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="304.9989"
y="231.96317"
width="22"
height="251.00128"
transform="rotate(75.7685,316,357.465)"
id="svg_19" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="169.49997"
y="372.96289"
width="301.00003"
height="28.999998"
id="svg_20" />
</g>
<g
transform="matrix(0.53002014,0,0,1,146.39356,0)"
style="fill:#000000;fill-opacity:1"
id="svg_13">
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="305.00085"
y="164.0491"
width="22"
height="251.00128"
transform="rotate(-75.7685,316,289.551)"
id="svg_14" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="304.9989"
y="164.96317"
width="22"
height="251.00128"
transform="rotate(75.7685,316,290.465)"
id="svg_15" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="169.49997"
y="305.96289"
width="301.00003"
height="28.999998"
id="svg_16" />
</g>
<g
transform="matrix(0.53002014,0,0,1,145.86354,0)"
style="fill:#000000;fill-opacity:1"
id="svg_9">
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="306.00085"
y="97.051064"
width="22"
height="251.00128"
transform="rotate(-75.7685,317,222.551)"
id="svg_10" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="305.9989"
y="97.965126"
width="22"
height="251.00128"
transform="rotate(75.7685,317,223.465)"
id="svg_11" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="170.49997"
y="238.96484"
width="301.00003"
height="28.999998"
id="svg_12" />
</g>
<g
transform="matrix(0.53002014,0,0,1,146.39356,0)"
style="fill:#000000;fill-opacity:1"
id="svg_8">
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="305.00085"
y="33.08622"
width="22"
height="251.00128"
id="svg_5"
transform="rotate(-75.7685,316,158.586)" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="304.9989"
y="34.000278"
width="22"
height="251.00128"
transform="rotate(75.7685,316,159.5)"
id="svg_6" />
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="169.49997"
y="175"
width="301.00003"
height="28.999998"
id="svg_7" />
</g>
<rect
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:5"
x="100"
y="84"
width="432"
height="55"
id="svg_1"
rx="21"
ry="21" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.7 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 653 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 495 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 66 KiB

View File

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 13.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 14948) -->
<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.2" baseProfile="tiny" id="Layer_1" x="0px" y="0px" width="73.401px" height="102.427px" viewBox="0 0 73.401 102.427" xml:space="preserve" sodipodi:version="0.32" inkscape:version="0.46" sodipodi:docname="memorial.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape"><metadata id="metadata18"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/><cc:license rdf:resource="http://creativecommons.org/licenses/publicdomain/"/></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/publicdomain/"><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><defs id="defs16"><inkscape:perspective sodipodi:type="inkscape:persp3d" inkscape:vp_x="0 : 51.213501 : 1" inkscape:vp_y="0 : 1000 : 0" inkscape:vp_z="73.401001 : 51.213501 : 1" inkscape:persp3d-origin="36.7005 : 34.142334 : 1" id="perspective20"/></defs><sodipodi:namedview inkscape:window-height="713" inkscape:window-width="760" inkscape:pageshadow="2" inkscape:pageopacity="0.0" guidetolerance="10.0" gridtolerance="10.0" objecttolerance="10.0" borderopacity="1.0" bordercolor="#666666" pagecolor="#ffffff" id="base" showgrid="false" inkscape:zoom="4.822947" inkscape:cx="63.465426" inkscape:cy="51.213501" inkscape:window-x="0" inkscape:window-y="0" inkscape:current-layer="Layer_1"/>
<g id="g3">
<g id="g5">
<path d="M14.001,100.758l-12.4-17.274c-0.42-0.587-0.676-1.284-0.736-2l0,0L0.014,71.282c-0.132-1.611,0.718-3.151,2.158-3.89l0,0 l5.25-2.699c0.257-0.133,0.592-0.259,0.873-0.327l0,0l3.519-0.867L9.505,9.521c-0.089-2.073,1.413-3.865,3.474-4.136l0,0 l40.549-5.35c0.691-0.093,1.38-0.004,2.027,0.259l0,0l4.8,1.951c1.565,0.635,2.567,2.199,2.49,3.887l0,0L60.39,59.958l11.52,9.276 c1.032,0.831,1.583,2.111,1.479,3.432l0,0l-0.801,10.125c-0.13,1.636-1.233,3.016-2.801,3.504l0,0l-51.349,15.95 c-0.395,0.123-0.797,0.182-1.194,0.182l0,0C15.981,102.427,14.768,101.826,14.001,100.758L14.001,100.758z" id="path7"/>
</g>
</g>
<polygon fill-rule="evenodd" fill="#FFFFFF" points="56.102,65.151 19.452,74.901 17.251,11.651 58.852,5.952 " id="polygon9"/>
<path fill="#FFFFFF" d="M16.924,89.49l0.327,8.937l51.35-15.951l0.632-7.995l-51.828,14.94 C17.245,89.468,17.084,89.484,16.924,89.49z" id="path11"/>
<polygon fill="#FFFFFF" points="63.854,67.868 19.001,80.201 17.521,85.226 67.502,70.816 " id="polygon13"/>
</svg>

Before

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -1,30 +0,0 @@
<?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="496.16812" height="417.34662" id="svg2" version="1.1" inkscape:version="0.48.3.1 r9886" sodipodi:docname="treeStump.svg" inkscape:export-filename="/home/katie/Desktop/treeStump.png" inkscape:export-xdpi="90" inkscape:export-ydpi="90">
<defs id="defs4">
<marker inkscape:stockid="TriangleInL" orient="auto" refY="0" refX="0" id="TriangleInL" style="overflow:visible">
<path id="path4012" d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt" transform="scale(-0.8,-0.8)" inkscape:connector-curvature="0"/>
</marker>
<marker inkscape:stockid="TriangleOutL" orient="auto" refY="0" refX="0" id="TriangleOutL" style="overflow:visible">
<path id="path4021" d="m 5.77,0 -8.65,5 0,-10 8.65,5 z" style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt" transform="scale(0.8,0.8)" inkscape:connector-curvature="0"/>
</marker>
<marker inkscape:stockid="Arrow1Lstart" orient="auto" refY="0" refX="0" id="Arrow1Lstart" style="overflow:visible">
<path id="path3879" d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt" transform="matrix(0.8,0,0,0.8,10,0)" inkscape:connector-curvature="0"/>
</marker>
</defs>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="1" inkscape:cx="127.44145" inkscape:cy="177.82361" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1920" inkscape:window-height="1124" inkscape:window-x="0" inkscape:window-y="24" inkscape:window-maximized="1"/>
<metadata id="metadata7">
<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/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-71.558547,-292.83918)">
<path style="fill:#6e3e20;fill-opacity:1;fill-rule:evenodd;stroke:#3c291b;stroke-width:6.34996605;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" d="m 100.28125,75.53125 0,180.65625 c -0.97667,1.04855 -1.5,2.13269 -1.5,3.21875 0,1.3546 0.80507,2.67417 2.3125,3.96875 0.0214,0.77073 0.10839,1.54782 0.1875,2.3125 -21.819942,3.42024 -80.465878,-8.33187 -82.21875,4.625 -2.002312,14.80069 82.10051,18.13578 89.0625,31.125 6.96199,12.98922 -42.899432,80.78771 -30.625,88.34375 12.274433,7.55604 49.06962,-79.05624 63.71875,-81 0.0993,-0.0132 0.21019,0.006 0.3125,0 2.57854,1.27487 5.2802,2.49136 8.0625,3.6875 19.38898,14.80793 55.02319,68.58089 63.8125,59.53125 5.73929,-5.90928 -10.25092,-27.06088 -25.03125,-47.0625 24.82736,5.85513 53.45868,9.21875 84,9.21875 23.66157,0 46.21714,-1.99907 66.71875,-5.625 -16.51922,20.93382 -34.57783,43.16141 -29.5625,50.46875 7.71832,11.24559 48.8075,-46.67845 68.90625,-60.21875 2.61949,-0.86466 5.19495,-1.76157 7.6875,-2.6875 0.0195,0.005 0.0432,-0.005 0.0625,0 14.04284,3.78405 40.95168,104.83846 53.65625,97.71875 12.70457,-7.11971 -28.84496,-88.52305 -20.75,-102.3125 8.09496,-13.78945 90.18481,-8.29181 89.75,-25.09375 -0.32184,-12.4365 -41.95931,-9.57783 -67.4375,-12.15625 1.41625,-3.59613 2.19644,-7.27546 2.28125,-11.03125 1.37803,-1.23957 2.09375,-2.5185 2.09375,-3.8125 l -0.28125,-1.375 c -0.24771,-0.62778 -0.64331,-1.23007 -1.21875,-1.84375 l 0,-180.65625 -344,0 z" transform="translate(55.706213,292.83918)" id="path3786" inkscape:connector-curvature="0"/>
<path sodipodi:type="arc" style="fill:#e0bf76;fill-opacity:1;fill-rule:evenodd;stroke:#3c291b;stroke-width:5.82696295;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path3755" sodipodi:cx="325.5" sodipodi:cy="335.36218" sodipodi:rx="173.5" sodipodi:ry="49" d="m 499,335.36218 c 0,27.06196 -77.6786,49 -173.5,49 -95.8214,0 -173.5,-21.93804 -173.5,-49 0,-27.06195 77.6786,-49 173.5,-49 92.08411,0 168.12771,20.31683 173.23313,46.28329" sodipodi:start="0" sodipodi:end="6.2277138" sodipodi:open="true" transform="matrix(1,0,0,1.4621797,3,-122.35079)"/>
<path sodipodi:type="spiral" style="fill:none;stroke:#5c501e;stroke-width:13.71316433;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.50228307;stroke-dasharray:none" id="path3851" sodipodi:cx="-400" sodipodi:cy="266.36218" sodipodi:expansion="1.79" sodipodi:revolution="4.4633689" sodipodi:radius="120.24142" sodipodi:argument="-27.282301" sodipodi:t0="0.40083104" d="m -422.11885,274.02163 c -6.9861,-13.05746 -0.28047,-29.11759 12.43878,-35.61344 16.35604,-8.3532 36.21062,0.0842 44.06362,16.04746 9.82643,19.97471 -0.5202,43.98375 -20.04967,53.29973 -23.90627,11.40383 -52.42143,-1.025 -63.30433,-24.43542 -13.08357,-28.14436 1.59667,-61.50999 29.19608,-74.06195 32.68325,-14.86406 71.23719,2.23347 85.55881,34.32395 16.74376,37.5178 -2.93392,81.59205 -39.81223,97.78244 -42.64331,18.72134 -92.56458,-3.69665 -110.7215,-45.65473 -20.79551,-48.05548 4.52047,-104.14564 51.84585,-124.36563 53.75035,-22.96508 116.32683,5.40432 138.70523,58.38048 16.82449,39.82846 8.85501,86.67754 -18.80178,119.63764" transform="matrix(1.0721376,0,0,-0.53049729,745.96864,506.22566)"/>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 5.8 KiB

View File

@ -1,215 +0,0 @@
<?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="127.85367"
height="64.79351"
version="1.1"
id="svg24"
sodipodi:docname="structure.svg"
inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)">
<metadata
id="metadata30">
<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>playhouse1</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs28" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1878"
inkscape:window-height="1031"
id="namedview26"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="5.1346831"
inkscape:cx="51.84005"
inkscape:cy="33.888395"
inkscape:window-x="42"
inkscape:window-y="25"
inkscape:window-maximized="1"
inkscape:current-layer="svg24" />
<title
id="title2">playhouse1</title>
<g
id="svg_2-5"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_3-3"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_4-5"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_5-6"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_6-2"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_7-9"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_8-1"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_9-2"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_10-7"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_11-0"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_12-9"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_13-3"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_14-6"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_15-0"
transform="translate(50.551498,-0.33717169)" />
<g
id="svg_16-6"
transform="translate(50.551498,-0.33717169)" />
<g
id="g1078"
transform="translate(-0.332261,0.04829947)">
<g
id="g22">
<title
id="title4">Layer 1</title>
<path
d="m 63.334192,22.885041 c 0.595791,0 1.132692,-0.381221 1.360653,-0.966047 0.227968,-0.584826 0.101967,-1.258227 -0.319328,-1.705706 L 46.23258,0.933345 c -0.575219,-0.611281 -1.507652,-0.611281 -2.082878,0 L 26.00741,20.213288 c -0.421295,0.447478 -0.547296,1.12088 -0.319328,1.705706 0.227968,0.584826 0.764869,0.966047 1.360441,0.966047 h 3.728216 v 11.554343 h -3.240893 c -1.375163,0 -2.683427,0.629461 -3.59053,1.727559 L 6.869687,56.83257 H 2.713463 c -1.314977,0 -2.381202,1.133071 -2.381202,2.530718 v 2.851198 c 0,1.397418 1.066224,2.530489 2.381202,2.530489 h 10.684769 c 0.685202,0 1.337277,-0.313576 1.789525,-0.860906 L 30.776951,45.017097 V 61.30826 c 0,1.898271 1.447904,3.436946 3.233968,3.436946 1.786064,0 3.233968,-1.538675 3.233968,-3.436946 v -2.026643 c 0,-1.397418 1.066224,-2.530489 2.381421,-2.530489 H 50.75662 c 1.31519,0 2.381421,1.133071 2.381421,2.530489 v 2.026878 c 0,1.898042 1.447685,3.436717 3.233748,3.436717 1.786063,0 3.233968,-1.538675 3.233968,-3.436717 V 22.885271 h 3.728436 v -2.29e-4 z M 53.138041,39.614707 c 0,1.397418 -1.066224,2.530489 -2.381421,2.530489 H 39.626308 c -1.31519,0 -2.381421,-1.133071 -2.381421,-2.530489 v -8.516561 c 0,-1.397418 1.066224,-2.530489 2.381421,-2.530489 H 50.75662 c 1.31519,0 2.381421,1.133071 2.381421,2.530489 z"
id="svg_1"
inkscape:connector-curvature="0"
style="fill:#000000" />
<g
id="svg_2" />
<g
id="svg_3" />
<g
id="svg_4" />
<g
id="svg_5" />
<g
id="svg_6" />
<g
id="svg_7" />
<g
id="svg_8" />
<g
id="svg_9" />
<g
id="svg_10" />
<g
id="svg_11" />
<g
id="svg_12" />
<g
id="svg_13" />
<g
id="svg_14" />
<g
id="svg_15" />
<g
id="svg_16" />
</g>
<g
id="g22-2"
transform="translate(51.847742,-0.52318372)">
<title
id="title4-6">Layer 1</title>
<path
sodipodi:nodetypes="ccccccsccsssssssssccccsssssssss"
d="m 63.334192,22.885041 c 0.595791,0 1.132692,-0.381221 1.360653,-0.966047 0.227968,-0.584826 0.101967,-1.258227 -0.319328,-1.705706 L 46.23258,0.933345 c -0.575219,-0.611281 -1.507652,-0.611281 -2.082878,0 L 26.00741,20.213288 c -0.421295,0.447478 -0.547296,1.12088 -0.319328,1.705706 0.227968,0.584826 0.764869,0.966047 1.360441,0.966047 -0.88219,15.475147 3.245598,33.298071 3.728428,38.423219 0,1.898271 1.447904,3.436946 3.233968,3.436946 1.786064,0 3.233968,-1.538675 3.233968,-3.436946 v -2.026643 c 0,-1.397418 1.066224,-2.530489 2.381421,-2.530489 H 50.75662 c 1.31519,0 2.381421,1.133071 2.381421,2.530489 v 2.026878 c 0,1.898042 1.447685,3.436717 3.233748,3.436717 1.786063,0 3.233968,-1.538675 3.233968,-3.436717 V 22.885271 h 3.728436 v -2.29e-4 z M 53.138041,39.614707 c 0,1.397418 -1.066224,2.530489 -2.381421,2.530489 H 39.626308 c -1.31519,0 -2.381421,-1.133071 -2.381421,-2.530489 v -8.516561 c 0,-1.397418 1.066224,-2.530489 2.381421,-2.530489 H 50.75662 c 1.31519,0 2.381421,1.133071 2.381421,2.530489 z"
id="svg_1-1"
inkscape:connector-curvature="0"
style="fill:#000000" />
<g
id="svg_2-8" />
<g
id="svg_3-7" />
<g
id="svg_4-9" />
<g
id="svg_5-2" />
<g
id="svg_6-0" />
<g
id="svg_7-2" />
<g
id="svg_8-3" />
<g
id="svg_9-7" />
<g
id="svg_10-5" />
<g
id="svg_11-9" />
<g
id="svg_12-2" />
<g
id="svg_13-2" />
<g
id="svg_14-8" />
<g
id="svg_15-9" />
<g
id="svg_16-7" />
</g>
<rect
y="25.614407"
x="57.701271"
height="19.830507"
width="29.608051"
id="rect1004"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:4.85938358;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke" />
<rect
y="41.912704"
x="108.02262"
height="22.309322"
width="9.0947161"
id="rect1006"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:5.46906614;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke" />
<rect
y="49.073723"
x="116.61813"
height="15.148305"
width="5.7838984"
id="rect1006-3"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:3.59391475;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke" />
<rect
y="55.821606"
x="122.40203"
height="8.400424"
width="5.7838984"
id="rect1006-3-6"
style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:2.67630935;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:markers fill stroke" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 8.1 KiB

View File

@ -1,3 +0,0 @@
<svg enable-background="new 0 0 580 580" height="580" viewBox="0 0 580 580" width="580" xmlns="http://www.w3.org/2000/svg">
<path d="m531.259 284.476h-116.903l-47.578-116.902h79.291v-43.474h-314.279v43.473h78.718l-47.579 116.902h-116.31v43.455h98.688l-54.624 136.3h53.458l55.215-136.3h178.571l55.215 136.3h54.051l-55.216-136.3h99.28v-43.454zm-319.568 0l47.579-116.902h48.762l47.578 116.902z" fill="param(fill)" fill-opacity="param(fill-opacity)" stroke="param(outline)" stroke-opacity="param(outline-opacity)" stroke-width="param(outline-width)"/>
</svg>

Before

Width:  |  Height:  |  Size: 555 B

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