A lot of Canvas UI stuff

This commit is contained in:
2020-07-04 11:39:53 +02:00
parent 4a38dbfbdc
commit 4d7b99990e
26 changed files with 3056 additions and 45 deletions

View File

@@ -30,6 +30,14 @@ application {
mainClassName = "de.siphalor.was.Start"
}
sourceSets {
main {
resources {
exclude '**/*.svg'
}
}
}
jar {
manifest {
attributes(

View File

@@ -6,20 +6,22 @@ import de.siphalor.was.content.pack.FileContentPack;
import de.siphalor.was.content.pack.JarContentPack;
import de.siphalor.was.content.product.ProductManager;
import de.siphalor.was.content.quest.QuestManager;
import de.siphalor.was.state.MainMenuState;
import de.siphalor.was.state.GameState;
import de.siphalor.was.state.NoopState;
import de.siphalor.was.state.State;
import de.siphalor.was.visual.layout.FixedAspectLayout;
import de.siphalor.was.visual.layout.FulfillingLayout;
import java.awt.*;
import java.awt.event.ComponentAdapter;
import java.awt.event.ComponentEvent;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.event.*;
import java.awt.image.BufferStrategy;
import java.io.File;
import java.nio.file.Path;
public class WhatAStorage {
public static final String TITLE = "What a Storage";
private static final WhatAStorage INSTANCE = new WhatAStorage();
private static final double ASPECT_RATIO = 16.0 / 9.0;
public static WhatAStorage getInstance() {
return INSTANCE;
@@ -31,11 +33,13 @@ public class WhatAStorage {
private final QuestManager questManager;
private Frame frame;
private State state;
private long lastTick;
private long minTickTime = 1000 / 60;
private Canvas canvas;
private boolean fullScreen = false;
private BufferStrategy bufferStrategy;
private State state = new NoopState();
private boolean scheduleStop;
private long minTickTime = 1000 / 60;
private WhatAStorage() {
contentManager = new ContentManager();
@@ -79,51 +83,117 @@ public class WhatAStorage {
public void start() {
frame = new Frame(TITLE);
frame.setVisible(true);
frame.addWindowListener(new WindowAdapter() {
@Override
public void windowClosing(WindowEvent e) {
super.windowClosing(e);
frame.dispose();
scheduleStop = true;
}
});
frame.addComponentListener(new ComponentAdapter() {
@Override
public void componentResized(ComponentEvent e) {
super.componentResized(e);
canvas.setSize(frame.getSize());
state.onResize(frame.getWidth(), frame.getHeight());
state.onResize(canvas.getWidth(), canvas.getHeight());
}
});
canvas = new Canvas();
canvas.setSize(frame.getSize());
frame.add(canvas);
frame.addKeyListener(new KeyListener() {
@Override
public void keyTyped(KeyEvent e) {
changeState(new MainMenuState(canvas.getWidth(), canvas.getHeight()));
}
@Override
public void keyPressed(KeyEvent e) {
if (e.getExtendedKeyCode() == KeyEvent.VK_F11) {
GraphicsDevice device = GraphicsEnvironment.getLocalGraphicsEnvironment().getScreenDevices()[0];
frame.dispose();
if (fullScreen) {
System.out.println("End fullscreen");
frame.setUndecorated(false);
frame.setVisible(true);
device.setFullScreenWindow(null);
fullScreen = false;
} else {
System.out.println("Start fullscreen");
frame.setUndecorated(true);
frame.setVisible(true);
device.setFullScreenWindow(frame);
fullScreen = true;
}
}
}
@Override
public void keyReleased(KeyEvent e) {
}
});
Panel panel = new Panel();
panel.setBackground(Color.BLACK);
frame.add(panel);
frame.setLayout(new FulfillingLayout(panel));
canvas = new Canvas();
panel.add(canvas);
panel.setLayout(new FixedAspectLayout(ASPECT_RATIO, canvas));
frame.setVisible(true);
frame.pack();
frame.setLocationRelativeTo(null);
canvas.createBufferStrategy(2);
bufferStrategy = canvas.getBufferStrategy();
changeState(new GameState(frame.getWidth(), frame.getHeight()));
}
public void run() {
long time, timeDelta = minTickTime;
lastTick = System.currentTimeMillis();
long time, timeDelta, tickBegin = System.nanoTime();
while (frame.isVisible()) {
time = System.currentTimeMillis();
timeDelta = time - lastTick - minTickTime;
while (!scheduleStop) {
time = System.nanoTime();
timeDelta = time - tickBegin;
tickBegin = System.nanoTime();
if (timeDelta >= 0) {
state.tick();
state.render(canvas.getGraphics());
lastTick = time;
state.tick((int) (timeDelta / 1_000_000L));
do {
do {
Graphics graphics = bufferStrategy.getDrawGraphics();
state.render(graphics);
graphics.dispose();
} while(bufferStrategy.contentsRestored());
bufferStrategy.show();
} while(bufferStrategy.contentsLost());
time = System.nanoTime();
timeDelta = time - tickBegin;
if (timeDelta < minTickTime) {
try {
Thread.sleep((minTickTime - timeDelta) / 1_000_000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
frame.setVisible(false);
frame.dispose();
}
public void changeState(State newState) {
if (state != null) {
state.leave();
}
state = newState;
state.enter();
state.onResize(canvas.getWidth(), canvas.getHeight());
state.onResize(frame.getWidth(), frame.getHeight());
}
}

View File

@@ -13,11 +13,11 @@ import java.util.Map;
public class AssetsManager {
private static final Map<String, Image> imageCache = new HashMap<>();
public static final Image MISSINGNO = getImage("assets/missingno.png");
public static final Image MISSINGNO = getImage("textures/missingno.png");
@Nullable
public static InputStream getResource(@NotNull String path) {
return Thread.currentThread().getContextClassLoader().getResourceAsStream(path);
return Thread.currentThread().getContextClassLoader().getResourceAsStream("assets/" + path);
}
public static Image getImage(@NotNull String path) {

View File

@@ -1,35 +1,54 @@
package de.siphalor.was.state;
import de.siphalor.was.assets.AssetsManager;
import de.siphalor.was.util.Util;
import de.siphalor.was.visual.render.AnimatedTextureObject;
import de.siphalor.was.visual.render.Renderable;
import de.siphalor.was.visual.render.TextureObject;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.util.Collection;
import java.util.LinkedList;
public class GameState extends State {
private BufferedImage main;
private static final Image BG = AssetsManager.getImage("textures/bg.png");
private static final Image BIN_OPEN = AssetsManager.getImage("textures/bin_open.png");
private static final Image BIN_CLOSED = AssetsManager.getImage("textures/bin_closed.png");
Collection<Renderable> renderables = new LinkedList<>();
private boolean binOpen = false;
public GameState(int width, int height) {
super(width, height);
renderables.add(new TextureObject(600, 700, 400, 300) {
@Override
public Image getTexture() {
return binOpen ? BIN_OPEN : BIN_CLOSED;
}
});
renderables.add(new AnimatedTextureObject(0, 500, 550, 400, 1000,
AssetsManager.getImage("textures/conveyor_in_0.png"),
AssetsManager.getImage("textures/conveyor_in_1.png"),
AssetsManager.getImage("textures/conveyor_in_2.png")
));
}
@Override
public void tick() {
public void tick(int delta) {
renderables.forEach(renderable -> renderable.tick(delta));
}
@Override
public void render(Graphics graphics) {
graphics.drawImage(main, 0, 0, getWidth(), getHeight(), (img, infoflags, x, y, width, height) -> false);
graphics.drawImage(BG, 0, 0, getWidth(), getHeight(), Util.dummyImageObserver());
renderables.forEach(renderable -> renderable.render(graphics, getWidth(), getHeight()));
}
@Override
public void onResize(int width, int height) {
super.onResize(width, height);
main = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
redrawBg(main.getGraphics());
}
public void redrawBg(Graphics graphics) {
graphics.drawImage(AssetsManager.getImage("assets/menu/bg.png"), 0, 0, getWidth(), getHeight(), (img, infoflags, x, y, width, height) -> false);
}
}

View File

@@ -1,6 +1,7 @@
package de.siphalor.was.state;
import de.siphalor.was.assets.AssetsManager;
import de.siphalor.was.util.Util;
import java.awt.*;
@@ -12,15 +13,14 @@ public class MainMenuState extends State {
}
@Override
public void tick() {
public void tick(int delta) {
}
@Override
public void render(Graphics graphics) {
if (bgDirty) {
graphics.drawImage(AssetsManager.getImage("assets/bg.png"), 0, 0, getWidth() - 1, getHeight() - 1, (img, infoflags, x, y, width, height) -> false);
}
Image image = AssetsManager.getImage("assets/textures/bg.png");
graphics.drawImage(image, 0, 0, getWidth(), getHeight(), Util.dummyImageObserver());
}
@Override

View File

@@ -0,0 +1,19 @@
package de.siphalor.was.state;
import java.awt.*;
public class NoopState extends State {
public NoopState() {
super(0,0);
}
@Override
public void tick(int delta) {
}
@Override
public void render(Graphics graphics) {
}
}

View File

@@ -27,7 +27,7 @@ public abstract class State {
}
public abstract void tick();
public abstract void tick(int delta);
public abstract void render(Graphics graphics);
public void onResize(int width, int height) {

View File

@@ -1,5 +1,6 @@
package de.siphalor.was.util;
import java.awt.image.ImageObserver;
import java.util.function.IntPredicate;
import java.util.function.Predicate;
@@ -34,4 +35,8 @@ public class Util {
}
return packId + "." + path;
}
public static ImageObserver dummyImageObserver() {
return (img, infoflags, x, y, width, height) -> false;
}
}

View File

@@ -0,0 +1,61 @@
package de.siphalor.was.visual.layout;
import org.jetbrains.annotations.Nullable;
import java.awt.*;
public class FixedAspectLayout implements LayoutManager {
/**
* Width through height
*/
private final double aspectRatio;
@Nullable
private Component component;
public FixedAspectLayout(double aspectRatio) {
this(aspectRatio, null);
}
public FixedAspectLayout(double aspectRatio, @Nullable Component component) {
this.aspectRatio = aspectRatio;
this.component = component;
}
@Override
public void addLayoutComponent(String name, Component comp) {
component = comp;
}
@Override
public void removeLayoutComponent(Component comp) {
if (component == comp)
component = null;
}
@Override
public Dimension preferredLayoutSize(Container parent) {
return parent.getSize();
}
@Override
public Dimension minimumLayoutSize(Container parent) {
return parent.getSize();
}
@Override
public void layoutContainer(Container parent) {
if (component != null) {
Insets insets = parent.getInsets();
int width = parent.getWidth() - (insets.left + insets.right);
int height = parent.getHeight() - (insets.top + insets.bottom);
int calc = (int) (height * aspectRatio);
if (calc <= width) {
component.setBounds(insets.left + (width - calc) / 2, insets.top, calc, height);
} else {
calc = (int) (width / aspectRatio);
component.setBounds(insets.left, insets.top + (height - calc) / 2, width, calc);
}
}
}
}

View File

@@ -0,0 +1,49 @@
package de.siphalor.was.visual.layout;
import java.awt.*;
public class FulfillingLayout implements LayoutManager {
private Component component;
public FulfillingLayout() {
this(null);
}
public FulfillingLayout(Component component) {
this.component = component;
}
@Override
public void addLayoutComponent(String name, Component comp) {
component = comp;
}
@Override
public void removeLayoutComponent(Component comp) {
component = null;
}
@Override
public Dimension preferredLayoutSize(Container parent) {
Insets insets = parent.getInsets();
return new Dimension(parent.getWidth() - (insets.left + insets.right), parent.getHeight() - (insets.top + insets.bottom));
}
@Override
public Dimension minimumLayoutSize(Container parent) {
Insets insets = parent.getInsets();
return new Dimension(parent.getWidth() - (insets.left + insets.right), parent.getHeight() - (insets.top + insets.bottom));
}
@Override
public void layoutContainer(Container parent) {
if (component != null) {
Insets insets = parent.getInsets();
component.setBounds(insets.left, insets.top,
parent.getWidth() - (insets.left + insets.right),
parent.getHeight() - (insets.top + insets.bottom)
);
}
}
}

View File

@@ -0,0 +1,31 @@
package de.siphalor.was.visual.render;
import java.awt.*;
public class AnimatedTextureObject extends TextureObject {
private final int frameTime;
private final Image[] frames;
private int time = 0;
public AnimatedTextureObject(int x, int y, int width, int height, int frameTime, Image... frames) {
super(x, y, width, height);
this.frameTime = frameTime;
this.frames = frames;
}
@Override
public void tick(int delta) {
super.tick(delta);
time += delta;
if (time >= frames.length * frameTime) {
time = 0;
}
}
@Override
public Image getTexture() {
return frames[time / frameTime];
}
}

View File

@@ -0,0 +1,8 @@
package de.siphalor.was.visual.render;
import java.awt.*;
public interface Renderable {
void tick(int delta);
void render(Graphics graphics, int width, int height);
}

View File

@@ -0,0 +1,41 @@
package de.siphalor.was.visual.render;
import de.siphalor.was.util.Util;
import java.awt.*;
public abstract class TextureObject implements Renderable, Cloneable {
private int x;
private int y;
private int width;
private int height;
protected TextureObject(int x, int y, int width, int height) {
this.x = x;
this.y = y;
this.width = width;
this.height = height;
}
public void mirrorX() {
x += width;
width = -width;
}
public void mirrorY() {
y += height;
height = -height;
}
public abstract Image getTexture();
@Override
public void tick(int delta) {
}
@Override
public void render(Graphics graphics, int width, int height) {
graphics.drawImage(getTexture(), x * width / 1600, y * height / 900, this.width * width / 1600, this.height * height / 900, Util.dummyImageObserver());
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 214 KiB

View File

@@ -0,0 +1,348 @@
<?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"
inkscape:export-ydpi="288"
inkscape:export-xdpi="288"
inkscape:export-filename="D:\coding\java\what-a-storage\src\main\resources\assets\textures\bg.png"
sodipodi:docname="bg.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg8"
version="1.1"
viewBox="0 0 423.33332 238.12501"
height="900"
width="1600">
<defs
id="defs2">
<linearGradient
id="linearGradient4295"
inkscape:collect="always">
<stop
id="stop4291"
offset="0"
style="stop-color:#6c5d53;stop-opacity:1" />
<stop
id="stop4293"
offset="1"
style="stop-color:#ac9d93;stop-opacity:1" />
</linearGradient>
<linearGradient
id="linearGradient3525"
inkscape:collect="always">
<stop
id="stop3521"
offset="0"
style="stop-color:#55ddff;stop-opacity:1" />
<stop
id="stop3523"
offset="1"
style="stop-color:#aaeeff;stop-opacity:1" />
</linearGradient>
<linearGradient
inkscape:collect="always"
id="linearGradient3461">
<stop
style="stop-color:#808080;stop-opacity:1"
offset="0"
id="stop3457" />
<stop
style="stop-color:#4d4d4d;stop-opacity:1"
offset="1"
id="stop3459" />
</linearGradient>
<linearGradient
id="linearGradient3420-6"
inkscape:collect="always">
<stop
id="stop3416"
offset="0"
style="stop-color:#b3b3b3;stop-opacity:1;" />
<stop
id="stop3418"
offset="1"
style="stop-color:#808080;stop-opacity:1" />
</linearGradient>
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="7"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1"
lpeversion="1"
is_visible="true"
id="path-effect3414"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="7"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1"
lpeversion="1"
is_visible="true"
id="path-effect3412"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="7"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1"
lpeversion="1"
is_visible="true"
id="path-effect3410"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="7"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1"
lpeversion="1"
is_visible="true"
id="path-effect3408"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="7"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1"
lpeversion="1"
is_visible="true"
id="path-effect3406"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect3338"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1"
unit="px"
method="auto"
mode="F"
radius="15"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="15"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1"
lpeversion="1"
is_visible="true"
id="path-effect3319"
effect="fillet_chamfer" />
<linearGradient
y2="251.16518"
x2="211.66649"
y1="200.55714"
x1="211.66283"
gradientUnits="userSpaceOnUse"
id="linearGradient3424"
xlink:href="#linearGradient3420-6"
inkscape:collect="always" />
<linearGradient
gradientUnits="userSpaceOnUse"
y2="248.70833"
x2="167.71385"
y1="214.3125"
x1="167.71385"
id="linearGradient3440"
xlink:href="#linearGradient3461"
inkscape:collect="always" />
<linearGradient
y2="248.70833"
x2="189.59355"
y1="214.3125"
x1="189.59355"
gradientUnits="userSpaceOnUse"
id="linearGradient3463"
xlink:href="#linearGradient3461"
inkscape:collect="always" />
<linearGradient
y2="248.70833"
x2="211.79893"
y1="214.3125"
x1="211.79893"
gradientUnits="userSpaceOnUse"
id="linearGradient3465"
xlink:href="#linearGradient3461"
inkscape:collect="always" />
<linearGradient
y2="248.70833"
x2="255.88295"
y1="214.3125"
x1="255.88295"
gradientUnits="userSpaceOnUse"
id="linearGradient3469"
xlink:href="#linearGradient3461"
inkscape:collect="always" />
<linearGradient
gradientTransform="scale(1,0.72380953)"
gradientUnits="userSpaceOnUse"
y2="79.375"
x2="211.66667"
y1="0"
x1="211.66666"
id="linearGradient3527"
xlink:href="#linearGradient3525"
inkscape:collect="always" />
<radialGradient
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(1.5000001,1.25e-8,0,0.49999999,-400.00007,150.00001)"
r="800"
fy="1500"
fx="800"
cy="1500"
cx="800"
id="radialGradient4299"
xlink:href="#linearGradient4295"
inkscape:collect="always" />
</defs>
<sodipodi:namedview
showguides="true"
inkscape:bbox-paths="true"
inkscape:snap-bbox-edge-midpoints="true"
inkscape:snap-bbox="true"
inkscape:snap-grids="true"
inkscape:snap-others="false"
inkscape:window-maximized="1"
inkscape:window-y="-7"
inkscape:window-x="-7"
inkscape:window-height="1010"
inkscape:window-width="1920"
units="px"
showgrid="true"
inkscape:document-rotation="0"
inkscape:current-layer="layer2"
inkscape:document-units="mm"
inkscape:cy="600.28163"
inkscape:cx="978.95645"
inkscape:zoom="0.49497475"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base">
<inkscape:grid
empspacing="100"
id="grid3312"
type="xygrid" />
</sodipodi:namedview>
<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:license
rdf:resource="http://creativecommons.org/licenses/by-nc-sa/4.0/" />
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-nc-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:prohibits
rdf:resource="http://creativecommons.org/ns#CommercialUse" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:groupmode="layer"
inkscape:label="bg">
<rect
ry="0"
y="0"
x="0"
height="238.125"
width="423.33334"
id="rect3309"
style="opacity:1;fill:#c8beb7;fill-opacity:1;stroke:none;stroke-width:8.37637;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
style="opacity:1;"
inkscape:label="fg"
id="layer2"
inkscape:groupmode="layer">
<path
sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccc"
d="m 343.95828,-3.5119436e-7 h 79.37506 V 32.693142 h -79.37506 z m -52.91662,0 h 52.91666 V 42.952494 h -52.91666 z m -79.375,0 h 79.375 C 291.10602,5.2498291 298.54876,12.057196 290.88149,9.575396 H 211.66666 Z M 132.29167,-1.2715658e-6 H 238.125 V 26.501977 H 132.29167 Z m -26.45834,9.2037144e-7 h 31.75 V 57.45238 h -31.75 z m -105.83333,0 H 132.56569 V 19.151769 H 0 Z m 0,0 H 27.79603 V 43.526751 H 0 Z"
style="opacity:1;fill:url(#linearGradient3527);fill-opacity:1;stroke:none;stroke-width:8.96056;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3503" />
<path
transform="scale(0.26458333)"
d="M 800 500 A 999.99991 276.7818 0 0 0 0 610.71289 L 0 900 L 1600 900 L 1600 610.71289 A 999.99991 276.7818 0 0 0 800 500 z "
style="opacity:1;fill:url(#radialGradient4299);fill-opacity:1;stroke:none;stroke-width:36.388;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path4238" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -0,0 +1,635 @@
<?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"
inkscape:export-ydpi="288"
inkscape:export-xdpi="288"
inkscape:export-filename="D:\coding\java\what-a-storage\src\main\resources\assets\textures\bin_open.png"
sodipodi:docname="bin.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
id="svg3547"
version="1.1"
viewBox="0 0 105.83334 66.145834"
height="250"
width="400">
<defs
id="defs3541">
<linearGradient
id="linearGradient4493"
inkscape:collect="always">
<stop
id="stop4489"
offset="0"
style="stop-color:#b3b3b3;stop-opacity:1;" />
<stop
id="stop4491"
offset="1"
style="stop-color:#b3b3b3;stop-opacity:0;" />
</linearGradient>
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="5"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,1.3229167,0,1 @ F,0,0,1,0,1.3229167,0,1 @ F,0,0,1,0,1.3229167,0,1 @ F,0,0,1,0,1.3229167,0,1"
lpeversion="1"
is_visible="true"
id="path-effect4469"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect4450"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,1.3229167,0,1 @ F,0,0,1,0,1.3229167,0,1 @ F,0,0,1,0,1.3229167,0,1 @ F,0,0,1,0,1.3229167,0,1"
unit="px"
method="auto"
mode="F"
radius="5"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="5"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,1.3229167,0,1 @ F,0,0,1,0,1.3229167,0,1 @ F,0,0,1,0,1.3229167,0,1 @ F,0,0,1,0,1.3229167,0,1"
lpeversion="1"
is_visible="true"
id="path-effect4431"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="15"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1"
lpeversion="1"
is_visible="true"
id="path-effect4426"
effect="fillet_chamfer" />
<inkscape:path-effect
applied="false"
autoreverse="true"
close="true"
join="true"
fuse="false"
method="bsplinespiro"
linkedpaths=""
lpeversion="1"
is_visible="true"
id="path-effect4424"
effect="fill_between_many" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="12"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,3.175,0,1 @ F,0,0,1,0,3.175,0,1 @ F,0,0,1,0,3.175,0,1 @ F,0,0,1,0,3.175,0,1"
lpeversion="1"
is_visible="true"
id="path-effect4416"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect4397"
is_visible="false"
lpeversion="1"
satellites_param="F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1"
unit="px"
method="auto"
mode="F"
radius="15"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect4378"
is_visible="false"
lpeversion="1"
satellites_param="F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1"
unit="px"
method="auto"
mode="F"
radius="15"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="true"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="15"
mode="C"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ C,0,0,1,0,3.96875,0,1"
lpeversion="1"
is_visible="true"
id="path-effect4359"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect4356"
is_visible="false"
lpeversion="1"
satellites_param="F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1"
unit="px"
method="auto"
mode="F"
radius="15"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect4335"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1"
unit="px"
method="auto"
mode="F"
radius="15"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="20"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,5.2916667,0,1 @ F,0,0,1,0,5.2916667,0,1 @ F,0,0,1,0,5.2916667,0,1 @ F,0,0,1,0,5.2916667,0,1"
lpeversion="1"
is_visible="true"
id="path-effect4316"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="15"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1"
lpeversion="1"
is_visible="false"
id="path-effect4313"
effect="fillet_chamfer" />
<linearGradient
gradientTransform="translate(-91.470068,-94.779021)"
inkscape:collect="always"
xlink:href="#linearGradient3420-6"
id="linearGradient3424"
gradientUnits="userSpaceOnUse"
x1="211.66283"
y1="200.55714"
x2="211.66649"
y2="251.16518" />
<linearGradient
inkscape:collect="always"
id="linearGradient3420-6">
<stop
style="stop-color:#b3b3b3;stop-opacity:1;"
offset="0"
id="stop3416" />
<stop
style="stop-color:#808080;stop-opacity:1"
offset="1"
id="stop3418" />
</linearGradient>
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect3319"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1"
unit="px"
method="auto"
mode="F"
radius="15"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="15"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1"
lpeversion="1"
is_visible="true"
id="path-effect3338"
effect="fillet_chamfer" />
<linearGradient
gradientTransform="translate(-91.470068,-94.779021)"
inkscape:collect="always"
xlink:href="#linearGradient3461"
id="linearGradient3465"
gradientUnits="userSpaceOnUse"
x1="211.79893"
y1="214.3125"
x2="211.79893"
y2="248.70833" />
<linearGradient
id="linearGradient3461"
inkscape:collect="always">
<stop
id="stop3457"
offset="0"
style="stop-color:#808080;stop-opacity:1" />
<stop
id="stop3459"
offset="1"
style="stop-color:#4d4d4d;stop-opacity:1" />
</linearGradient>
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect3410"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1"
unit="px"
method="auto"
mode="F"
radius="7"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<linearGradient
gradientTransform="translate(-91.470068,-94.779021)"
inkscape:collect="always"
xlink:href="#linearGradient3461"
id="linearGradient3467"
gradientUnits="userSpaceOnUse"
x1="234.00433"
y1="214.3125"
x2="234.00433"
y2="248.70833" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect3408"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1"
unit="px"
method="auto"
mode="F"
radius="7"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<linearGradient
gradientTransform="translate(-91.470068,-94.779021)"
inkscape:collect="always"
xlink:href="#linearGradient3461"
id="linearGradient3463"
gradientUnits="userSpaceOnUse"
x1="189.59355"
y1="214.3125"
x2="189.59355"
y2="248.70833" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect3412"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1"
unit="px"
method="auto"
mode="F"
radius="7"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<linearGradient
gradientTransform="translate(-91.470068,-94.779021)"
inkscape:collect="always"
xlink:href="#linearGradient3461"
id="linearGradient3440"
x1="167.71385"
y1="214.3125"
x2="167.71385"
y2="248.70833"
gradientUnits="userSpaceOnUse" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect3414"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1"
unit="px"
method="auto"
mode="F"
radius="7"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<linearGradient
gradientTransform="translate(-91.470068,-94.779021)"
inkscape:collect="always"
xlink:href="#linearGradient3461"
id="linearGradient3469"
gradientUnits="userSpaceOnUse"
x1="255.88295"
y1="214.3125"
x2="255.88295"
y2="248.70833" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect3406"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1"
unit="px"
method="auto"
mode="F"
radius="7"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<linearGradient
gradientTransform="matrix(0.87765164,0,0,0.87765164,2.3532255,9.1650264)"
gradientUnits="userSpaceOnUse"
y2="131.4427"
x2="127.36086"
y1="140.70312"
x1="127.36086"
id="linearGradient4477"
xlink:href="#linearGradient3420-6"
inkscape:collect="always" />
<linearGradient
gradientTransform="matrix(0.87765164,0,0,0.87765164,2.3532255,9.1650264)"
gradientUnits="userSpaceOnUse"
y2="131.4427"
x2="160.43378"
y1="140.70312"
x1="160.43378"
id="linearGradient4487"
xlink:href="#linearGradient3420-6"
inkscape:collect="always" />
<linearGradient
gradientTransform="matrix(0.87765164,0,0,0.87765164,2.3532255,9.1650264)"
gradientUnits="userSpaceOnUse"
y2="131.4427"
x2="94.287949"
y1="140.70312"
x1="94.287949"
id="linearGradient4495"
xlink:href="#linearGradient4493"
inkscape:collect="always" />
</defs>
<sodipodi:namedview
units="px"
inkscape:window-maximized="1"
inkscape:window-y="-7"
inkscape:window-x="-7"
inkscape:window-height="1010"
inkscape:window-width="1920"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer3"
inkscape:document-units="mm"
inkscape:cy="308.18419"
inkscape:cx="57.941679"
inkscape:zoom="0.98994949"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base">
<inkscape:grid
id="grid4479"
type="xygrid" />
</sodipodi:namedview>
<metadata
id="metadata3544">
<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
style="display:inline;opacity:1"
inkscape:label="lid_open"
id="layer3"
inkscape:groupmode="layer">
<path
inkscape:original-d="M 8.3484515,12.798943 H 97.484884 l -2.32212,13.947458 H 10.206148 Z"
inkscape:path-effect="#path-effect4316"
sodipodi:nodetypes="ccccc"
style="fill:#808080;stroke-width:14.5177"
d="m 13.640118,12.798943 h 78.553099 a 4.483493,4.483493 49.726252 0 1 4.422617,5.219817 l -0.58402,3.507824 a 6.245518,6.245518 139.72625 0 1 -6.160717,5.219817 H 15.497815 A 6.0432083,6.0432083 41.206643 0 1 9.5075076,21.501057 l -0.4604157,-3.45677 a 4.6335879,4.6335879 131.20664 0 1 4.5930261,-5.245344 z"
id="rect4311" />
</g>
<g
style="display:inline"
transform="translate(-61.215031,-103.66146)"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="bin">
<g
transform="matrix(0.87765164,0,0,0.87765164,8.6411045,32.554724)"
id="g4308">
<path
inkscape:original-d="m 60.665352,116.88764 13.229161,-13.22917 92.604167,0.0698 13.22917,13.15939 -6.61459,39.4985 H 67.279932 Z"
inkscape:path-effect="#path-effect3319"
sodipodi:nodetypes="ccccccc"
d="m 63.471681,114.08131 7.616503,-7.61651 a 9.5712014,9.5712014 157.52158 0 1 6.775078,-2.80334 l 84.666668,0.0638 a 9.6276441,9.6276441 22.445839 0 1 6.78249,2.80189 l 7.60169,7.56159 a 7.6797243,7.6797243 72.177638 0 1 2.15824,6.71314 l -5.30359,31.67002 a 4.6886397,4.6886397 139.75339 0 1 -4.62425,3.91424 H 71.248682 a 4.6886381,4.6886381 40.246617 0 1 -4.624245,-3.91424 l -5.30359,-31.67004 a 7.70469,7.70469 107.74661 0 1 2.150834,-6.72057 z"
style="opacity:1;fill:url(#linearGradient3424);fill-opacity:1;stroke:none;stroke-width:8.6396;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter3537)"
id="rect3314" />
<path
inkscape:path-effect="#path-effect3338"
inkscape:original-d="m 63.311182,116.35847 10.583331,-10.58334 92.604167,0.0698 10.58334,10.51356 z"
id="rect3314-0"
style="opacity:1;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:8.6396;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter3537)"
d="m 66.117511,113.55214 4.970673,-4.97068 a 9.5712002,9.5712002 157.52158 0 1 6.775078,-2.80334 l 84.666668,0.0638 a 9.6367129,9.6367129 22.426838 0 1 6.78435,2.80002 l 4.95214,4.9195 a 1.6362253,1.6362253 112.40525 0 1 -1.15315,2.79703 l -105.833338,-2e-5 a 1.6439115,1.6439115 67.499993 0 1 -1.162421,-2.80633 z"
sodipodi:nodetypes="ccccc" />
<path
inkscape:original-d="m 116.09554,119.53348 h 8.46666 l -1.32291,34.39583 h -5.82083 z"
inkscape:path-effect="#path-effect3410"
sodipodi:nodetypes="ccccc"
d="m 117.94762,119.53348 h 4.7625 a 1.782219,1.782219 46.101294 0 1 1.7809,1.85071 l -1.18055,30.69441 a 1.9246863,1.9246863 136.10129 0 1 -1.92326,1.85071 h -2.11667 a 1.9246868,1.9246868 43.898698 0 1 -1.92326,-1.85071 l -1.18056,-30.69441 a 1.7822185,1.7822185 133.8987 0 1 1.7809,-1.85071 z"
style="opacity:1;fill:url(#linearGradient3465);fill-opacity:1;stroke:none;stroke-width:10.2106;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter3537)"
id="rect3340" />
<path
inkscape:original-d="m 138.76467,119.53348 h 8.46666 l -3.43957,34.39583 h -5.82083 z"
inkscape:path-effect="#path-effect3408"
id="rect3340-4"
style="opacity:1;fill:url(#linearGradient3467);fill-opacity:1;stroke:none;stroke-width:10.2106;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter3537)"
d="m 140.61675,119.53348 h 4.7625 a 1.676113,1.676113 47.855286 0 1 1.66779,1.84289 l -3.07099,30.71005 a 2.0465282,2.0465282 137.85529 0 1 -2.03637,1.84289 h -2.11667 a 1.8098365,1.8098365 45.66098 0 1 -1.80935,-1.85159 l 0.70828,-30.69265 a 1.8953162,1.8953162 135.66098 0 1 1.89481,-1.85159 z"
sodipodi:nodetypes="ccccc" />
<path
inkscape:original-d="m 93.426412,119.53348 h 8.466658 l 0.79375,34.39583 h -5.820827 z"
inkscape:path-effect="#path-effect3412"
sodipodi:nodetypes="ccccc"
d="m 95.278495,119.53348 h 4.762495 a 1.8953168,1.8953168 44.339012 0 1 1.89481,1.85159 l 0.70829,30.69265 a 1.809836,1.809836 134.33901 0 1 -1.80935,1.85159 h -2.116664 a 2.0465289,2.0465289 42.144705 0 1 -2.036372,-1.84289 l -3.071003,-30.71005 a 1.6761124,1.6761124 132.14471 0 1 1.667794,-1.84289 z"
style="opacity:1;fill:url(#linearGradient3463);fill-opacity:1;stroke:none;stroke-width:10.2106;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter3537)"
id="rect3340-4-5" />
<path
inkscape:original-d="m 70.492703,119.53348 h 8.46666 l 2.91042,34.39583 h -5.82083 z"
inkscape:path-effect="#path-effect3414"
id="rect3340-4-5-3"
style="opacity:1;fill:url(#linearGradient3440);fill-opacity:1;stroke:none;stroke-width:10.2106;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter3537)"
d="m 72.344786,119.53348 h 4.762494 a 2.0154167,2.0154167 42.581705 0 1 2.00824,1.84549 l 2.598106,30.70485 a 1.7019868,1.7019868 132.58171 0 1 -1.695926,1.84549 h -2.116664 a 2.1752752,2.1752752 40.411898 0 1 -2.147437,-1.82838 l -4.965542,-30.73907 a 1.5769097,1.5769097 130.4119 0 1 1.556729,-1.82838 z"
sodipodi:nodetypes="ccccc" />
<path
inkscape:original-d="m 161.43379,119.53348 h 8.46666 l -5.55624,34.39583 h -5.82083 z"
inkscape:path-effect="#path-effect3406"
sodipodi:nodetypes="ccccc"
d="m 163.28587,119.53348 h 4.7625 a 1.5769102,1.5769102 49.588094 0 1 1.55673,1.82838 l -4.96554,30.73907 a 2.1752745,2.1752745 139.58809 0 1 -2.14743,1.82838 h -2.11667 a 1.7019873,1.7019873 47.418286 0 1 -1.69592,-1.84549 l 2.59809,-30.70485 a 2.0154161,2.0154161 137.41829 0 1 2.00824,-1.84549 z"
style="opacity:1;fill:url(#linearGradient3469);fill-opacity:1;stroke:none;stroke-width:10.2106;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter3537)"
id="rect3340-4-0" />
<path
inkscape:original-d="m 73.914674,111.87762 -4.480864,4.48087 h 101.52558 l -4.44055,-4.4111 z"
inkscape:path-effect="#path-effect4416"
id="rect3314-0-5"
style="display:inline;opacity:1;fill:#333333;fill-opacity:1;stroke:none;stroke-width:8.6396;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter3537)"
d="m 71.669611,114.12269 a 1.3124331,1.3124331 67.214095 0 0 0.939199,2.2358 h 95.17558 a 1.3089444,1.3089444 112.40469 0 0 0.92248,-2.23758 7.5993491,7.5993491 22.083582 0 0 -5.36303,-2.17591 l -86.254167,-0.065 a 7.656961,7.656961 157.52156 0 0 -5.420062,2.24268 z" />
</g>
</g>
<g
style="display:none;opacity:1"
transform="translate(-61.215031,-103.66146)"
inkscape:label="lid_closed"
id="layer4"
inkscape:groupmode="layer">
<path
inkscape:original-d="m 66.162234,122.69069 h 95.938926 l 4.64424,12.19761 H 61.517994 Z"
inkscape:path-effect="#path-effect4426"
sodipodi:nodetypes="ccccc"
d="m 70.130984,122.69069 h 88.001426 a 5.7577949,5.7577949 34.577834 0 1 5.38095,3.709 l 1.81984,4.77961 a 2.7355918,2.7355918 124.57783 0 1 -2.55655,3.709 H 65.486744 a 2.7355918,2.7355918 55.422166 0 1 -2.556549,-3.709 l 1.819838,-4.77961 a 5.7577949,5.7577949 145.42217 0 1 5.380951,-3.709 z"
style="fill:#808080;stroke-width:8.12313"
id="rect4420" />
<path
inkscape:original-d="m 109.42987,124.68453 h 9.40359 l 1.45565,8.20993 h -12.3149 z"
inkscape:path-effect="#path-effect4431"
sodipodi:nodetypes="ccccc"
d="m 110.75279,124.68453 h 6.75775 a 1.5781076,1.5781076 39.972871 0 1 1.55388,1.3026 l 0.99373,5.60473 a 1.1089919,1.1089919 129.97287 0 1 -1.09196,1.3026 h -9.66906 a 1.1089906,1.1089906 50.027163 0 1 -1.09196,-1.3026 l 0.99374,-5.60473 a 1.5781095,1.5781095 140.02716 0 1 1.55388,-1.3026 z"
style="fill:url(#linearGradient4477);fill-opacity:1;stroke-width:10.987"
id="rect4428" />
<path
id="rect4428-6"
style="display:inline;fill:url(#linearGradient4487);fill-opacity:1;stroke-width:10.987"
d="m 138.9592,124.68453 6.75774,0 a 1.7618164,1.7618164 36.902237 0 1 1.6919,1.27042 l 1.64655,5.66909 a 0.99335472,0.99335472 126.90224 0 1 -0.95394,1.27042 h -9.66907 a 1.2407478,1.2407478 46.835779 0 1 -1.2382,-1.3202 l 0.35738,-5.56953 a 1.4105273,1.4105273 136.83578 0 1 1.40764,-1.3202 z"
sodipodi:nodetypes="ccccc"
inkscape:path-effect="#path-effect4450"
inkscape:original-d="m 137.63628,124.68453 h 9.40358 l 2.38451,8.20993 h -12.31491 z" />
<path
inkscape:original-d="m 90.627054,124.68453 h -9.403537 l -2.384488,8.20993 h 12.314845 z"
inkscape:path-effect="#path-effect4469"
sodipodi:nodetypes="ccccc"
d="m 89.304137,124.68453 h -6.757703 a 1.7618118,1.7618118 143.09769 0 0 -1.691897,1.27042 l -1.646528,5.66909 a 0.99335728,0.99335728 53.097692 0 0 0.953937,1.27042 h 9.669011 a 1.2407478,1.2407478 133.16422 0 0 1.238201,-1.3202 l -0.357388,-5.56953 a 1.4105273,1.4105273 43.164221 0 0 -1.407633,-1.3202 z"
style="display:inline;fill:url(#linearGradient4495);fill-opacity:1;stroke-width:10.987"
id="rect4428-6-1" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 25 KiB

View File

@@ -0,0 +1,635 @@
<?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="400"
height="250"
viewBox="0 0 105.83334 66.145834"
version="1.1"
id="svg3547"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
sodipodi:docname="bin_bordered.svg"
inkscape:export-filename="D:\coding\java\what-a-storage\src\main\resources\assets\textures\bin_closed.png"
inkscape:export-xdpi="288"
inkscape:export-ydpi="288">
<defs
id="defs3541">
<linearGradient
inkscape:collect="always"
id="linearGradient4493">
<stop
style="stop-color:#b3b3b3;stop-opacity:1;"
offset="0"
id="stop4489" />
<stop
style="stop-color:#b3b3b3;stop-opacity:0;"
offset="1"
id="stop4491" />
</linearGradient>
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect4469"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,1.3229167,0,1 @ F,0,0,1,0,1.3229167,0,1 @ F,0,0,1,0,1.3229167,0,1 @ F,0,0,1,0,1.3229167,0,1"
unit="px"
method="auto"
mode="F"
radius="5"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="5"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,1.3229167,0,1 @ F,0,0,1,0,1.3229167,0,1 @ F,0,0,1,0,1.3229167,0,1 @ F,0,0,1,0,1.3229167,0,1"
lpeversion="1"
is_visible="true"
id="path-effect4450"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect4431"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,1.3229167,0,1 @ F,0,0,1,0,1.3229167,0,1 @ F,0,0,1,0,1.3229167,0,1 @ F,0,0,1,0,1.3229167,0,1"
unit="px"
method="auto"
mode="F"
radius="5"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect4426"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1"
unit="px"
method="auto"
mode="F"
radius="15"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="fill_between_many"
id="path-effect4424"
is_visible="true"
lpeversion="1"
linkedpaths=""
method="bsplinespiro"
fuse="false"
join="true"
close="true"
autoreverse="true"
applied="false" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect4416"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3.175,0,1 @ F,0,0,1,0,3.175,0,1 @ F,0,0,1,0,3.175,0,1 @ F,0,0,1,0,3.175,0,1"
unit="px"
method="auto"
mode="F"
radius="12"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="15"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1"
lpeversion="1"
is_visible="false"
id="path-effect4397"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="15"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1"
lpeversion="1"
is_visible="false"
id="path-effect4378"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect4359"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ C,0,0,1,0,3.96875,0,1"
unit="px"
method="auto"
mode="C"
radius="15"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="true"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="15"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1"
lpeversion="1"
is_visible="false"
id="path-effect4356"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="15"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1"
lpeversion="1"
is_visible="true"
id="path-effect4335"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect4316"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,5.2916667,0,1 @ F,0,0,1,0,5.2916667,0,1 @ F,0,0,1,0,5.2916667,0,1 @ F,0,0,1,0,5.2916667,0,1"
unit="px"
method="auto"
mode="F"
radius="20"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect4313"
is_visible="false"
lpeversion="1"
satellites_param="F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1"
unit="px"
method="auto"
mode="F"
radius="15"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<linearGradient
y2="251.16518"
x2="211.66649"
y1="200.55714"
x1="211.66283"
gradientUnits="userSpaceOnUse"
id="linearGradient3424"
xlink:href="#linearGradient3420-6"
inkscape:collect="always"
gradientTransform="translate(-91.470068,-94.779021)" />
<linearGradient
id="linearGradient3420-6"
inkscape:collect="always">
<stop
id="stop3416"
offset="0"
style="stop-color:#b3b3b3;stop-opacity:1;" />
<stop
id="stop3418"
offset="1"
style="stop-color:#808080;stop-opacity:1" />
</linearGradient>
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="15"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1"
lpeversion="1"
is_visible="true"
id="path-effect3319"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect3338"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1 @ F,0,0,1,0,3.96875,0,1"
unit="px"
method="auto"
mode="F"
radius="15"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<linearGradient
y2="248.70833"
x2="211.79893"
y1="214.3125"
x1="211.79893"
gradientUnits="userSpaceOnUse"
id="linearGradient3465"
xlink:href="#linearGradient3461"
inkscape:collect="always"
gradientTransform="translate(-91.470068,-94.779021)" />
<linearGradient
inkscape:collect="always"
id="linearGradient3461">
<stop
style="stop-color:#808080;stop-opacity:1"
offset="0"
id="stop3457" />
<stop
style="stop-color:#4d4d4d;stop-opacity:1"
offset="1"
id="stop3459" />
</linearGradient>
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="7"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1"
lpeversion="1"
is_visible="true"
id="path-effect3410"
effect="fillet_chamfer" />
<linearGradient
y2="248.70833"
x2="234.00433"
y1="214.3125"
x1="234.00433"
gradientUnits="userSpaceOnUse"
id="linearGradient3467"
xlink:href="#linearGradient3461"
inkscape:collect="always"
gradientTransform="translate(-91.470068,-94.779021)" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="7"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1"
lpeversion="1"
is_visible="true"
id="path-effect3408"
effect="fillet_chamfer" />
<linearGradient
y2="248.70833"
x2="189.59355"
y1="214.3125"
x1="189.59355"
gradientUnits="userSpaceOnUse"
id="linearGradient3463"
xlink:href="#linearGradient3461"
inkscape:collect="always"
gradientTransform="translate(-91.470068,-94.779021)" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="7"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1"
lpeversion="1"
is_visible="true"
id="path-effect3412"
effect="fillet_chamfer" />
<linearGradient
gradientUnits="userSpaceOnUse"
y2="248.70833"
x2="167.71385"
y1="214.3125"
x1="167.71385"
id="linearGradient3440"
xlink:href="#linearGradient3461"
inkscape:collect="always"
gradientTransform="translate(-91.470068,-94.779021)" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="7"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1"
lpeversion="1"
is_visible="true"
id="path-effect3414"
effect="fillet_chamfer" />
<linearGradient
y2="248.70833"
x2="255.88295"
y1="214.3125"
x1="255.88295"
gradientUnits="userSpaceOnUse"
id="linearGradient3469"
xlink:href="#linearGradient3461"
inkscape:collect="always"
gradientTransform="translate(-91.470068,-94.779021)" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="7"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1 @ F,0,0,1,0,1.8520833,0,1"
lpeversion="1"
is_visible="true"
id="path-effect3406"
effect="fillet_chamfer" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3420-6"
id="linearGradient4477"
x1="127.36086"
y1="140.70312"
x2="127.36086"
y2="131.4427"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.87765164,0,0,0.87765164,2.3532255,9.1650264)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3420-6"
id="linearGradient4487"
x1="160.43378"
y1="140.70312"
x2="160.43378"
y2="131.4427"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.87765164,0,0,0.87765164,2.3532255,9.1650264)" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient4493"
id="linearGradient4495"
x1="94.287949"
y1="140.70312"
x2="94.287949"
y2="131.4427"
gradientUnits="userSpaceOnUse"
gradientTransform="matrix(0.87765164,0,0,0.87765164,2.3532255,9.1650264)" />
</defs>
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.98994949"
inkscape:cx="148.85541"
inkscape:cy="287.98114"
inkscape:document-units="mm"
inkscape:current-layer="layer4"
inkscape:document-rotation="0"
showgrid="false"
inkscape:window-width="1920"
inkscape:window-height="1010"
inkscape:window-x="-7"
inkscape:window-y="-7"
inkscape:window-maximized="1"
units="px">
<inkscape:grid
type="xygrid"
id="grid4479" />
</sodipodi:namedview>
<metadata
id="metadata3544">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:groupmode="layer"
id="layer3"
inkscape:label="lid_open"
style="display:none;opacity:1">
<path
id="rect4311"
d="m 13.640118,12.798943 h 78.553099 a 4.483493,4.483493 49.726252 0 1 4.422617,5.219817 l -0.58402,3.507824 a 6.245518,6.245518 139.72625 0 1 -6.160717,5.219817 H 15.497815 A 6.0432083,6.0432083 41.206643 0 1 9.5075076,21.501057 l -0.4604157,-3.45677 a 4.6335879,4.6335879 131.20664 0 1 4.5930261,-5.245344 z"
style="fill:#808080;stroke:#000000;stroke-width:0.264583;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
sodipodi:nodetypes="ccccc"
inkscape:path-effect="#path-effect4316"
inkscape:original-d="M 8.3484515,12.798943 H 97.484884 l -2.32212,13.947458 H 10.206148 Z" />
</g>
<g
inkscape:label="bin"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-61.215031,-103.66146)"
style="display:inline">
<g
id="g4308"
transform="matrix(0.87765164,0,0,0.87765164,8.6411045,32.554724)">
<path
id="rect3314"
style="opacity:1;fill:url(#linearGradient3424);fill-opacity:1;stroke:#000000;stroke-width:0.30146737;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter3537)"
d="m 63.471681,114.08131 7.616503,-7.61651 a 9.5712014,9.5712014 157.52158 0 1 6.775078,-2.80334 l 84.666668,0.0638 a 9.6276441,9.6276441 22.445839 0 1 6.78249,2.80189 l 7.60169,7.56159 a 7.6797243,7.6797243 72.177638 0 1 2.15824,6.71314 l -5.30359,31.67002 a 4.6886397,4.6886397 139.75339 0 1 -4.62425,3.91424 H 71.248682 a 4.6886381,4.6886381 40.246617 0 1 -4.624245,-3.91424 l -5.30359,-31.67004 a 7.70469,7.70469 107.74661 0 1 2.150834,-6.72057 z"
sodipodi:nodetypes="ccccccc"
inkscape:path-effect="#path-effect3319"
inkscape:original-d="m 60.665352,116.88764 13.229161,-13.22917 92.604167,0.0698 13.22917,13.15939 -6.61459,39.4985 H 67.279932 Z" />
<path
sodipodi:nodetypes="ccccc"
d="m 66.117511,113.55214 4.970673,-4.97068 a 9.5712002,9.5712002 157.52158 0 1 6.775078,-2.80334 l 84.666668,0.0638 a 9.6367129,9.6367129 22.426838 0 1 6.78435,2.80002 l 4.95214,4.9195 a 1.6362253,1.6362253 112.40525 0 1 -1.15315,2.79703 l -105.833338,-2e-5 a 1.6439115,1.6439115 67.499993 0 1 -1.162421,-2.80633 z"
style="opacity:1;fill:#4d4d4d;fill-opacity:1;stroke:#000000;stroke-width:0.30146737;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter3537)"
id="rect3314-0"
inkscape:original-d="m 63.311182,116.35847 10.583331,-10.58334 92.604167,0.0698 10.58334,10.51356 z"
inkscape:path-effect="#path-effect3338" />
<path
id="rect3340"
style="opacity:1;fill:url(#linearGradient3465);fill-opacity:1;stroke:#000000;stroke-width:0.30146737;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter3537)"
d="m 117.94762,119.53348 h 4.7625 a 1.782219,1.782219 46.101294 0 1 1.7809,1.85071 l -1.18055,30.69441 a 1.9246863,1.9246863 136.10129 0 1 -1.92326,1.85071 h -2.11667 a 1.9246868,1.9246868 43.898698 0 1 -1.92326,-1.85071 l -1.18056,-30.69441 a 1.7822185,1.7822185 133.8987 0 1 1.7809,-1.85071 z"
sodipodi:nodetypes="ccccc"
inkscape:path-effect="#path-effect3410"
inkscape:original-d="m 116.09554,119.53348 h 8.46666 l -1.32291,34.39583 h -5.82083 z" />
<path
sodipodi:nodetypes="ccccc"
d="m 140.61675,119.53348 h 4.7625 a 1.676113,1.676113 47.855286 0 1 1.66779,1.84289 l -3.07099,30.71005 a 2.0465282,2.0465282 137.85529 0 1 -2.03637,1.84289 h -2.11667 a 1.8098365,1.8098365 45.66098 0 1 -1.80935,-1.85159 l 0.70828,-30.69265 a 1.8953162,1.8953162 135.66098 0 1 1.89481,-1.85159 z"
style="opacity:1;fill:url(#linearGradient3467);fill-opacity:1;stroke:#000000;stroke-width:0.30146737;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter3537)"
id="rect3340-4"
inkscape:path-effect="#path-effect3408"
inkscape:original-d="m 138.76467,119.53348 h 8.46666 l -3.43957,34.39583 h -5.82083 z" />
<path
id="rect3340-4-5"
style="opacity:1;fill:url(#linearGradient3463);fill-opacity:1;stroke:#000000;stroke-width:0.30146737;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter3537)"
d="m 95.278495,119.53348 h 4.762495 a 1.8953168,1.8953168 44.339012 0 1 1.89481,1.85159 l 0.70829,30.69265 a 1.809836,1.809836 134.33901 0 1 -1.80935,1.85159 h -2.116664 a 2.0465289,2.0465289 42.144705 0 1 -2.036372,-1.84289 l -3.071003,-30.71005 a 1.6761124,1.6761124 132.14471 0 1 1.667794,-1.84289 z"
sodipodi:nodetypes="ccccc"
inkscape:path-effect="#path-effect3412"
inkscape:original-d="m 93.426412,119.53348 h 8.466658 l 0.79375,34.39583 h -5.820827 z" />
<path
sodipodi:nodetypes="ccccc"
d="m 72.344786,119.53348 h 4.762494 a 2.0154167,2.0154167 42.581705 0 1 2.00824,1.84549 l 2.598106,30.70485 a 1.7019868,1.7019868 132.58171 0 1 -1.695926,1.84549 h -2.116664 a 2.1752752,2.1752752 40.411898 0 1 -2.147437,-1.82838 l -4.965542,-30.73907 a 1.5769097,1.5769097 130.4119 0 1 1.556729,-1.82838 z"
style="opacity:1;fill:url(#linearGradient3440);fill-opacity:1;stroke:#000000;stroke-width:0.30146737;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter3537)"
id="rect3340-4-5-3"
inkscape:path-effect="#path-effect3414"
inkscape:original-d="m 70.492703,119.53348 h 8.46666 l 2.91042,34.39583 h -5.82083 z" />
<path
id="rect3340-4-0"
style="opacity:1;fill:url(#linearGradient3469);fill-opacity:1;stroke:#000000;stroke-width:0.30146737;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter3537)"
d="m 163.28587,119.53348 h 4.7625 a 1.5769102,1.5769102 49.588094 0 1 1.55673,1.82838 l -4.96554,30.73907 a 2.1752745,2.1752745 139.58809 0 1 -2.14743,1.82838 h -2.11667 a 1.7019873,1.7019873 47.418286 0 1 -1.69592,-1.84549 l 2.59809,-30.70485 a 2.0154161,2.0154161 137.41829 0 1 2.00824,-1.84549 z"
sodipodi:nodetypes="ccccc"
inkscape:path-effect="#path-effect3406"
inkscape:original-d="m 161.43379,119.53348 h 8.46666 l -5.55624,34.39583 h -5.82083 z" />
<path
d="m 71.669611,114.12269 a 1.3124331,1.3124331 67.214095 0 0 0.939199,2.2358 h 95.17558 a 1.3089444,1.3089444 112.40469 0 0 0.92248,-2.23758 7.5993491,7.5993491 22.083582 0 0 -5.36303,-2.17591 l -86.254167,-0.065 a 7.656961,7.656961 157.52156 0 0 -5.420062,2.24268 z"
style="display:inline;opacity:1;fill:#333333;fill-opacity:1;stroke:#000000;stroke-width:0.30146737;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter3537)"
id="rect3314-0-5"
inkscape:path-effect="#path-effect4416"
inkscape:original-d="m 73.914674,111.87762 -4.480864,4.48087 h 101.52558 l -4.44055,-4.4111 z" />
</g>
</g>
<g
inkscape:groupmode="layer"
id="layer4"
inkscape:label="lid_closed"
transform="translate(-61.215031,-103.66146)"
style="display:inline;opacity:1">
<path
id="rect4420"
style="fill:#808080;stroke:#000000;stroke-width:0.264583;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 70.130984,122.69069 h 88.001426 a 5.7577949,5.7577949 34.577834 0 1 5.38095,3.709 l 1.81984,4.77961 a 2.7355918,2.7355918 124.57783 0 1 -2.55655,3.709 H 65.486744 a 2.7355918,2.7355918 55.422166 0 1 -2.556549,-3.709 l 1.819838,-4.77961 a 5.7577949,5.7577949 145.42217 0 1 5.380951,-3.709 z"
sodipodi:nodetypes="ccccc"
inkscape:path-effect="#path-effect4426"
inkscape:original-d="m 66.162234,122.69069 h 95.938926 l 4.64424,12.19761 H 61.517994 Z" />
<path
id="rect4428"
style="fill:url(#linearGradient4477);fill-opacity:1;stroke:#000000;stroke-width:0.264583;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 110.75279,124.68453 h 6.75775 a 1.5781076,1.5781076 39.972871 0 1 1.55388,1.3026 l 0.99373,5.60473 a 1.1089919,1.1089919 129.97287 0 1 -1.09196,1.3026 h -9.66906 a 1.1089906,1.1089906 50.027163 0 1 -1.09196,-1.3026 l 0.99374,-5.60473 a 1.5781095,1.5781095 140.02716 0 1 1.55388,-1.3026 z"
sodipodi:nodetypes="ccccc"
inkscape:path-effect="#path-effect4431"
inkscape:original-d="m 109.42987,124.68453 h 9.40359 l 1.45565,8.20993 h -12.3149 z" />
<path
inkscape:original-d="m 137.63628,124.68453 h 9.40358 l 2.38451,8.20993 h -12.31491 z"
inkscape:path-effect="#path-effect4450"
sodipodi:nodetypes="ccccc"
d="m 138.9592,124.68453 6.75774,0 a 1.7618164,1.7618164 36.902237 0 1 1.6919,1.27042 l 1.64655,5.66909 a 0.99335472,0.99335472 126.90224 0 1 -0.95394,1.27042 h -9.66907 a 1.2407478,1.2407478 46.835779 0 1 -1.2382,-1.3202 l 0.35738,-5.56953 a 1.4105273,1.4105273 136.83578 0 1 1.40764,-1.3202 z"
style="display:inline;fill:url(#linearGradient4487);fill-opacity:1;stroke:#000000;stroke-width:0.264583;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect4428-6" />
<path
id="rect4428-6-1"
style="display:inline;fill:url(#linearGradient4495);fill-opacity:1;stroke:#000000;stroke-width:0.264583;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 89.304137,124.68453 h -6.757703 a 1.7618118,1.7618118 143.09769 0 0 -1.691897,1.27042 l -1.646528,5.66909 a 0.99335728,0.99335728 53.097692 0 0 0.953937,1.27042 h 9.669011 a 1.2407478,1.2407478 133.16422 0 0 1.238201,-1.3202 l -0.357388,-5.56953 a 1.4105273,1.4105273 43.164221 0 0 -1.407633,-1.3202 z"
sodipodi:nodetypes="ccccc"
inkscape:path-effect="#path-effect4469"
inkscape:original-d="m 90.627054,124.68453 h -9.403537 l -2.384488,8.20993 h 12.314845 z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

View File

@@ -0,0 +1,541 @@
<?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"
inkscape:export-ydpi="288"
inkscape:export-xdpi="288"
inkscape:export-filename="D:\coding\java\what-a-storage\src\main\resources\assets\textures\conveyor_in_2.png"
width="550"
height="400"
viewBox="0 0 145.52083 105.83334"
version="1.1"
id="svg4608"
sodipodi:docname="conveyor_in.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)">
<defs
id="defs4602">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1114"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,0,1,0,0,0,1"
unit="px"
method="auto"
mode="F"
radius="8"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="true"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="8"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect1110"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1091"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,0,1,0,0,0,1"
unit="px"
method="auto"
mode="F"
radius="8"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="true"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="8"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect1087"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="8"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect1068"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1040"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,0,1,0,0,0,1"
unit="px"
method="auto"
mode="F"
radius="8"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="true"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="24"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,1,1,0,6.35,0,1 @ F,0,1,1,0,6.35,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect1017"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect995"
is_visible="false"
lpeversion="1"
satellites_param="F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1"
unit="px"
method="auto"
mode="F"
radius="8"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="8"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1"
lpeversion="1"
is_visible="true"
id="path-effect907"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="8"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1"
lpeversion="1"
is_visible="true"
id="path-effect905"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect903"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1"
unit="px"
method="auto"
mode="F"
radius="8"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="8"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1"
lpeversion="1"
is_visible="true"
id="path-effect893"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="8"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1"
lpeversion="1"
is_visible="true"
id="path-effect891"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect889"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1"
unit="px"
method="auto"
mode="F"
radius="8"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect879"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1"
unit="px"
method="auto"
mode="F"
radius="8"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect856"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1"
unit="px"
method="auto"
mode="F"
radius="8"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="8"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1"
lpeversion="1"
is_visible="true"
id="path-effect851"
effect="fillet_chamfer" />
</defs>
<sodipodi:namedview
inkscape:snap-nodes="false"
inkscape:object-paths="false"
inkscape:bbox-nodes="false"
inkscape:snap-global="true"
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="1.979899"
inkscape:cx="164.00025"
inkscape:cy="274.30644"
inkscape:document-units="mm"
inkscape:current-layer="g887"
inkscape:document-rotation="0"
showgrid="true"
units="px"
showguides="true"
inkscape:snap-grids="true"
inkscape:snap-bbox="true"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:snap-midpoints="false"
inkscape:snap-others="false"
inkscape:snap-bbox-midpoints="false"
inkscape:bbox-paths="true"
inkscape:snap-intersection-paths="false"
inkscape:window-width="1920"
inkscape:window-height="1010"
inkscape:window-x="-7"
inkscape:window-y="-7"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid5171"
spacingx="13.229167"
spacingy="13.229167"
empspacing="2" />
</sodipodi:namedview>
<metadata
id="metadata4605">
<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="base"
inkscape:groupmode="layer"
id="layer1"
style="display:inline">
<rect
style="display:inline;opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:4.14039;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect915-9"
width="2.8348303"
height="52.916706"
x="130.87419"
y="-3.8059552e-05"
ry="1.5505864e-06" />
<path
id="rect5195"
style="fill:#666666;stroke-width:33.2941"
d="M 0,50 V 250 H 299.83203 300 a 25.000001,25.000001 0 0 1 10.40039,2.26758 25.000001,25.000001 0 0 1 1.62891,0.81836 25.000001,25.000001 0 0 1 1.55273,0.92578 25.000001,25.000001 0 0 1 1.46875,1.02734 25.000001,25.000001 0 0 1 1.35742,1.10156 c 0.008,0.007 0.0174,0.0125 0.0254,0.0195 a 25.000001,25.000001 0 0 1 0.0195,0.0176 25.000001,25.000001 0 0 1 1.27149,1.19141 c 0.001,0.001 0.003,0.003 0.004,0.004 a 25.000001,25.000001 0 0 1 0.002,0.004 25.000001,25.000001 0 0 1 1.19726,1.29297 25.000001,25.000001 0 0 1 1.10352,1.375 25.000001,25.000001 0 0 1 1.00391,1.44727 25.000001,25.000001 0 0 1 0.89843,1.51367 25.000001,25.000001 0 0 1 0.79102,1.57617 25.000001,25.000001 0 0 1 0.67969,1.63086 25.000001,25.000001 0 0 1 0.56054,1.66992 c 10e-4,0.004 0.003,0.008 0.004,0.0117 a 25.000001,25.000001 0 0 1 0.004,0.0156 25.000001,25.000001 0 0 1 0.43359,1.67968 c 0.002,0.01 0.006,0.0194 0.008,0.0293 a 25.000001,25.000001 0 0 1 0.004,0.0254 25.000001,25.000001 0 0 1 0.30469,1.65039 c 0.008,0.0528 0.0159,0.10537 0.0234,0.1582 a 25.000001,25.000001 0 0 1 0.18555,1.69922 c 6.3e-4,0.009 0.001,0.0169 0.002,0.0254 a 25.000001,25.000001 0 0 1 0,0.01 A 25.000001,25.000001 0 0 1 325,275 a 25.000001,25.000001 0 0 1 -0.0312,1.24609 25.000001,25.000001 0 0 1 -0.0898,1.20313 c -0.001,0.011 -8.6e-4,0.0222 -0.002,0.0332 a 25.000001,25.000001 0 0 1 -0.004,0.0352 25.000001,25.000001 0 0 1 -0.14063,1.13086 c -0.003,0.0195 -0.005,0.0391 -0.008,0.0586 a 25.000001,25.000001 0 0 1 -0.006,0.0274 25.000001,25.000001 0 0 1 -0.19336,1.11132 c -0.009,0.0456 -0.0181,0.0912 -0.0273,0.13672 a 25.000001,25.000001 0 0 1 -0.006,0.0293 25.000001,25.000001 0 0 1 -0.24024,1.05664 c -0.004,0.0169 -0.007,0.0339 -0.0117,0.0508 a 25.000001,25.000001 0 0 1 -0.01,0.0371 25.000001,25.000001 0 0 1 -0.30078,1.07422 c -0.0124,0.041 -0.0245,0.0821 -0.0371,0.12305 a 25.000001,25.000001 0 0 1 -0.35938,1.08398 c -0.003,0.009 -0.006,0.0182 -0.01,0.0273 a 25.000001,25.000001 0 0 1 -0.0117,0.0293 25.000001,25.000001 0 0 1 -0.41406,1.06836 c -0.0138,0.0334 -0.029,0.0663 -0.043,0.0996 a 25.000001,25.000001 0 0 1 -0.46289,1.04297 c -0.003,0.007 -0.006,0.0144 -0.01,0.0215 a 25.000001,25.000001 0 0 1 -0.0117,0.0234 25.000001,25.000001 0 0 1 -0.5332,1.05664 c -0.002,0.005 -0.005,0.009 -0.008,0.0137 a 25.000001,25.000001 0 0 1 -0.0117,0.0215 25.000001,25.000001 0 0 1 -0.58008,1.01953 c -0.005,0.008 -0.009,0.0171 -0.0137,0.0254 a 25.000001,25.000001 0 0 1 -0.0234,0.0371 25.000001,25.000001 0 0 1 -0.63672,1 25.000001,25.000001 0 0 1 -0.69726,0.98828 c -0.004,0.006 -0.009,0.0116 -0.0137,0.0176 a 25.000001,25.000001 0 0 1 -0.75,0.95703 c -0.004,0.005 -0.008,0.0106 -0.0117,0.0156 a 25.000001,25.000001 0 0 1 -0.01,0.0117 25.000001,25.000001 0 0 1 -0.80273,0.92383 25.000001,25.000001 0 0 1 -0.0176,0.0195 25.000001,25.000001 0 0 1 -0.83789,0.875 c -0.002,0.002 -0.004,0.004 -0.006,0.006 l 0.0254,0.0195 200.11914,-200.119138 -0.0273,-0.01758 A 25.000001,25.000001 0 0 0 525,75 25.000001,25.000001 0 0 0 500,50 h -0.16797 -189.43164 z"
transform="scale(0.26458333)" />
<rect
style="fill:#333333;stroke-width:6.12373"
id="rect5176"
width="79.375"
height="13.229167"
x="0"
y="66.145836" />
<circle
style="fill:#1a1a1a;stroke-width:5"
id="path5178"
cx="79.375"
cy="72.760422"
r="6.6145835" />
<path
id="path5237"
style="fill:#4d4d4d;stroke-width:33.2941"
d="m 521.59375,62.40625 -200,200 a 25.000001,25.000001 0 0 1 0.33984,0.59961 25.000001,25.000001 0 0 1 0.79102,1.57617 25.000001,25.000001 0 0 1 0.67969,1.63086 25.000001,25.000001 0 0 1 0.56054,1.66992 c 0.001,0.004 0.003,0.008 0.004,0.0117 a 25.000001,25.000001 0 0 1 0.004,0.0156 25.000001,25.000001 0 0 1 0.43359,1.67968 c 0.002,0.01 0.006,0.0194 0.008,0.0293 a 25.000001,25.000001 0 0 1 0.004,0.0254 25.000001,25.000001 0 0 1 0.30469,1.65039 c 0.008,0.0528 0.0159,0.10538 0.0234,0.1582 a 25.000001,25.000001 0 0 1 0.18555,1.69922 c 6.3e-4,0.009 10e-4,0.0169 0.002,0.0254 a 25.000001,25.000001 0 0 1 0,0.01 A 25.000001,25.000001 0 0 1 325,275 a 25.000001,25.000001 0 0 1 -0.0312,1.24609 25.000001,25.000001 0 0 1 -0.0898,1.20313 c -0.001,0.011 -8.6e-4,0.0222 -0.002,0.0332 a 25.000001,25.000001 0 0 1 -0.004,0.0352 25.000001,25.000001 0 0 1 -0.14063,1.13086 c -0.003,0.0195 -0.005,0.0391 -0.008,0.0586 a 25.000001,25.000001 0 0 1 -0.006,0.0274 25.000001,25.000001 0 0 1 -0.19336,1.11132 c -0.009,0.0456 -0.0181,0.0912 -0.0273,0.13672 a 25.000001,25.000001 0 0 1 -0.006,0.0293 25.000001,25.000001 0 0 1 -0.24024,1.05664 c -0.004,0.0169 -0.007,0.0339 -0.0117,0.0508 a 25.000001,25.000001 0 0 1 -0.01,0.0371 25.000001,25.000001 0 0 1 -0.30078,1.07422 c -0.0124,0.041 -0.0245,0.0821 -0.0371,0.12305 a 25.000001,25.000001 0 0 1 -0.35938,1.08398 c -0.003,0.009 -0.006,0.0182 -0.01,0.0273 a 25.000001,25.000001 0 0 1 -0.0117,0.0293 25.000001,25.000001 0 0 1 -0.41406,1.06836 c -0.0138,0.0334 -0.029,0.0663 -0.043,0.0996 a 25.000001,25.000001 0 0 1 -0.46289,1.04297 c -0.003,0.007 -0.006,0.0144 -0.01,0.0215 a 25.000001,25.000001 0 0 1 -0.0117,0.0234 25.000001,25.000001 0 0 1 -0.5332,1.05664 c -0.002,0.005 -0.005,0.009 -0.008,0.0137 a 25.000001,25.000001 0 0 1 -0.0117,0.0215 25.000001,25.000001 0 0 1 -0.58008,1.01953 c -0.005,0.008 -0.009,0.0171 -0.0137,0.0254 a 25.000001,25.000001 0 0 1 -0.0234,0.0371 25.000001,25.000001 0 0 1 -0.63672,1 25.000001,25.000001 0 0 1 -0.69726,0.98828 c -0.004,0.006 -0.009,0.0116 -0.0137,0.0176 a 25.000001,25.000001 0 0 1 -0.75,0.95703 c -0.004,0.005 -0.008,0.0106 -0.0117,0.0156 a 25.000001,25.000001 0 0 1 -0.01,0.0117 25.000001,25.000001 0 0 1 -0.80273,0.92383 25.000001,25.000001 0 0 1 -0.0176,0.0195 25.000001,25.000001 0 0 1 -0.83789,0.875 c -0.002,0.002 -0.004,0.004 -0.006,0.006 l 0.0254,0.0195 200.11914,-200.119138 -0.0273,-0.01758 A 25.000001,25.000001 0 0 0 525,75 25.000001,25.000001 0 0 0 521.59375,62.40625 Z"
transform="scale(0.26458333)" />
<circle
r="1.9161609"
cy="72.760422"
cx="79.375"
id="path909"
style="opacity:1;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:2.89687;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
style="display:none;opacity:1"
inkscape:label="spots_0"
id="g901"
inkscape:groupmode="layer">
<path
id="path895"
style="display:inline;opacity:1;fill:#999999;fill-opacity:1;stroke:none;stroke-width:7.17137;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 40.745825,26.458333 2.570235,0 a 0.8767523,0.8767523 67.500011 0 1 0.619957,1.49671 L 20.471102,51.419955 a 5.110084,5.110084 157.50001 0 1 -3.613377,1.496708 l -2.570235,0 a 0.8767523,0.8767523 67.500011 0 1 -0.619957,-1.49671 L 37.132448,27.955041 a 5.110084,5.110084 157.50001 0 1 3.613377,-1.496708 z"
sodipodi:nodetypes="ccccc"
inkscape:path-effect="#path-effect903"
inkscape:original-d="m 38.629158,26.458332 6.803569,2e-6 -26.458335,26.45833 -6.803569,-2e-6 z" />
<path
inkscape:original-d="m 78.316683,26.458332 6.803569,2e-6 -26.458335,26.45833 -6.803569,-2e-6 z"
inkscape:path-effect="#path-effect905"
sodipodi:nodetypes="ccccc"
d="m 80.43335,26.458333 2.570235,0 a 0.8767523,0.8767523 67.500011 0 1 0.619957,1.49671 L 60.158627,51.419955 a 5.110084,5.110084 157.50001 0 1 -3.613377,1.496708 l -2.570235,0 a 0.8767523,0.8767523 67.500011 0 1 -0.619957,-1.49671 L 76.819973,27.955041 a 5.110084,5.110084 157.50001 0 1 3.613377,-1.496708 z"
style="display:inline;opacity:1;fill:#999999;fill-opacity:1;stroke:none;stroke-width:7.17137;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path897" />
<path
inkscape:original-d="m -1.0583606,26.458332 6.8035653,2e-6 -26.4583257,26.45833 -6.803569,-2e-6 z"
inkscape:path-effect="#path-effect907"
sodipodi:nodetypes="ccccc"
d="m 1.0583061,26.458333 2.5702319,0 a 0.87675252,0.87675252 67.500006 0 1 0.6199574,1.49671 L -19.216412,51.419955 a 5.1100827,5.1100827 157.50001 0 1 -3.613376,1.496708 l -2.570235,0 a 0.87675243,0.87675243 67.500008 0 1 -0.619958,-1.49671 L -2.55507,27.955041 a 5.1100832,5.1100832 157.50001 0 1 3.6133761,-1.496708 z"
style="display:inline;opacity:1;fill:#999999;fill-opacity:1;stroke:none;stroke-width:7.17137;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path899" />
<path
id="path1038"
style="display:inline;opacity:1;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-width:7.17137;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 32.097593,66.145835 -5.382455,5.382457 a 0.87675232,0.87675232 67.499994 0 0 0.619958,1.49671 h 2.570383 a 5.1100839,5.1100839 157.49999 0 0 3.613376,-1.49671 l 5.382455,-5.382457 z"
inkscape:path-effect="#path-effect1040"
inkscape:original-d="m 32.097593,66.145835 -6.879164,6.879167 h 6.803717 l 6.879164,-6.879167 z" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="spots_1"
style="display:none;opacity:1">
<path
inkscape:original-d="m 51.858333,26.458332 6.803569,2e-6 -26.458335,26.45833 -6.803569,-2e-6 z"
inkscape:path-effect="#path-effect851"
sodipodi:nodetypes="ccccc"
d="m 53.975,26.458333 2.570235,0 a 0.8767523,0.8767523 67.500011 0 1 0.619957,1.49671 L 33.700277,51.419955 A 5.110084,5.110084 157.50001 0 1 30.0869,52.916663 l -2.570235,0 a 0.8767523,0.8767523 67.500011 0 1 -0.619957,-1.49671 L 50.361623,27.955041 A 5.110084,5.110084 157.50001 0 1 53.975,26.458333 Z"
style="display:inline;opacity:1;fill:#999999;fill-opacity:1;stroke:none;stroke-width:7.17137;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect844" />
<path
id="path854"
style="display:inline;opacity:1;fill:#999999;fill-opacity:1;stroke:none;stroke-width:7.17137;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 93.662525,26.458333 2.570235,0 a 0.8767523,0.8767523 67.500011 0 1 0.619957,1.49671 L 73.387802,51.419955 a 5.110084,5.110084 157.50001 0 1 -3.613377,1.496708 l -2.570235,0 a 0.8767523,0.8767523 67.500011 0 1 -0.619957,-1.49671 L 90.049148,27.955041 a 5.110084,5.110084 157.50001 0 1 3.613377,-1.496708 z"
sodipodi:nodetypes="ccccc"
inkscape:path-effect="#path-effect856"
inkscape:original-d="m 91.545858,26.458332 6.803569,2e-6 -26.458335,26.45833 -6.803569,-2e-6 z" />
<path
id="path877"
style="display:inline;opacity:1;fill:#999999;fill-opacity:1;stroke:none;stroke-width:7.17137;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 14.287475,26.458333 2.570235,0 a 0.87675255,0.87675255 67.500005 0 1 0.619958,1.496711 l -23.4649064,23.46491 a 5.1100826,5.1100826 157.50001 0 1 -3.6133759,1.496709 l -2.5702337,0 a 0.87675258,0.87675258 67.500005 0 1 -0.619958,-1.496711 l 23.464905,-23.46491 a 5.1100824,5.1100824 157.5 0 1 3.613376,-1.496709 z"
sodipodi:nodetypes="ccccc"
inkscape:path-effect="#path-effect879"
inkscape:original-d="m 12.170808,26.458332 6.803569,2e-6 -26.4583246,26.45833 -6.8035674,-2e-6 z" />
<path
inkscape:original-d="m 18.868422,66.145833 -6.879168,6.879168 h 6.803721 l 6.879167,-6.879168 z"
inkscape:path-effect="#path-effect1087"
d="m 18.868422,66.145833 -5.382459,5.382459 a 0.87675205,0.87675205 67.5 0 0 0.619958,1.496709 h 2.570387 a 5.1100849,5.1100849 157.5 0 0 3.613376,-1.496709 l 5.382458,-5.382459 z"
style="display:inline;opacity:1;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-width:7.17137;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path1038-6" />
<path
id="path1089"
style="display:inline;opacity:1;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-width:7.17137;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 58.555947,66.145833 -5.382459,5.382459 a 0.87675205,0.87675205 67.5 0 0 0.619958,1.496709 h 2.570387 a 5.1100849,5.1100849 157.5 0 0 3.613376,-1.496709 l 5.382458,-5.382459 z"
inkscape:path-effect="#path-effect1091"
inkscape:original-d="m 58.555947,66.145833 -6.879168,6.879168 H 58.4805 l 6.879167,-6.879168 z" />
</g>
<g
style="display:inline;opacity:1"
inkscape:label="spots_2"
id="g887"
inkscape:groupmode="layer">
<path
id="path881"
style="display:inline;opacity:1;fill:#999999;fill-opacity:1;stroke:none;stroke-width:7.17137;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 67.204175,26.458333 2.570235,0 a 0.8767523,0.8767523 67.500011 0 1 0.619957,1.49671 L 46.929452,51.419955 a 5.110084,5.110084 157.50001 0 1 -3.613377,1.496708 l -2.570235,0 a 0.8767523,0.8767523 67.500011 0 1 -0.619957,-1.49671 L 63.590798,27.955041 a 5.110084,5.110084 157.50001 0 1 3.613377,-1.496708 z"
sodipodi:nodetypes="ccccc"
inkscape:path-effect="#path-effect889"
inkscape:original-d="m 65.087508,26.458332 6.803569,2e-6 -26.458335,26.45833 -6.803569,-2e-6 z" />
<path
inkscape:original-d="m 104.77506,26.458332 6.8036,2e-6 -26.458393,26.45833 -6.803569,-2e-6 z"
inkscape:path-effect="#path-effect891"
sodipodi:nodetypes="ccccc"
d="m 106.89173,26.458333 2.57026,0 a 0.87675094,0.87675094 67.500043 0 1 0.61996,1.496709 L 86.616978,51.419956 A 5.1100919,5.1100919 157.50004 0 1 83.0036,52.916663 l -2.570235,0 A 0.87675167,0.87675167 67.500026 0 1 79.813408,51.419954 L 103.27835,27.95504 a 5.1100877,5.1100877 157.50003 0 1 3.61338,-1.496707 z"
style="display:inline;opacity:1;fill:#999999;fill-opacity:1;stroke:none;stroke-width:7.17137;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path883" />
<path
inkscape:original-d="m 25.399983,26.458332 6.803569,2e-6 -26.4583323,26.45833 -6.8035648,-2e-6 z"
inkscape:path-effect="#path-effect893"
sodipodi:nodetypes="ccccc"
d="m 27.51665,26.458333 2.570235,0 a 0.87675236,0.87675236 67.50001 0 1 0.619958,1.49671 L 7.2419291,51.419955 A 5.1100836,5.1100836 157.50001 0 1 3.628553,52.916663 l -2.5702314,0 A 0.87675246,0.87675246 67.500007 0 1 0.43836422,51.419953 L 23.903274,27.955041 a 5.1100831,5.1100831 157.50001 0 1 3.613376,-1.496708 z"
style="display:inline;opacity:1;fill:#999999;fill-opacity:1;stroke:none;stroke-width:7.17137;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path885" />
<path
inkscape:original-d="m 5.6392497,66.145833 -6.8791639,6.879168 h 6.8037169 l 6.8791643,-6.879168 z"
inkscape:path-effect="#path-effect1110"
d="m 5.6392497,66.145833 -5.38245497,5.382458 a 0.87675242,0.87675242 67.499991 0 0 0.61995777,1.49671 H 3.447136 a 5.1100835,5.1100835 157.49999 0 0 3.6133757,-1.49671 l 5.3824553,-5.382458 z"
style="display:inline;opacity:1;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-width:7.17137;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path1038-9" />
<path
id="path1112"
style="display:inline;opacity:1;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-width:7.17137;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 45.326772,66.145833 -5.382459,5.382459 a 0.87675205,0.87675205 67.5 0 0 0.619958,1.496709 h 2.570387 a 5.1100849,5.1100849 157.5 0 0 3.613376,-1.496709 l 5.382458,-5.382459 z"
inkscape:path-effect="#path-effect1114"
inkscape:original-d="m 45.326772,66.145833 -6.879168,6.879168 h 6.803721 l 6.879167,-6.879168 z" />
</g>
<g
style="display:none"
inkscape:label="top"
id="layer2"
inkscape:groupmode="layer">
<rect
ry="1.5505854e-06"
y="52.916668"
x="77.957588"
height="52.916668"
width="2.8348303"
id="rect915"
style="display:inline;opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:4.1404;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
transform="scale(0.26458333)"
d="m 494.64258,0 -200,200 v 15.15234 L 502.21875,7.5761719 Z"
style="display:inline;opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:20.6717;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect915-92" />
<path
id="path970"
style="display:inline;opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:5.46939;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 130.87418,7.4083337 77.957515,60.325004 V 64.33406 L 132.87871,9.4128626 Z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

View File

@@ -0,0 +1,541 @@
<?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"
inkscape:export-ydpi="288"
inkscape:export-xdpi="288"
inkscape:export-filename="D:\coding\java\what-a-storage\src\main\resources\assets\textures\conveyor_in_0.png"
width="550"
height="400"
viewBox="0 0 145.52083 105.83334"
version="1.1"
id="svg4608"
sodipodi:docname="conveyor_in_bordered.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)">
<defs
id="defs4602">
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1114"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,0,1,0,0,0,1"
unit="px"
method="auto"
mode="F"
radius="8"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="true"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="8"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect1110"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1091"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,0,1,0,0,0,1"
unit="px"
method="auto"
mode="F"
radius="8"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="true"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="8"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect1087"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="8"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect1068"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1040"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,1,1,0,2.1166667,0,1 @ F,0,0,1,0,0,0,1"
unit="px"
method="auto"
mode="F"
radius="8"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="true"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="true"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="24"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,1,1,0,6.35,0,1 @ F,0,1,1,0,6.35,0,1 @ F,0,0,1,0,0,0,1"
lpeversion="1"
is_visible="true"
id="path-effect1017"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect995"
is_visible="false"
lpeversion="1"
satellites_param="F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1"
unit="px"
method="auto"
mode="F"
radius="8"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="8"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1"
lpeversion="1"
is_visible="true"
id="path-effect907"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="8"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1"
lpeversion="1"
is_visible="true"
id="path-effect905"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect903"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1"
unit="px"
method="auto"
mode="F"
radius="8"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="8"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1"
lpeversion="1"
is_visible="true"
id="path-effect893"
effect="fillet_chamfer" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="8"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1"
lpeversion="1"
is_visible="true"
id="path-effect891"
effect="fillet_chamfer" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect889"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1"
unit="px"
method="auto"
mode="F"
radius="8"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect879"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1"
unit="px"
method="auto"
mode="F"
radius="8"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect856"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1"
unit="px"
method="auto"
mode="F"
radius="8"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false" />
<inkscape:path-effect
hide_knots="false"
only_selected="false"
apply_with_radius="true"
apply_no_radius="true"
use_knot_distance="true"
flexible="false"
chamfer_steps="1"
radius="8"
mode="F"
method="auto"
unit="px"
satellites_param="F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1 @ F,0,0,1,0,2.1166667,0,1"
lpeversion="1"
is_visible="true"
id="path-effect851"
effect="fillet_chamfer" />
</defs>
<sodipodi:namedview
inkscape:snap-nodes="false"
inkscape:object-paths="false"
inkscape:bbox-nodes="false"
inkscape:snap-global="true"
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2"
inkscape:cx="304.41145"
inkscape:cy="201.07038"
inkscape:document-units="mm"
inkscape:current-layer="g887"
inkscape:document-rotation="0"
showgrid="true"
units="px"
showguides="true"
inkscape:snap-grids="true"
inkscape:snap-bbox="true"
inkscape:snap-bbox-edge-midpoints="false"
inkscape:snap-midpoints="false"
inkscape:snap-others="false"
inkscape:snap-bbox-midpoints="false"
inkscape:bbox-paths="true"
inkscape:snap-intersection-paths="false"
inkscape:window-width="1920"
inkscape:window-height="1010"
inkscape:window-x="-7"
inkscape:window-y="-7"
inkscape:window-maximized="1">
<inkscape:grid
type="xygrid"
id="grid5171"
spacingx="13.229167"
spacingy="13.229167"
empspacing="2" />
</sodipodi:namedview>
<metadata
id="metadata4605">
<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="base"
inkscape:groupmode="layer"
id="layer1"
style="display:inline">
<rect
style="display:inline;opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:#000000;stroke-width:0.26458333;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect915-9"
width="2.8348303"
height="52.916706"
x="130.87419"
y="-3.8059552e-05"
ry="1.5505864e-06" />
<path
id="rect5195"
style="fill:#666666;stroke-width:1.00000001;stroke:#000000;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="M 0,50 V 250 H 299.83203 300 a 25.000001,25.000001 0 0 1 10.40039,2.26758 25.000001,25.000001 0 0 1 1.62891,0.81836 25.000001,25.000001 0 0 1 1.55273,0.92578 25.000001,25.000001 0 0 1 1.46875,1.02734 25.000001,25.000001 0 0 1 1.35742,1.10156 c 0.008,0.007 0.0174,0.0125 0.0254,0.0195 a 25.000001,25.000001 0 0 1 0.0195,0.0176 25.000001,25.000001 0 0 1 1.27149,1.19141 c 0.001,0.001 0.003,0.003 0.004,0.004 a 25.000001,25.000001 0 0 1 0.002,0.004 25.000001,25.000001 0 0 1 1.19726,1.29297 25.000001,25.000001 0 0 1 1.10352,1.375 25.000001,25.000001 0 0 1 1.00391,1.44727 25.000001,25.000001 0 0 1 0.89843,1.51367 25.000001,25.000001 0 0 1 0.79102,1.57617 25.000001,25.000001 0 0 1 0.67969,1.63086 25.000001,25.000001 0 0 1 0.56054,1.66992 c 10e-4,0.004 0.003,0.008 0.004,0.0117 a 25.000001,25.000001 0 0 1 0.004,0.0156 25.000001,25.000001 0 0 1 0.43359,1.67968 c 0.002,0.01 0.006,0.0194 0.008,0.0293 a 25.000001,25.000001 0 0 1 0.004,0.0254 25.000001,25.000001 0 0 1 0.30469,1.65039 c 0.008,0.0528 0.0159,0.10537 0.0234,0.1582 a 25.000001,25.000001 0 0 1 0.18555,1.69922 c 6.3e-4,0.009 0.001,0.0169 0.002,0.0254 a 25.000001,25.000001 0 0 1 0,0.01 A 25.000001,25.000001 0 0 1 325,275 a 25.000001,25.000001 0 0 1 -0.0312,1.24609 25.000001,25.000001 0 0 1 -0.0898,1.20313 c -0.001,0.011 -8.6e-4,0.0222 -0.002,0.0332 a 25.000001,25.000001 0 0 1 -0.004,0.0352 25.000001,25.000001 0 0 1 -0.14063,1.13086 c -0.003,0.0195 -0.005,0.0391 -0.008,0.0586 a 25.000001,25.000001 0 0 1 -0.006,0.0274 25.000001,25.000001 0 0 1 -0.19336,1.11132 c -0.009,0.0456 -0.0181,0.0912 -0.0273,0.13672 a 25.000001,25.000001 0 0 1 -0.006,0.0293 25.000001,25.000001 0 0 1 -0.24024,1.05664 c -0.004,0.0169 -0.007,0.0339 -0.0117,0.0508 a 25.000001,25.000001 0 0 1 -0.01,0.0371 25.000001,25.000001 0 0 1 -0.30078,1.07422 c -0.0124,0.041 -0.0245,0.0821 -0.0371,0.12305 a 25.000001,25.000001 0 0 1 -0.35938,1.08398 c -0.003,0.009 -0.006,0.0182 -0.01,0.0273 a 25.000001,25.000001 0 0 1 -0.0117,0.0293 25.000001,25.000001 0 0 1 -0.41406,1.06836 c -0.0138,0.0334 -0.029,0.0663 -0.043,0.0996 a 25.000001,25.000001 0 0 1 -0.46289,1.04297 c -0.003,0.007 -0.006,0.0144 -0.01,0.0215 a 25.000001,25.000001 0 0 1 -0.0117,0.0234 25.000001,25.000001 0 0 1 -0.5332,1.05664 c -0.002,0.005 -0.005,0.009 -0.008,0.0137 a 25.000001,25.000001 0 0 1 -0.0117,0.0215 25.000001,25.000001 0 0 1 -0.58008,1.01953 c -0.005,0.008 -0.009,0.0171 -0.0137,0.0254 a 25.000001,25.000001 0 0 1 -0.0234,0.0371 25.000001,25.000001 0 0 1 -0.63672,1 25.000001,25.000001 0 0 1 -0.69726,0.98828 c -0.004,0.006 -0.009,0.0116 -0.0137,0.0176 a 25.000001,25.000001 0 0 1 -0.75,0.95703 c -0.004,0.005 -0.008,0.0106 -0.0117,0.0156 a 25.000001,25.000001 0 0 1 -0.01,0.0117 25.000001,25.000001 0 0 1 -0.80273,0.92383 25.000001,25.000001 0 0 1 -0.0176,0.0195 25.000001,25.000001 0 0 1 -0.83789,0.875 c -0.002,0.002 -0.004,0.004 -0.006,0.006 l 0.0254,0.0195 200.11914,-200.119138 -0.0273,-0.01758 A 25.000001,25.000001 0 0 0 525,75 25.000001,25.000001 0 0 0 500,50 h -0.16797 -189.43164 z"
transform="scale(0.26458333)" />
<rect
style="fill:#333333;stroke-width:0.26458333;stroke:#000000;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
id="rect5176"
width="79.375"
height="13.229167"
x="0"
y="66.145836" />
<circle
style="fill:#1a1a1a;stroke-width:0.26458333;stroke:#000000;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
id="path5178"
cx="79.375"
cy="72.760422"
r="6.6145835" />
<path
id="path5237"
style="fill:#4d4d4d;stroke-width:1.00000001;stroke:#000000;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
d="m 521.59375,62.40625 -200,200 a 25.000001,25.000001 0 0 1 0.33984,0.59961 25.000001,25.000001 0 0 1 0.79102,1.57617 25.000001,25.000001 0 0 1 0.67969,1.63086 25.000001,25.000001 0 0 1 0.56054,1.66992 c 0.001,0.004 0.003,0.008 0.004,0.0117 a 25.000001,25.000001 0 0 1 0.004,0.0156 25.000001,25.000001 0 0 1 0.43359,1.67968 c 0.002,0.01 0.006,0.0194 0.008,0.0293 a 25.000001,25.000001 0 0 1 0.004,0.0254 25.000001,25.000001 0 0 1 0.30469,1.65039 c 0.008,0.0528 0.0159,0.10538 0.0234,0.1582 a 25.000001,25.000001 0 0 1 0.18555,1.69922 c 6.3e-4,0.009 10e-4,0.0169 0.002,0.0254 a 25.000001,25.000001 0 0 1 0,0.01 A 25.000001,25.000001 0 0 1 325,275 a 25.000001,25.000001 0 0 1 -0.0312,1.24609 25.000001,25.000001 0 0 1 -0.0898,1.20313 c -0.001,0.011 -8.6e-4,0.0222 -0.002,0.0332 a 25.000001,25.000001 0 0 1 -0.004,0.0352 25.000001,25.000001 0 0 1 -0.14063,1.13086 c -0.003,0.0195 -0.005,0.0391 -0.008,0.0586 a 25.000001,25.000001 0 0 1 -0.006,0.0274 25.000001,25.000001 0 0 1 -0.19336,1.11132 c -0.009,0.0456 -0.0181,0.0912 -0.0273,0.13672 a 25.000001,25.000001 0 0 1 -0.006,0.0293 25.000001,25.000001 0 0 1 -0.24024,1.05664 c -0.004,0.0169 -0.007,0.0339 -0.0117,0.0508 a 25.000001,25.000001 0 0 1 -0.01,0.0371 25.000001,25.000001 0 0 1 -0.30078,1.07422 c -0.0124,0.041 -0.0245,0.0821 -0.0371,0.12305 a 25.000001,25.000001 0 0 1 -0.35938,1.08398 c -0.003,0.009 -0.006,0.0182 -0.01,0.0273 a 25.000001,25.000001 0 0 1 -0.0117,0.0293 25.000001,25.000001 0 0 1 -0.41406,1.06836 c -0.0138,0.0334 -0.029,0.0663 -0.043,0.0996 a 25.000001,25.000001 0 0 1 -0.46289,1.04297 c -0.003,0.007 -0.006,0.0144 -0.01,0.0215 a 25.000001,25.000001 0 0 1 -0.0117,0.0234 25.000001,25.000001 0 0 1 -0.5332,1.05664 c -0.002,0.005 -0.005,0.009 -0.008,0.0137 a 25.000001,25.000001 0 0 1 -0.0117,0.0215 25.000001,25.000001 0 0 1 -0.58008,1.01953 c -0.005,0.008 -0.009,0.0171 -0.0137,0.0254 a 25.000001,25.000001 0 0 1 -0.0234,0.0371 25.000001,25.000001 0 0 1 -0.63672,1 25.000001,25.000001 0 0 1 -0.69726,0.98828 c -0.004,0.006 -0.009,0.0116 -0.0137,0.0176 a 25.000001,25.000001 0 0 1 -0.75,0.95703 c -0.004,0.005 -0.008,0.0106 -0.0117,0.0156 a 25.000001,25.000001 0 0 1 -0.01,0.0117 25.000001,25.000001 0 0 1 -0.80273,0.92383 25.000001,25.000001 0 0 1 -0.0176,0.0195 25.000001,25.000001 0 0 1 -0.83789,0.875 c -0.002,0.002 -0.004,0.004 -0.006,0.006 l 0.0254,0.0195 200.11914,-200.119138 -0.0273,-0.01758 A 25.000001,25.000001 0 0 0 525,75 25.000001,25.000001 0 0 0 521.59375,62.40625 Z"
transform="scale(0.26458333)" />
<circle
r="1.9161609"
cy="72.760422"
cx="79.375"
id="path909"
style="opacity:1;fill:#4d4d4d;fill-opacity:1;stroke:#000000;stroke-width:0.26458333;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
style="display:inline;opacity:1"
inkscape:label="spots_0"
id="g901"
inkscape:groupmode="layer">
<path
id="path895"
style="display:inline;opacity:1;fill:#999999;fill-opacity:1;stroke:#000000;stroke-width:0.264583;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 40.745825,26.458333 2.570235,0 a 0.8767523,0.8767523 67.500011 0 1 0.619957,1.49671 L 20.471102,51.419955 a 5.110084,5.110084 157.50001 0 1 -3.613377,1.496708 l -2.570235,0 a 0.8767523,0.8767523 67.500011 0 1 -0.619957,-1.49671 L 37.132448,27.955041 a 5.110084,5.110084 157.50001 0 1 3.613377,-1.496708 z"
sodipodi:nodetypes="ccccc"
inkscape:path-effect="#path-effect903"
inkscape:original-d="m 38.629158,26.458332 6.803569,2e-6 -26.458335,26.45833 -6.803569,-2e-6 z" />
<path
inkscape:original-d="m 78.316683,26.458332 6.803569,2e-6 -26.458335,26.45833 -6.803569,-2e-6 z"
inkscape:path-effect="#path-effect905"
sodipodi:nodetypes="ccccc"
d="m 80.43335,26.458333 2.570235,0 a 0.8767523,0.8767523 67.500011 0 1 0.619957,1.49671 L 60.158627,51.419955 a 5.110084,5.110084 157.50001 0 1 -3.613377,1.496708 l -2.570235,0 a 0.8767523,0.8767523 67.500011 0 1 -0.619957,-1.49671 L 76.819973,27.955041 a 5.110084,5.110084 157.50001 0 1 3.613377,-1.496708 z"
style="display:inline;opacity:1;fill:#999999;fill-opacity:1;stroke:#000000;stroke-width:0.264583;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path897" />
<path
inkscape:original-d="m -1.0583606,26.458332 6.8035653,2e-6 -26.4583257,26.45833 -6.803569,-2e-6 z"
inkscape:path-effect="#path-effect907"
sodipodi:nodetypes="ccccc"
d="m 1.0583061,26.458333 2.5702319,0 a 0.87675252,0.87675252 67.500006 0 1 0.6199574,1.49671 L -19.216412,51.419955 a 5.1100827,5.1100827 157.50001 0 1 -3.613376,1.496708 l -2.570235,0 a 0.87675243,0.87675243 67.500008 0 1 -0.619958,-1.49671 L -2.55507,27.955041 a 5.1100832,5.1100832 157.50001 0 1 3.6133761,-1.496708 z"
style="display:inline;opacity:1;fill:#999999;fill-opacity:1;stroke:#000000;stroke-width:0.264583;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path899" />
<path
id="path1038"
style="display:inline;opacity:1;fill:#1a1a1a;fill-opacity:1;stroke:#000000;stroke-width:0.264583;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 32.097593,66.145835 -5.382455,5.382457 a 0.87675232,0.87675232 67.499994 0 0 0.619958,1.49671 h 2.570383 a 5.1100839,5.1100839 157.49999 0 0 3.613376,-1.49671 l 5.382455,-5.382457 z"
inkscape:path-effect="#path-effect1040"
inkscape:original-d="m 32.097593,66.145835 -6.879164,6.879167 h 6.803717 l 6.879164,-6.879167 z" />
</g>
<g
inkscape:groupmode="layer"
id="layer5"
inkscape:label="spots_1"
style="display:none;opacity:1">
<path
inkscape:original-d="m 51.858333,26.458332 6.803569,2e-6 -26.458335,26.45833 -6.803569,-2e-6 z"
inkscape:path-effect="#path-effect851"
sodipodi:nodetypes="ccccc"
d="m 53.975,26.458333 2.570235,0 a 0.8767523,0.8767523 67.500011 0 1 0.619957,1.49671 L 33.700277,51.419955 A 5.110084,5.110084 157.50001 0 1 30.0869,52.916663 l -2.570235,0 a 0.8767523,0.8767523 67.500011 0 1 -0.619957,-1.49671 L 50.361623,27.955041 A 5.110084,5.110084 157.50001 0 1 53.975,26.458333 Z"
style="display:inline;opacity:1;fill:#999999;fill-opacity:1;stroke:#000000;stroke-width:0.264583;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect844" />
<path
id="path854"
style="display:inline;opacity:1;fill:#999999;fill-opacity:1;stroke:#000000;stroke-width:0.264583;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 93.662525,26.458333 2.570235,0 a 0.8767523,0.8767523 67.500011 0 1 0.619957,1.49671 L 73.387802,51.419955 a 5.110084,5.110084 157.50001 0 1 -3.613377,1.496708 l -2.570235,0 a 0.8767523,0.8767523 67.500011 0 1 -0.619957,-1.49671 L 90.049148,27.955041 a 5.110084,5.110084 157.50001 0 1 3.613377,-1.496708 z"
sodipodi:nodetypes="ccccc"
inkscape:path-effect="#path-effect856"
inkscape:original-d="m 91.545858,26.458332 6.803569,2e-6 -26.458335,26.45833 -6.803569,-2e-6 z" />
<path
id="path877"
style="display:inline;opacity:1;fill:#999999;fill-opacity:1;stroke:#000000;stroke-width:0.264583;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 14.287475,26.458333 2.570235,0 a 0.87675255,0.87675255 67.500005 0 1 0.619958,1.496711 l -23.4649064,23.46491 a 5.1100826,5.1100826 157.50001 0 1 -3.6133759,1.496709 l -2.5702337,0 a 0.87675258,0.87675258 67.500005 0 1 -0.619958,-1.496711 l 23.464905,-23.46491 a 5.1100824,5.1100824 157.5 0 1 3.613376,-1.496709 z"
sodipodi:nodetypes="ccccc"
inkscape:path-effect="#path-effect879"
inkscape:original-d="m 12.170808,26.458332 6.803569,2e-6 -26.4583246,26.45833 -6.8035674,-2e-6 z" />
<path
inkscape:original-d="m 18.868422,66.145833 -6.879168,6.879168 h 6.803721 l 6.879167,-6.879168 z"
inkscape:path-effect="#path-effect1087"
d="m 18.868422,66.145833 -5.382459,5.382459 a 0.87675205,0.87675205 67.5 0 0 0.619958,1.496709 h 2.570387 a 5.1100849,5.1100849 157.5 0 0 3.613376,-1.496709 l 5.382458,-5.382459 z"
style="display:inline;opacity:1;fill:#1a1a1a;fill-opacity:1;stroke:#000000;stroke-width:0.264583;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path1038-6" />
<path
id="path1089"
style="display:inline;opacity:1;fill:#1a1a1a;fill-opacity:1;stroke:#000000;stroke-width:0.264583;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 58.555947,66.145833 -5.382459,5.382459 a 0.87675205,0.87675205 67.5 0 0 0.619958,1.496709 h 2.570387 a 5.1100849,5.1100849 157.5 0 0 3.613376,-1.496709 l 5.382458,-5.382459 z"
inkscape:path-effect="#path-effect1091"
inkscape:original-d="m 58.555947,66.145833 -6.879168,6.879168 H 58.4805 l 6.879167,-6.879168 z" />
</g>
<g
style="display:none;opacity:1"
inkscape:label="spots_2"
id="g887"
inkscape:groupmode="layer">
<path
id="path881"
style="display:inline;opacity:1;fill:#999999;fill-opacity:1;stroke:#000000;stroke-width:0.264583;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 67.204175,26.458333 2.570235,0 a 0.8767523,0.8767523 67.500011 0 1 0.619957,1.49671 L 46.929452,51.419955 a 5.110084,5.110084 157.50001 0 1 -3.613377,1.496708 l -2.570235,0 a 0.8767523,0.8767523 67.500011 0 1 -0.619957,-1.49671 L 63.590798,27.955041 a 5.110084,5.110084 157.50001 0 1 3.613377,-1.496708 z"
sodipodi:nodetypes="ccccc"
inkscape:path-effect="#path-effect889"
inkscape:original-d="m 65.087508,26.458332 6.803569,2e-6 -26.458335,26.45833 -6.803569,-2e-6 z" />
<path
inkscape:original-d="m 104.77506,26.458332 6.8036,2e-6 -26.458393,26.45833 -6.803569,-2e-6 z"
inkscape:path-effect="#path-effect891"
sodipodi:nodetypes="ccccc"
d="m 106.89173,26.458333 2.57026,0 a 0.87675094,0.87675094 67.500043 0 1 0.61996,1.496709 L 86.616978,51.419956 A 5.1100919,5.1100919 157.50004 0 1 83.0036,52.916663 l -2.570235,0 A 0.87675167,0.87675167 67.500026 0 1 79.813408,51.419954 L 103.27835,27.95504 a 5.1100877,5.1100877 157.50003 0 1 3.61338,-1.496707 z"
style="display:inline;opacity:1;fill:#999999;fill-opacity:1;stroke:#000000;stroke-width:0.264583;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path883" />
<path
inkscape:original-d="m 25.399983,26.458332 6.803569,2e-6 -26.4583323,26.45833 -6.8035648,-2e-6 z"
inkscape:path-effect="#path-effect893"
sodipodi:nodetypes="ccccc"
d="m 27.51665,26.458333 2.570235,0 a 0.87675236,0.87675236 67.50001 0 1 0.619958,1.49671 L 7.2419291,51.419955 A 5.1100836,5.1100836 157.50001 0 1 3.628553,52.916663 l -2.5702314,0 A 0.87675246,0.87675246 67.500007 0 1 0.43836422,51.419953 L 23.903274,27.955041 a 5.1100831,5.1100831 157.50001 0 1 3.613376,-1.496708 z"
style="display:inline;opacity:1;fill:#999999;fill-opacity:1;stroke:#000000;stroke-width:0.264583;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path885" />
<path
inkscape:original-d="m 5.6392497,66.145833 -6.8791639,6.879168 h 6.8037169 l 6.8791643,-6.879168 z"
inkscape:path-effect="#path-effect1110"
d="m 5.6392497,66.145833 -5.38245497,5.382458 a 0.87675242,0.87675242 67.499991 0 0 0.61995777,1.49671 H 3.447136 a 5.1100835,5.1100835 157.49999 0 0 3.6133757,-1.49671 l 5.3824553,-5.382458 z"
style="display:inline;opacity:1;fill:#1a1a1a;fill-opacity:1;stroke:#000000;stroke-width:0.264583;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path1038-9" />
<path
id="path1112"
style="display:inline;opacity:1;fill:#1a1a1a;fill-opacity:1;stroke:#000000;stroke-width:0.264583;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 45.326772,66.145833 -5.382459,5.382459 a 0.87675205,0.87675205 67.5 0 0 0.619958,1.496709 h 2.570387 a 5.1100849,5.1100849 157.5 0 0 3.613376,-1.496709 l 5.382458,-5.382459 z"
inkscape:path-effect="#path-effect1114"
inkscape:original-d="m 45.326772,66.145833 -6.879168,6.879168 h 6.803721 l 6.879167,-6.879168 z" />
</g>
<g
style="display:none"
inkscape:label="top"
id="layer2"
inkscape:groupmode="layer">
<rect
ry="1.5505854e-06"
y="52.916668"
x="77.957588"
height="52.916668"
width="2.8348303"
id="rect915"
style="display:inline;opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:4.1404;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
<path
transform="scale(0.26458333)"
d="m 494.64258,0 -200,200 v 15.15234 L 502.21875,7.5761719 Z"
style="display:inline;opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:20.6717;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect915-92" />
<path
id="path970"
style="display:inline;opacity:1;fill:#b3b3b3;fill-opacity:1;stroke:none;stroke-width:5.46939;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 130.87418,7.4083337 77.957515,60.325004 V 64.33406 L 132.87871,9.4128626 Z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 28 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

View File

Before

Width:  |  Height:  |  Size: 342 B

After

Width:  |  Height:  |  Size: 342 B