[minecraft-installer] 01/02: Import Upstream version 0.1
Carlos Donizete Froes
coringao-guest at moszumanska.debian.org
Sun Jun 4 15:42:07 UTC 2017
This is an automated email from the git hooks/post-receive script.
coringao-guest pushed a commit to branch master
in repository minecraft-installer.
commit 2032d585489f89d02e98f7a79185cea46499c135
Author: Carlos Donizete Froes <coringao at riseup.net>
Date: Sun Jun 4 12:40:40 2017 -0300
Import Upstream version 0.1
---
CHANGELOG | 7 +
LICENSE | 25 +
Makefile | 44 ++
README.md | 62 ++
data/minecraft-installer.6 | 86 +++
data/minecraft-installer.desktop | 9 +
data/minecraft-installer.png | Bin 0 -> 9665 bytes
data/minecraft-installer.sh | 25 +
data/minecraft-installer.svg | 1314 ++++++++++++++++++++++++++++++++++++++
9 files changed, 1572 insertions(+)
diff --git a/CHANGELOG b/CHANGELOG
new file mode 100644
index 0000000..aac8149
--- /dev/null
+++ b/CHANGELOG
@@ -0,0 +1,7 @@
+changelog version: 0.1
+ - Initial version created by the developer.
+ - Adding the official icon in PNG and SVG format.
+ - Script that start the game.
+ - Created manpage with the game commands.
+ - All information is in the hidden directory (.minecraft) in
+ your users directory.
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..8e2b6e4
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,25 @@
+BSD 2-Clause License
+
+Copyright (c) 2017, Carlos Donizete Froes
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions are met:
+
+* Redistributions of source code must retain the above copyright notice, this
+ list of conditions and the following disclaimer.
+
+* Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..d3ba4fe
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,44 @@
+PACKAGE = Minecraft Installer
+EXE = minecraft-installer
+
+DATADIR = data
+PREFIX = $(DESTDIR)/usr
+GAMEDIR = $(PREFIX)/games
+STARTUP = $(GAMEDIR)/$(EXE)
+ICNDIR = $(PREFIX)/share/pixmaps
+APPDIR = $(PREFIX)/share/applications
+
+SCRIPT = minecraft-installer.sh
+ICON = minecraft-installer.png
+DESKTOP = minecraft-installer.desktop
+
+CP = cp -r
+RM = rm -rf
+MD = mkdir -p
+ECHO = echo
+CHMOD = chmod 755 -R
+
+all:
+ @$(CP) "$(DATADIR)/$(SCRIPT)" "$(EXE)"
+ @$(CHMOD) "$(EXE)"
+ @$(ECHO) "Compilation completed"
+
+clean:
+ rm -rf minecraft-installer
+ rm -rf $(HOME)/.minecraft
+
+install: all
+ @$(MD) "$(GAMEDIR)"
+ @$(CP) "$(EXE)" "$(GAMEDIR)"
+ @$(MD) "$(ICNDIR)"
+ @$(CP) "$(DATADIR)/$(ICON)" "$(ICNDIR)"
+ @$(MD) "$(APPDIR)"
+ @$(CP) "$(DATADIR)/$(DESKTOP)" "$(APPDIR)"
+
+uninstall:
+ @$(RM) "$(EXE)"
+ @$(RM) "$(STARTUP)"
+ @$(RM) "$(ICNDIR)/$(ICON)" "$(APPDIR)/$(DESKTOP)"
+ @$(ECHO) "Successfully removed"
+
+.PHONY: all clean install uninstall
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..c48da98
--- /dev/null
+++ b/README.md
@@ -0,0 +1,62 @@
+# Minecraft Installer
+
+
+
+Game installer where it will be downloaded from the official Minecraft website.
+
+**Important observation:**
+
+This work does **"NOT"** contain the Minecraft itself as that would breach
+copyright laws and the wishes of authors of Minecraft/Mojang or Microsoft.
+
+Script (executable):
+--------------------
+
+This script provide you with a simple and easy way to play Minecraft
+on GNU/Linux.
+
+You can work on all GNU/Linux distributions, the script is sufficient
+to release the JVM with the game client minecraft to play regularly.
+
+Dependencies:
+-------------
+
+To use the script, you will need to have the installed OpenJDK.
+
+ **Debian/Ubuntu (example):**
+
+ # apt install make default-jre
+
+When all these dependencies have installed, simply run the script.
+
+Next you need to compile this release.
+
+ **Make Install:**
+
+ # make install
+
+ **Make Uninstall:**
+
+ # make uninstall
+
+ * **All information downloaded will be in a single directory hidden (.minecraft) in your own user directory.**
+
+### Game description:
+
+Minecraft is game about placing blocks to build anything you can imagine.
+
+At first, people built structures to protect against nocturnal monsters,
+but as the game grew players worked together to create wonderful,
+imaginative things.
+
+### Credits:
+
+ * **Game design, programming, graphics:** Markus Persson ("Notch")
+ * **Music and sounds:** Daniel Rosenfeld ("C418")
+ * **Ingame artwork:** Kristoffer Zetterstrand
+
+-----
+
+Need more information or contact with authors:
+
+- © 2017 Project created by Carlos Donizete Froes [a.k.a coringao]
diff --git a/data/minecraft-installer.6 b/data/minecraft-installer.6
new file mode 100644
index 0000000..c43ce76
--- /dev/null
+++ b/data/minecraft-installer.6
@@ -0,0 +1,86 @@
+.TH minecraft-installer "6" "May 2017" "MINECRAFT INSTALLER" "Unofficial way to easily install Minecraft game"
+.SH NAME
+minecraft-installer \- is game installer where will be downloaded from the official Minecraft website.
+.PP
+.B *This work does "NOT" contain the game itself as that would breach copyright laws and the wishes of authors.
+.br
+.SH SYNOPSIS
+.B minecraft-installer
+.RI [ description ]
+.RI [ directory ]
+.RI [ keyboard ]
+.RI [ author ]
+.br
+.SH DESCRIPTION
+.br
+Minecraft is game about placing blocks to build anything you can imagine.
+.br
+At first, people built structures to protect against nocturnal monsters, but as the game grew players worked together to create wonderful, imaginative things.
+.br
+.SH DIRECTORY
+.br
+After the installation of the game, all the information will be in the directory hidden (.minecraft) in its own user directory.
+.br
+.SH KEYBOARD
+.br
+.B Keyboard - Short Keys
+.br
+=====================
+.br
+Default Controls in Minecraft:
+.PP
+.B KEY ACTION
+.br
+ -------------------------------
+.br
+ ESC: Pause
+.br
+ W: Forward
+.br
+ S: Back
+.br
+ A: Left
+.br
+ D: Right
+.br
+ MOUSE: Look
+.br
+ SPACE: Jump
+.br
+ Left mouse button: Attack
+.br
+ Right mouse button: Use Item
+.br
+ Q: Drop
+.br
+ Left Shift: Sneak
+.br
+ E: Inventory
+.br
+ T: Chat
+.br
+ Tab key: List Players
+.br
+ Middle mouse button: Pick Block
+.br
+ Command: /
+.br
+ Hide GUI: F1
+.br
+ F2: Screenshot
+.br
+ Shift+F3: View Performance
+.br
+ F3: View Statistics
+.br
+ F5: Change View
+.br
+ F8: Smooth Movement
+.PP
+After you get the hang of using the controls and you’re prepared to immerse yourself in the fun and challenge of the real game, it’s time to figure out how to survive.
+.br
+.SH AUTHOR
+.PP
+This work was created and written by Carlos Donizete Froes [a.k.a coringao]
+.PP
+This manual page was written by Carlos Donizete Froes [a.k.a coringao], for the Debian project (but may be used by others).
diff --git a/data/minecraft-installer.desktop b/data/minecraft-installer.desktop
new file mode 100644
index 0000000..2e5811c
--- /dev/null
+++ b/data/minecraft-installer.desktop
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Name=Minecraft Installer
+Comment=Unofficial way to easily install Minecraft game
+Exec=minecraft-installer
+Keywords=game;adventure;creativity;imagination;blocks;sandbox;multiplayer;online;
+Terminal=false
+Type=Application
+Icon=minecraft-installer
+Categories=Game;AdventureGame;
diff --git a/data/minecraft-installer.png b/data/minecraft-installer.png
new file mode 100644
index 0000000..4f02acc
Binary files /dev/null and b/data/minecraft-installer.png differ
diff --git a/data/minecraft-installer.sh b/data/minecraft-installer.sh
new file mode 100755
index 0000000..315ce6b
--- /dev/null
+++ b/data/minecraft-installer.sh
@@ -0,0 +1,25 @@
+#!/bin/bash
+#
+# Copyright (C) 2017 Carlos Donizete Froes <coringao at riseup.net>
+# Use of this script is governed by a BSD 2-clause license
+# that can be found in the LICENSE file.
+# Source code and contact info at https://github.com/coringao/minecraft-installer
+#
+# Game: Minecraft Installer
+# Date: 05/2017
+#
+# Download official Minecraft/Mojang website
+LINK="https://s3.amazonaws.com/Minecraft.Download/launcher/Minecraft.jar"
+
+# Directory hidden
+GAME="$HOME/.minecraft/"
+
+# Temporary directory used by the script: its contents will be deleted
+if [ ! -d $GAME ]; then
+ mkdir -p $GAME
+ cd $GAME
+ wget -c -q $LINK
+fi
+
+# Running the game
+exec java -jar $GAME/Minecraft.jar
diff --git a/data/minecraft-installer.svg b/data/minecraft-installer.svg
new file mode 100644
index 0000000..4aac813
--- /dev/null
+++ b/data/minecraft-installer.svg
@@ -0,0 +1,1314 @@
+<?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"
+ viewBox="0 0 32.5 32.5"
+ id="svg2"
+ version="1.1"
+ inkscape:version="0.92.1 r15371"
+ width="260"
+ height="260"
+ sodipodi:docname="minecraft-installer.svg"
+ inkscape:export-filename="/home/coringao/github/minecraft-installer/data/minecraft-installer.png"
+ inkscape:export-xdpi="96"
+ inkscape:export-ydpi="96">
+ <title
+ id="title248">Minecraft Installer</title>
+ <metadata
+ id="metadata485">
+ <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>Minecraft Installer</dc:title>
+ <cc:license
+ rdf:resource="http://scripts.sil.org/OFL" />
+ <dc:date>2017-05-21</dc:date>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title />
+ </cc:Agent>
+ </dc:creator>
+ <dc:publisher>
+ <cc:Agent>
+ <dc:title>Carlos Donizete Froes [a.k.a coringao]</dc:title>
+ </cc:Agent>
+ </dc:publisher>
+ <dc:description>Created for the Minecraft Installer project</dc:description>
+ </cc:Work>
+ <cc:License
+ rdf:about="http://scripts.sil.org/OFL">
+ <cc:permits
+ rdf:resource="http://scripts.sil.org/pub/OFL/Reproduction" />
+ <cc:permits
+ rdf:resource="http://scripts.sil.org/pub/OFL/Distribution" />
+ <cc:permits
+ rdf:resource="http://scripts.sil.org/pub/OFL/Embedding" />
+ <cc:permits
+ rdf:resource="http://scripts.sil.org/pub/OFL/DerivativeWorks" />
+ <cc:requires
+ rdf:resource="http://scripts.sil.org/pub/OFL/Notice" />
+ <cc:requires
+ rdf:resource="http://scripts.sil.org/pub/OFL/Attribution" />
+ <cc:requires
+ rdf:resource="http://scripts.sil.org/pub/OFL/ShareAlike" />
+ <cc:requires
+ rdf:resource="http://scripts.sil.org/pub/OFL/DerivativeRenaming" />
+ <cc:requires
+ rdf:resource="http://scripts.sil.org/pub/OFL/BundlingWhenSelling" />
+ </cc:License>
+ </rdf:RDF>
+ </metadata>
+ <sodipodi:namedview
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1"
+ objecttolerance="10000"
+ gridtolerance="10000"
+ guidetolerance="10000"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:window-width="1366"
+ inkscape:window-height="704"
+ id="namedview483"
+ showgrid="false"
+ inkscape:zoom="1.9653846"
+ inkscape:cx="131.01761"
+ inkscape:cy="127.96477"
+ inkscape:window-x="0"
+ inkscape:window-y="27"
+ inkscape:window-maximized="1"
+ inkscape:current-layer="svg2"
+ units="px" />
+ <defs
+ id="defs4">
+ <linearGradient
+ id="4"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.43243,0,0,1.43628,-2.378,-2.471)"
+ y1="5"
+ x2="0"
+ y2="43">
+ <stop
+ stop-color="#fff"
+ id="stop7" />
+ <stop
+ offset=".063"
+ stop-color="#fff"
+ stop-opacity=".235"
+ id="stop9" />
+ <stop
+ offset=".951"
+ stop-color="#fff"
+ stop-opacity=".157"
+ id="stop11" />
+ <stop
+ offset="1"
+ stop-color="#fff"
+ stop-opacity=".392"
+ id="stop13" />
+ </linearGradient>
+ <linearGradient
+ id="1">
+ <stop
+ stop-color="#181818"
+ id="stop16" />
+ <stop
+ offset="1"
+ stop-color="#181818"
+ stop-opacity="0"
+ id="stop18" />
+ </linearGradient>
+ <linearGradient
+ y1="47.029999"
+ x2="0"
+ y2="39.999001"
+ id="3"
+ gradientUnits="userSpaceOnUse">
+ <stop
+ stop-color="#181818"
+ stop-opacity="0"
+ id="stop21" />
+ <stop
+ offset=".5"
+ stop-color="#181818"
+ id="stop23" />
+ <stop
+ offset="1"
+ stop-color="#181818"
+ stop-opacity="0"
+ id="stop25" />
+ </linearGradient>
+ <radialGradient
+ cx="4.993"
+ cy="43.5"
+ r="2.5"
+ id="2"
+ xlink:href="#1"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.0038,0,0,1.4,-20.01,-104.4)" />
+ <radialGradient
+ cx="4.993"
+ cy="43.5"
+ r="2.5"
+ id="0"
+ xlink:href="#1"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(2.0038,0,0,1.4,27.988,-17.4)" />
+ </defs>
+ <g
+ transform="matrix(0.82236842,0,0,0.38819683,-3.6120923,13.754999)"
+ id="g29"
+ style="opacity:0.6">
+ <path
+ d="m 38,40 h 5 v 7 h -5 z"
+ id="path31"
+ inkscape:connector-curvature="0"
+ style="fill:url(#0)" />
+ <path
+ transform="scale(-1)"
+ d="m -10,-47 h 5 v 7 h -5 z"
+ id="path33"
+ inkscape:connector-curvature="0"
+ style="fill:url(#2)" />
+ <path
+ d="m 10,40 h 28 v 7 H 10 Z"
+ id="path35"
+ inkscape:connector-curvature="0"
+ style="fill:url(#3)" />
+ </g>
+ <path
+ d="m 14.041525,18.141364 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path37"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <path
+ d="m 11.958195,18.141364 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path39"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="m 11.958195,20.315254 h 2.08333 v 2.173888 h -2.08333 z"
+ id="path41"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <path
+ d="m 11.958195,22.489142 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path43"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#b8845b;stroke-width:0.53203201" />
+ <path
+ d="m 11.958195,24.663032 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path45"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="m 11.958195,26.836921 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path47"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#b8845b;stroke-width:0.53203201" />
+ <path
+ d="m 11.958195,29.010811 h 2.08333 V 31.1847 h -2.08333 z"
+ id="path49"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#956b49;stroke-width:0.53203201" />
+ <path
+ d="m 14.041525,20.315254 h 2.08333 v 2.173888 h -2.08333 z"
+ id="path51"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <g
+ id="g53"
+ style="fill:#956b49"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 28,44 h 4 v 4 h -4 z"
+ id="path55"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 28,48 h 4 v 4 h -4 z"
+ id="path57"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <path
+ d="m 14.041525,26.836921 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path59"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="m 14.041525,29.010811 h 2.08333 V 31.1847 h -2.08333 z"
+ id="path61"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#956b49;stroke-width:0.53203201" />
+ <path
+ d="m 14.041525,11.619697 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path63"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <path
+ d="m 14.041525,13.793586 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path65"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#b8845b;stroke-width:0.53203201" />
+ <path
+ d="m 14.041525,15.967475 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path67"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="M 1.5415451,11.619697 H 3.624875 v 2.173889 H 1.5415451 Z"
+ id="path69"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <path
+ d="M 1.5415451,13.793586 H 3.624875 v 2.173889 H 1.5415451 Z"
+ id="path71"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="m 3.624875,11.619697 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path73"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#956b49;stroke-width:0.53203201" />
+ <path
+ d="m 3.624875,13.793586 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path75"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="m 5.708205,11.619697 h 2.0833296 v 2.173889 H 5.708205 Z"
+ id="path77"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#956b49;stroke-width:0.53203201" />
+ <g
+ id="g79"
+ style="fill:#785439"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 12,28 h 4 v 4 h -4 z"
+ id="path81"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 16,24 h 4 v 4 h -4 z"
+ id="path83"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <path
+ d="M 7.7915346,13.793586 H 9.874865 v 2.173889 H 7.7915346 Z"
+ id="path85"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#868686;stroke-width:0.53203201" />
+ <path
+ d="m 9.874865,11.619697 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path87"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#956b49;stroke-width:0.53203201" />
+ <path
+ d="m 9.874865,13.793586 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path89"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="m 11.958195,11.619697 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path91"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <g
+ id="g93"
+ style="fill:#785439"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 24,28 h 4 v 4 h -4 z"
+ id="path95"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 4,32 h 4 v 4 H 4 Z"
+ id="path97"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 4,36 h 4 v 4 H 4 Z"
+ id="path99"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <g
+ id="g101"
+ style="fill:#956b49"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 4,40 h 4 v 4 H 4 Z"
+ id="path103"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 4,44 h 4 v 4 H 4 Z"
+ id="path105"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <path
+ d="M 1.5415451,24.663032 H 3.624875 v 2.173889 H 1.5415451 Z"
+ id="path107"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="M 1.5415451,26.836921 H 3.624875 v 2.17389 H 1.5415451 Z"
+ id="path109"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <path
+ d="M 1.5415451,29.010811 H 3.624875 V 31.1847 H 3.3644587 c 0,0 -1.8229136,0 -1.8229136,-1.902154 z"
+ id="path111"
+ inkscape:connector-curvature="0"
+ style="fill:#956b49;stroke-width:0.53203201" />
+ <path
+ d="m 3.624875,15.967475 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path113"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#b8845b;stroke-width:0.53203201" />
+ <path
+ d="m 3.624875,18.141364 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path115"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="m 3.624875,20.315254 h 2.08333 v 2.173888 h -2.08333 z"
+ id="path117"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <g
+ id="g119"
+ style="fill:#785439"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 8,44 h 4 v 4 H 8 Z"
+ id="path121"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 8,48 h 4 v 4 H 8 Z"
+ id="path123"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <path
+ d="m 3.624875,26.836921 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path125"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#956b49;stroke-width:0.53203201" />
+ <path
+ d="m 3.624875,29.010811 h 2.08333 V 31.1847 h -2.08333 z"
+ id="path127"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="m 5.708205,15.967475 h 2.0833296 v 2.173889 H 5.708205 Z"
+ id="path129"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#b8845b;stroke-width:0.53203201" />
+ <path
+ d="m 5.708205,18.141364 h 2.0833296 v 2.17389 H 5.708205 Z"
+ id="path131"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#956b49;stroke-width:0.53203201" />
+ <path
+ d="m 5.708205,20.315254 h 2.0833296 v 2.173888 H 5.708205 Z"
+ id="path133"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="m 5.708205,22.489142 h 2.0833296 v 2.17389 H 5.708205 Z"
+ id="path135"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#b8845b;stroke-width:0.53203201" />
+ <path
+ d="m 5.708205,24.663032 h 2.0833296 v 2.173889 H 5.708205 Z"
+ id="path137"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#956b49;stroke-width:0.53203201" />
+ <g
+ id="g139"
+ style="fill:#785439"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 12,52 h 4 v 4 h -4 z"
+ id="path141"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 12,56 h 4 v 4 h -4 z"
+ id="path143"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <path
+ d="M 7.7915346,15.967475 H 9.874865 v 2.173889 H 7.7915346 Z"
+ id="path145"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#956b49;stroke-width:0.53203201" />
+ <g
+ id="g147"
+ style="fill:#785439"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 16,36 h 4 v 4 h -4 z"
+ id="path149"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 16,40 h 4 v 4 h -4 z"
+ id="path151"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <path
+ d="M 7.7915346,22.489142 H 9.874865 v 2.17389 H 7.7915346 Z"
+ id="path153"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#b8845b;stroke-width:0.53203201" />
+ <g
+ id="g155"
+ style="fill:#956b49"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 16,48 h 4 v 4 h -4 z"
+ id="path157"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 16,52 h 4 v 4 h -4 z"
+ id="path159"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <path
+ d="M 7.7915346,29.010811 H 9.874865 V 31.1847 H 7.7915346 Z"
+ id="path161"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <g
+ id="g163"
+ style="fill:#956b49"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 20,32 h 4 v 4 h -4 z"
+ id="path165"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 20,36 h 4 v 4 h -4 z"
+ id="path167"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <path
+ d="m 9.874865,20.315254 h 2.08333 v 2.173888 h -2.08333 z"
+ id="path169"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <path
+ d="m 9.874865,22.489142 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path171"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="m 9.874865,24.663032 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path173"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#b8845b;stroke-width:0.53203201" />
+ <path
+ d="m 9.874865,26.836921 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path175"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#956b49;stroke-width:0.53203201" />
+ <g
+ id="g177"
+ style="fill:#785439"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 20,56 h 4 v 4 h -4 z"
+ id="path179"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 24,32 h 4 v 4 h -4 z"
+ id="path181"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 32,36 h 4 v 4 h -4 z"
+ id="path183"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <g
+ id="g185"
+ style="fill:#956b49"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 36,36 h 4 v 4 h -4 z"
+ id="path187"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 40,36 h 4 v 4 h -4 z"
+ id="path189"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <g
+ id="g191"
+ style="fill:#785439"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 44,36 h 4 v 4 h -4 z"
+ id="path193"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 48,36 h 4 v 4 h -4 z"
+ id="path195"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 52,36 h 4 v 4 h -4 z"
+ id="path197"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <path
+ d="m 28.624834,18.141364 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path199"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <path
+ d="m 16.124855,20.315254 h 2.08333 v 2.173888 h -2.08333 z"
+ id="path201"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="m 16.124855,22.489142 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path203"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <path
+ d="m 16.124855,24.663032 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path205"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#6b6b6b;stroke-width:0.53203201" />
+ <g
+ id="g207"
+ style="fill:#785439"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 32,52 h 4 v 4 h -4 z"
+ id="path209"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 32,56 h 4 v 4 h -4 z"
+ id="path211"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 36,40 h 4 v 4 h -4 z"
+ id="path213"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <path
+ d="m 18.208185,22.489142 h 2.083329 v 2.17389 h -2.083329 z"
+ id="path215"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#b8845b;stroke-width:0.53203201" />
+ <path
+ d="m 18.208185,24.663032 h 2.083329 v 2.173889 h -2.083329 z"
+ id="path217"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#956b49;stroke-width:0.53203201" />
+ <path
+ d="m 18.208185,26.836921 h 2.083329 v 2.17389 h -2.083329 z"
+ id="path219"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="m 18.208185,29.010811 h 2.083329 V 31.1847 h -2.083329 z"
+ id="path221"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <path
+ d="m 20.291514,20.315254 h 2.08333 v 2.173888 h -2.08333 z"
+ id="path223"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="m 20.291514,22.489142 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path225"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#b8845b;stroke-width:0.53203201" />
+ <path
+ d="m 20.291514,24.663032 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path227"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#956b49;stroke-width:0.53203201" />
+ <path
+ d="m 20.291514,26.836921 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path229"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="m 20.291514,29.010811 h 2.08333 V 31.1847 h -2.08333 z"
+ id="path231"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#b8845b;stroke-width:0.53203201" />
+ <path
+ d="m 22.374844,20.315254 h 2.08333 v 2.173888 h -2.08333 z"
+ id="path233"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="m 22.374844,22.489142 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path235"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <g
+ id="g237"
+ style="fill:#785439"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 44,48 h 4 v 4 h -4 z"
+ id="path239"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 44,52 h 4 v 4 h -4 z"
+ id="path241"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <path
+ d="m 22.374844,29.010811 h 2.08333 V 31.1847 h -2.08333 z"
+ id="path243"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <path
+ d="m 24.458174,20.315254 h 2.08333 v 2.173888 h -2.08333 z"
+ id="path245"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#b8845b;stroke-width:0.53203201" />
+ <path
+ d="m 24.458174,22.489142 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path247"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#956b49;stroke-width:0.53203201" />
+ <path
+ d="m 24.458174,24.663032 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path249"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <g
+ id="g251"
+ style="fill:#785439"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 48,52 h 4 v 4 h -4 z"
+ id="path253"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 48,56 h 4 v 4 h -4 z"
+ id="path255"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <path
+ d="m 26.541504,20.315254 h 2.08333 v 2.173888 h -2.08333 z"
+ id="path257"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#b8845b;stroke-width:0.53203201" />
+ <g
+ id="g259"
+ style="fill:#956b49"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 52,44 h 4 v 4 h -4 z"
+ id="path261"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 52,48 h 4 v 4 h -4 z"
+ id="path263"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <path
+ d="m 26.541504,26.836921 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path265"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="m 26.541504,29.010811 h 2.08333 V 31.1847 h -2.08333 z"
+ id="path267"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#b8845b;stroke-width:0.53203201" />
+ <path
+ d="m 28.624834,20.315254 h 2.08333 v 2.173888 h -2.08333 z"
+ id="path269"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="m 28.624834,22.489142 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path271"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#868686;stroke-width:0.53203201" />
+ <path
+ d="m 28.624834,24.663032 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path273"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="m 28.624834,26.836921 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path275"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#b8845b;stroke-width:0.53203201" />
+ <path
+ d="m 28.624834,29.010811 h 2.08333 v 0.271735 c 0,0 0,1.902154 -1.822914,1.902154 h -0.260416 z"
+ id="path277"
+ inkscape:connector-curvature="0"
+ style="fill:#583c28;stroke-width:0.53203201" />
+ <path
+ d="m 14.041525,0.75024999 h 2.08333 V 2.92414 h -2.08333 z"
+ id="path279"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#6bab41;stroke-width:0.53203201" />
+ <path
+ d="m 14.041525,2.92414 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path281"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#61a137;stroke-width:0.53203201" />
+ <g
+ id="g283"
+ style="fill:#583c28"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 28,12 h 4 v 4 h -4 z"
+ id="path285"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 28,16 h 4 v 4 h -4 z"
+ id="path287"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <path
+ d="m 14.041525,9.445807 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path289"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="m 16.124855,0.75024999 h 2.08333 V 2.92414 h -2.08333 z"
+ id="path291"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#7dbd53;stroke-width:0.53203201" />
+ <path
+ d="m 16.124855,2.92414 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path293"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#5e9e34;stroke-width:0.53203201" />
+ <path
+ d="m 16.124855,5.098029 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path295"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#73b349;stroke-width:0.53203201" />
+ <path
+ d="m 16.124855,7.271918 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path297"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#5e9e34;stroke-width:0.53203201" />
+ <g
+ id="g299"
+ style="fill:#583c28"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 32,20 h 4 v 4 h -4 z"
+ id="path301"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 32,24 h 4 v 4 h -4 z"
+ id="path303"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <path
+ d="m 16.124855,13.793586 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path305"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#b8845b;stroke-width:0.53203201" />
+ <path
+ d="m 16.124855,15.967475 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path307"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#956b49;stroke-width:0.53203201" />
+ <path
+ d="m 18.208185,0.75024999 h 2.083329 V 2.92414 h -2.083329 z"
+ id="path309"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#75b54b;stroke-width:0.53203201" />
+ <path
+ d="m 18.208185,2.92414 h 2.083329 v 2.173889 h -2.083329 z"
+ id="path311"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#92c162;stroke-width:0.53203201" />
+ <path
+ d="m 18.208185,5.098029 h 2.083329 v 2.173889 h -2.083329 z"
+ id="path313"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#7ebe54;stroke-width:0.53203201" />
+ <g
+ id="g315"
+ style="fill:#583c28"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 36,16 h 4 v 4 h -4 z"
+ id="path317"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 36,20 h 4 v 4 h -4 z"
+ id="path319"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <g
+ id="g321"
+ style="fill:#785439"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 36,24 h 4 v 4 h -4 z"
+ id="path323"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 36,28 h 4 v 4 h -4 z"
+ id="path325"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <path
+ d="m 18.208185,15.967475 h 2.083329 v 2.173889 h -2.083329 z"
+ id="path327"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <path
+ d="m 20.291514,0.75024999 h 2.08333 V 2.92414 h -2.08333 z"
+ id="path329"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#69a93f;stroke-width:0.53203201" />
+ <path
+ d="m 20.291514,2.92414 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path331"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#8fbe5f;stroke-width:0.53203201" />
+ <path
+ d="m 20.291514,5.098029 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path333"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#91c061;stroke-width:0.53203201" />
+ <path
+ d="m 20.291514,7.271918 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path335"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#6cac42;stroke-width:0.53203201" />
+ <path
+ d="m 20.291514,9.445807 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path337"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <path
+ d="m 20.291514,11.619697 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path339"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="m 20.291514,13.793586 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path341"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#b8845b;stroke-width:0.53203201" />
+ <path
+ d="m 20.291514,15.967475 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path343"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#956b49;stroke-width:0.53203201" />
+ <path
+ d="m 22.374844,0.75024999 h 2.08333 V 2.92414 h -2.08333 z"
+ id="path345"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#66a63c;stroke-width:0.53203201" />
+ <path
+ d="m 22.374844,2.92414 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path347"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#72b248;stroke-width:0.53203201" />
+ <path
+ d="m 22.374844,5.098029 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path349"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#96c566;stroke-width:0.53203201" />
+ <path
+ d="m 22.374844,7.271918 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path351"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <path
+ d="m 22.374844,9.445807 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path353"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#6b6b6b;stroke-width:0.53203201" />
+ <path
+ d="m 22.374844,11.619697 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path355"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <path
+ d="m 22.374844,13.793586 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path357"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#b8845b;stroke-width:0.53203201" />
+ <path
+ d="m 22.374844,15.967475 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path359"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#956b49;stroke-width:0.53203201" />
+ <path
+ d="m 24.458174,0.75024999 h 2.08333 V 2.92414 h -2.08333 z"
+ id="path361"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#68a83e;stroke-width:0.53203201" />
+ <path
+ d="m 24.458174,2.92414 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path363"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#60a036;stroke-width:0.53203201" />
+ <path
+ d="m 24.458174,5.098029 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path365"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <g
+ id="g367"
+ style="fill:#785439"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 48,16 h 4 v 4 h -4 z"
+ id="path369"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 48,20 h 4 v 4 h -4 z"
+ id="path371"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 48,24 h 4 v 4 h -4 z"
+ id="path373"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 48,28 h 4 v 4 h -4 z"
+ id="path375"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 48,32 h 4 v 4 h -4 z"
+ id="path377"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <path
+ d="m 26.541504,0.75024999 h 2.08333 V 2.92414 h -2.08333 z"
+ id="path379"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#60a036;stroke-width:0.53203201" />
+ <path
+ d="m 26.541504,2.92414 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path381"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#6bab41;stroke-width:0.53203201" />
+ <path
+ d="m 26.541504,5.098029 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path383"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#56962c;stroke-width:0.53203201" />
+ <path
+ d="m 26.541504,7.271918 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path385"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <path
+ d="m 26.541504,9.445807 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path387"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#956b49;stroke-width:0.53203201" />
+ <path
+ d="m 26.541504,11.619697 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path389"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="m 26.541504,13.793586 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path391"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#956b49;stroke-width:0.53203201" />
+ <path
+ d="m 26.541504,15.967475 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path393"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="m 28.624834,0.75024999 h 0.260416 c 0,0 1.822914,0 1.822914,1.90215301 V 2.92414 h -2.08333 z"
+ id="path395"
+ inkscape:connector-curvature="0"
+ style="fill:#4f8f25;stroke-width:0.53203201" />
+ <path
+ d="m 28.624834,2.92414 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path397"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#66a63c;stroke-width:0.53203201" />
+ <path
+ d="m 28.624834,5.098029 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path399"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#4f8f25;stroke-width:0.53203201" />
+ <g
+ id="g401"
+ style="fill:#583c28"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 56,16 h 4 v 4 h -4 z"
+ id="path403"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 56,20 h 4 v 4 h -4 z"
+ id="path405"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <g
+ id="g407"
+ style="fill:#785439"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 56,24 h 4 v 4 h -4 z"
+ id="path409"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 56,28 h 4 v 4 h -4 z"
+ id="path411"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <path
+ d="m 28.624834,15.967475 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path413"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#956b49;stroke-width:0.53203201" />
+ <path
+ d="m 1.5415451,2.652403 c 0,-1.90215301 1.8229136,-1.90215301 1.8229136,-1.90215301 H 3.624875 V 2.92414 H 1.5415451 Z"
+ id="path415"
+ inkscape:connector-curvature="0"
+ style="fill:#75b54b;stroke-width:0.53203201" />
+ <path
+ d="M 1.5415451,2.92414 H 3.624875 V 5.098029 H 1.5415451 Z"
+ id="path417"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#6bab41;stroke-width:0.53203201" />
+ <path
+ d="M 1.5415451,5.098029 H 3.624875 V 7.271918 H 1.5415451 Z"
+ id="path419"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <path
+ d="M 1.5415451,7.271918 H 3.624875 V 9.445807 H 1.5415451 Z"
+ id="path421"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#6b6b6b;stroke-width:0.53203201" />
+ <path
+ d="M 1.5415451,9.445807 H 3.624875 v 2.17389 H 1.5415451 Z"
+ id="path423"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <path
+ d="m 3.624875,0.75024999 h 2.08333 V 2.92414 h -2.08333 z"
+ id="path425"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#72b248;stroke-width:0.53203201" />
+ <path
+ d="m 3.624875,2.92414 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path427"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#89b859;stroke-width:0.53203201" />
+ <path
+ d="m 3.624875,5.098029 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path429"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#9bca6b;stroke-width:0.53203201" />
+ <path
+ d="m 3.624875,7.271918 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path431"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <path
+ d="m 3.624875,9.445807 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path433"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#956b49;stroke-width:0.53203201" />
+ <path
+ d="M 5.708205,0.75024999 H 7.7915346 V 2.92414 H 5.708205 Z"
+ id="path435"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#65a53b;stroke-width:0.53203201" />
+ <path
+ d="M 5.708205,2.92414 H 7.7915346 V 5.098029 H 5.708205 Z"
+ id="path437"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#80af50;stroke-width:0.53203201" />
+ <path
+ d="M 5.708205,5.098029 H 7.7915346 V 7.271918 H 5.708205 Z"
+ id="path439"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#63a339;stroke-width:0.53203201" />
+ <path
+ d="M 5.708205,7.271918 H 7.7915346 V 9.445807 H 5.708205 Z"
+ id="path441"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <path
+ d="m 5.708205,9.445807 h 2.0833296 v 2.17389 H 5.708205 Z"
+ id="path443"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#b8845b;stroke-width:0.53203201" />
+ <path
+ d="M 7.7915346,0.75024999 H 9.874865 V 2.92414 H 7.7915346 Z"
+ id="path445"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#65a53b;stroke-width:0.53203201" />
+ <path
+ d="M 7.7915346,2.92414 H 9.874865 V 5.098029 H 7.7915346 Z"
+ id="path447"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#82b152;stroke-width:0.53203201" />
+ <path
+ d="M 7.7915346,5.098029 H 9.874865 V 7.271918 H 7.7915346 Z"
+ id="path449"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#68a83e;stroke-width:0.53203201" />
+ <path
+ d="M 7.7915346,7.271918 H 9.874865 V 9.445807 H 7.7915346 Z"
+ id="path451"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#70b046;stroke-width:0.53203201" />
+ <path
+ d="M 7.7915346,9.445807 H 9.874865 v 2.17389 H 7.7915346 Z"
+ id="path453"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <path
+ d="m 9.874865,0.75024999 h 2.08333 V 2.92414 h -2.08333 z"
+ id="path455"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#6eae44;stroke-width:0.53203201" />
+ <g
+ id="g457"
+ style="fill:#583c28"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <path
+ d="m 20,8 h 4 v 4 h -4 z"
+ id="path459"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 20,12 h 4 v 4 h -4 z"
+ id="path461"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ <path
+ d="m 20,16 h 4 v 4 h -4 z"
+ id="path463"
+ inkscape:connector-curvature="0"
+ style="opacity:1" />
+ </g>
+ <path
+ d="m 9.874865,9.445807 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path465"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#956b49;stroke-width:0.53203201" />
+ <path
+ d="m 11.958195,0.75024999 h 2.08333 V 2.92414 h -2.08333 z"
+ id="path467"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#5e9e34;stroke-width:0.53203201" />
+ <path
+ d="m 11.958195,2.92414 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path469"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#67a73d;stroke-width:0.53203201" />
+ <path
+ d="m 11.958195,5.098029 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path471"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#6faf45;stroke-width:0.53203201" />
+ <path
+ d="m 11.958195,7.271918 h 2.08333 v 2.173889 h -2.08333 z"
+ id="path473"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#583c28;stroke-width:0.53203201" />
+ <path
+ d="m 11.958195,9.445807 h 2.08333 v 2.17389 h -2.08333 z"
+ id="path475"
+ inkscape:connector-curvature="0"
+ style="opacity:1;fill:#785439;stroke-width:0.53203201" />
+ <g
+ id="g477"
+ style="fill:none;stroke-linecap:round;stroke-linejoin:round"
+ transform="matrix(0.52083245,0,0,0.5434723,-0.54178485,-1.423639)">
+ <rect
+ y="5.4289999"
+ x="5.5"
+ rx="2"
+ height="53.139999"
+ width="53"
+ id="rect479"
+ style="opacity:0.5;stroke:url(#4)" />
+ <rect
+ y="4.5"
+ x="4.5"
+ rx="3"
+ height="55"
+ width="55"
+ id="rect481"
+ style="color:#000000;opacity:0.3;stroke:#000000" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="path4"
+ d="m 17.629531,25.626863 h 2.77807 v -2.898814 h 2.778045 v -2.896153 h 2.778072 V 16.93308 h 2.778045 v -2.898814 h -5.556117 v 2.898814 h -2.778045 v 2.898816 h -2.77807 V 22.73071 H 14.854037 V 19.831896 H 12.075966 V 16.93308 H 9.29792 V 14.034266 H 3.7418039 v 2.898814 h 2.7780455 v 2.898816 H 9.29792 v 2.898814 h 2.778046 v 2.898817 h 2.778071 v 2.898813 h 2.778044 v -2.901477 z"
+ style="stroke-width:0.0260587" />
+</svg>
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/minecraft-installer.git
More information about the Pkg-games-commits
mailing list