Update compiling.txt doc.
This commit is contained in:
parent
389656e58c
commit
e56f76dbcf
|
@ -1,7 +1,7 @@
|
|||
Compiling KiCad from Source
|
||||
===========================
|
||||
KiCad Documentation Team
|
||||
Last revised on 31-Jan-2010 by Jerry Jacobs
|
||||
Last revised on 12-mars-2012 by jp Charras
|
||||
|
||||
Introduction
|
||||
------------
|
||||
|
@ -25,7 +25,21 @@ On linux:
|
|||
Install "mesa". Use your package manager to install the
|
||||
development libaries.
|
||||
|
||||
Tools in PATH
|
||||
After a fresh install you need the following packages to compile and run
|
||||
KiCad from source.
|
||||
|
||||
CMake - Cross-platform make
|
||||
GLUT - The OpenGL Utility Library
|
||||
wxGTK or wxWidgets - The wxWidgets GUI toolkit with GTK+ bindings
|
||||
|
||||
Boost - Collection of portable C++ source libraries
|
||||
Because boost is in the repository of kicad you don't need to install them.
|
||||
|
||||
Useful, but not required:
|
||||
Doxygen - Documentation system for several programming languages
|
||||
|
||||
|
||||
Compiler and basic development tools
|
||||
-------------
|
||||
Make sure g++, make and other tools are in your path.
|
||||
If windows, then try running g++ and make from within your msys bash shell.
|
||||
|
@ -37,48 +51,27 @@ Install or Build wxWidgets
|
|||
WARNING:
|
||||
see wxWidgets_patch_notes.txt for patches and issues in wxWidgets.
|
||||
|
||||
If on windows, download
|
||||
If on Windows, download
|
||||
http://sourceforge.net/projects/wxwindows/files/wxAll/2.9.3/wxWidgets-2.9.3.zip/download
|
||||
or a newer version.
|
||||
Do NOT use previous versions which all have issues for KiCad.
|
||||
Start msys so you have a bash shell. Decide where your wxWidgets build directory
|
||||
will be. It must be where you can access it from within the msys environment,
|
||||
such as home/<user>. Edit your msys/1.0/etc/fstab file if needed to provide
|
||||
access to this build directory from msys. (Note that if you want you can build
|
||||
a "debug" version of the wxWidgets library at this point, instead of the release
|
||||
version, or in addition to the the release version.)
|
||||
Unzip the wmMWS zip file into the build directory. Change directories into
|
||||
Do NOT use previous versions which all have annoying issues for KiCad.
|
||||
Start msys so you have a bash shell.
|
||||
Note also since 2.9 versions no need to build a "debug" version of the wxWidgets library,
|
||||
the release abd the debug version are same.
|
||||
|
||||
Unzip the wxWidgets zip file into the build directory. Change directories into
|
||||
there, and then:
|
||||
|
||||
mkdir build-release
|
||||
mkdir build-debug
|
||||
|
||||
.Release
|
||||
----
|
||||
cd build-release
|
||||
../configure --enable-unicode --enable-monolithic --disable-shared --with-msw --with-opengl
|
||||
mkdir Release
|
||||
cd Release
|
||||
../configure --enable-unicode --enable-monolithic=no --disable-shared --with-opengl
|
||||
make
|
||||
make install
|
||||
----
|
||||
|
||||
.Debug
|
||||
----
|
||||
cd build-debug
|
||||
../configure --enable-unicode --enable-monolithic --enable-debug --enable-debug_gdb --disable-shared --with-msw --with-opengl
|
||||
make
|
||||
make install
|
||||
----
|
||||
and under Linux, but not under Windows:
|
||||
sudo make install that install wxWidgets libs and headers in /usr/local/
|
||||
|
||||
The default install path is /usr/local. Generally speaking MinGW likes header
|
||||
files in /mingw/include and library link files in /mingw/lib. You can install
|
||||
path by setting --prefix=/mingw to configure above to change where "make install"
|
||||
puts everything. We will refer to the --prefix setting as <wxInstallDir> below.
|
||||
|
||||
Verify that wx-config is in your path. Modify your PATH environment variable
|
||||
if need be so you can run wx-config from a command prompt. You may have to
|
||||
restart your msys shell, depending on how you modify your PATH.
|
||||
|
||||
If on linux, use your package manager to install shared object libraries and the
|
||||
If on linux, you can use your package manager to install the
|
||||
development versions of the wxWidgets packages which include the C++ headers. An
|
||||
alternative is to build static libaries from source. Verify that wx-config is in
|
||||
your path by running it from a command prompt. Linux users then go to next step.
|
||||
|
@ -100,11 +93,24 @@ command prompt.
|
|||
Obtain Sources
|
||||
--------------
|
||||
You can use the Launchpad repository or a tar file for this. See the wiki.
|
||||
To download files from Launchpad repository, you should install bazaar (bzr) that is a
|
||||
version control system like subversion, mercurial, git...
|
||||
|
||||
Launchpad repository handle 2 branches:
|
||||
Launchpad repository handle 2 branches for KiCda sources:
|
||||
- a testing branch (used by developers)
|
||||
- a stable branch (a copy of the testing branch, when this testing branch is near a stable state))
|
||||
|
||||
Testing branch:
|
||||
bzr branch lp:kicad kicad_testing
|
||||
|
||||
Stable branch:
|
||||
bzr branch lp:kicad/stable kicad_stable
|
||||
|
||||
Components and Footprints libraries
|
||||
bzr branch lp:~kicad-lib-committers/kicad/library kicad_libraries
|
||||
|
||||
Documentation and translations:
|
||||
bzr branch lp:~kicad-developers/kicad/doc kicad_doc
|
||||
|
||||
Create Makefiles with CMake
|
||||
---------------------------
|
||||
|
@ -112,14 +118,14 @@ If windows, go into your msys shell. Linux and windows users both then make
|
|||
two "out of source" build directories:
|
||||
cd <kicadSource>
|
||||
mkdir -p build/release
|
||||
mkdir build/debug
|
||||
mkdir build/debug (if you want a debug version of KiCad)
|
||||
cd build/release
|
||||
|
||||
On either cmake command line shown below, you can optionally include
|
||||
-DCMAKE_INSTALL_PREFIX=<finallInstallDir>
|
||||
|
||||
If windows, run the following command:
|
||||
cmake -G "MSYS Makefiles" -DCMAKE_BUILD_TYPE=Release -DwxWidgets_ROOT_DIR=<wxInstallDir> ../../
|
||||
cmake -G "MSYS Makefiles" -DCMAKE_BUILD_TYPE=Release -DKICAD_TESTING_VERSION=ON -DwxWidgets_ROOT_DIR=<wxInstallDir> ../../
|
||||
|
||||
If linux, run instead the following command:
|
||||
cmake -DCMAKE_BUILD_TYPE=Release ../../
|
||||
|
@ -152,7 +158,8 @@ Although normally you do not install the Debug binaries, you can debug them
|
|||
where they were built.
|
||||
|
||||
If windows, run the following command:
|
||||
cmake -G "MSYS Makefiles" -DCMAKE_BUILD_TYPE=Debug -DwxWidgets_USE_DEBUG=ON -DwxWidgets_ROOT_DIR=<wxInstallDir> ../../
|
||||
cmake -G "MSYS Makefiles" -DCMAKE_BUILD_TYPE=Debug -DKICAD_TESTING_VERSION=ON -DwxWidgets_ROOT_DIR=<wxInstallDir> ../../
|
||||
where <wxInstallDir> is <wxWidgets path>/Release
|
||||
|
||||
If linux, run instead the following command:
|
||||
cmake -DCMAKE_BUILD_TYPE=Debug -DwxWidgets_USE_DEBUG=ON ../../
|
||||
|
@ -178,9 +185,6 @@ One of these 2 option *must* be set to ON:
|
|||
CMAKE_BUILD_TYPE Release/Debug (REQUIRED)
|
||||
Choose build type: Release/Debug.
|
||||
|
||||
wxWidgets_USE_DEBUG ON/OFF (REQUIRED)
|
||||
Should be set to ON only when CMAKE_BUILD_TYPE=Debug.
|
||||
|
||||
wxWidgets_USE_STATIC ON/OFF (OPTIONAL)
|
||||
|
||||
CMAKE_VERBOSE_MAKEFILE ON/OFF (OPTIONAL)
|
||||
|
|
|
@ -1,288 +0,0 @@
|
|||
Compiling KiCad on Debian & Ubuntu
|
||||
==================================
|
||||
|
||||
First written: 10-Mar-2009
|
||||
|
||||
Updated: 31-Oct-2009
|
||||
|
||||
Lasted edited by: Jerry Jacobs <xor.gate.engineering@gmail.com>
|
||||
|
||||
This file is AsciiDoc formatted to you can convert it to pdf/xhtml/xml
|
||||
|
||||
Ubuntu 9.10 (Karmic Koala)
|
||||
--------------------------
|
||||
After a fresh install you need the following packages to compile and run
|
||||
KiCad from source.
|
||||
|
||||
Boost - Collection of portable C++ source libraries
|
||||
CMake - Cross-platform make
|
||||
Doxygen - Documentation system for several programming languages
|
||||
GLUT - The OpenGL Utility Library
|
||||
wxGTK - The wxWidgets GUI toolkit with GTK+ bindings
|
||||
zlib - General purpose data compression library
|
||||
|
||||
Because boost is in the repository of kicad you don't need to install them.
|
||||
|
||||
Install these with aptitude:
|
||||
----
|
||||
sudo aptitude install build-essential cmake doxygen subversion libglut3 libglut3-dev libwxgtk libwxgtk-dev zlib1g zlib1g-dev
|
||||
----
|
||||
|
||||
Checkout the source
|
||||
----
|
||||
svn checkout https://kicad.svn.sourceforge.net/svnroot/kicad/trunk/kicad kicad
|
||||
----
|
||||
|
||||
Generate makefiles
|
||||
----
|
||||
cd /home/<you>/<kicad-src-dir>
|
||||
cmake .
|
||||
----
|
||||
|
||||
Compile
|
||||
----
|
||||
make
|
||||
----
|
||||
*Note* on multicore systems you can do parallel make jobs to speed
|
||||
up compiling by giving the option -j {JOBS} to make.
|
||||
|
||||
Ubuntu 9.04
|
||||
-----------
|
||||
Special thanks to David J S Briscoe <david@djsbriscoe.vispa.com>
|
||||
|
||||
The first thing I did was follow this page up to the running kicad section
|
||||
|
||||
http://basicubuntu.blogspot.com/2009/02/installing-kicad-on-ubuntu.html
|
||||
|
||||
This resulted in the error message detailed in this post
|
||||
|
||||
http://tech.groups.yahoo.com/group/kicad-devel/message/3180
|
||||
|
||||
SNIPPET
|
||||
|
||||
The build fails with the following message
|
||||
|
||||
----------------------------------------------------------:
|
||||
|
||||
david@ubuntu:~/Desktop/KICAD_SVN$ fakeroot debian/rules binary
|
||||
test -d debian/patched || install -d debian/patched
|
||||
dpatch apply-all
|
||||
dpatch cat-all >>patch-stampT
|
||||
mv -f patch-stampT patch-stamp
|
||||
mkdir -p /home/david/Desktop/KICAD_SVN/build/kicad
|
||||
mkdir -p /home/david/Desktop/KICAD_SVN/build/bitmaps
|
||||
cd /home/david/Desktop/KICAD_SVN/build/kicad && cmake \
|
||||
|
||||
-DKICAD_DEMOS=/home/david/Desktop/KICAD_SVN/debian/kicad-common/usr/share/doc/ki\
|
||||
cad/demos ../../kicad \
|
||||
-DXPM_CPP_PATH=/home/david/Desktop/KICAD_SVN/build/bitmaps
|
||||
-- The C compiler identification is GNU
|
||||
-- The CXX compiler identification is GNU
|
||||
-- Check for working C compiler: /usr/bin/gcc
|
||||
-- Check for working C compiler: /usr/bin/gcc -- works
|
||||
-- Detecting C compiler ABI info
|
||||
-- Detecting C compiler ABI info - done
|
||||
-- Check for working CXX compiler: /usr/bin/c++
|
||||
-- Check for working CXX compiler: /usr/bin/c++ -- works
|
||||
-- Detecting CXX compiler ABI info
|
||||
-- Detecting CXX compiler ABI info - done
|
||||
-- Looking for XOpenDisplay in /usr/lib/libX11.so;/usr/lib/libXext.so
|
||||
-- Looking for XOpenDisplay in /usr/lib/libX11.so;/usr/lib/libXext.so - found
|
||||
-- Looking for gethostbyname
|
||||
-- Looking for gethostbyname - found
|
||||
-- Looking for connect
|
||||
-- Looking for connect - found
|
||||
-- Looking for remove
|
||||
-- Looking for remove - found
|
||||
-- Looking for shmat
|
||||
-- Looking for shmat - found
|
||||
-- Looking for IceConnectionNumber in ICE
|
||||
-- Looking for IceConnectionNumber in ICE - found
|
||||
-- Found X11: /usr/lib/libX11.so
|
||||
-- Check for installed OpenGL -- found
|
||||
-- Check for installed Boost -- not found
|
||||
CMake Error at CMakeModules/CheckFindPackageResult.cmake:6 (message):
|
||||
Boost was not found - it is required to build Kicad
|
||||
Call Stack (most recent call first):
|
||||
CMakeLists.txt:111 (check_find_package_result)
|
||||
|
||||
|
||||
-- Configuring incomplete, errors occurred!
|
||||
make: *** [configure-stamp] Error 1
|
||||
david@ubuntu:~/Desktop/KICAD_SVN$
|
||||
|
||||
-----------------------------------------------------------------:
|
||||
|
||||
|
||||
SNIPPET
|
||||
|
||||
The next step was to remove any libboost 1.34 libraries using the apt-get
|
||||
remove command (can't remember the exact commands I used) as the Ubuntu 9.04
|
||||
(Jaunty) repositories only had the 1.34 version available.
|
||||
|
||||
After this I installed the boost 1.37 libraries
|
||||
using this command
|
||||
|
||||
---------------------------------------
|
||||
sudo apt-get install libboost1.37-dev
|
||||
---------------------------------------
|
||||
|
||||
This pulled down all the required files and dependencies (as far as I
|
||||
know-how do I check this?)
|
||||
|
||||
I then entered the following command
|
||||
|
||||
---------------------------------------
|
||||
fakeroot debian/rules binary
|
||||
---------------------------------------
|
||||
|
||||
and everything was built properly (I saw a few warnings flash past-will
|
||||
these be logged anywhere?)
|
||||
|
||||
I was left with a bunch of debian packaged files. I installed the main one,
|
||||
the common one and an English language documentation one (I can supply more
|
||||
details if needed later as I am not using Ubuntu at the moment).
|
||||
|
||||
The first link above describes moving the libraries and other files into the
|
||||
same place as the compiled executables. I didn't do this, so I have a
|
||||
duplicate installation.
|
||||
The above method needs some fine tuning and improvements. If you can let me
|
||||
know of a tidier way of compiling Kicad please let me know.
|
||||
Maybe there is a way of automating things with scripts, my Linux knowledge
|
||||
doesn't go that far, yet.
|
||||
|
||||
|
||||
Ubuntu (8.04)
|
||||
-------------
|
||||
Original from:
|
||||
http://basicubuntu.blogspot.com/2009/02/installing-kicad-on-ubuntu.html
|
||||
|
||||
Required software and dependencies
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
We need to install the following packages: debhelper, dpatch, libx11-dev,
|
||||
libglu1-mesa-dev, libgl1-mesa-dev, mesa-common-dev, libwxbase2.8-dev,
|
||||
libwxgtk2.8-dev, libboost-dev, subversion, cmake (>= 2.6.0).
|
||||
|
||||
---------------------------------------
|
||||
sudo apt-get install debhelper dpatch libx11-dev libglu1-mesa-dev
|
||||
libgl1-mesa-dev mesa-common-dev libwxbase2.8-dev libwxgtk2.8-dev
|
||||
libboost-dev fakeroot subversion libboost-serialization-dev
|
||||
---------------------------------------
|
||||
|
||||
And finally, we need cmake, but we need atleast version 2.6, the one
|
||||
from the repository is not the updated one (atleast for ubuntu 8.04).
|
||||
You can download version 2.6 from newer ubuntu releases.
|
||||
Just search for cmake on http://packages.ubuntu.com then get a newer
|
||||
cmake .deb file and install the downloaded package on the console
|
||||
with:
|
||||
|
||||
---------------------------------------
|
||||
sudo dpkg -i <packagename.deb>
|
||||
---------------------------------------
|
||||
|
||||
But if what the repository gives you is atleast version 2.6, then
|
||||
simply
|
||||
|
||||
---------------------------------------
|
||||
sudo apt-get install cmake
|
||||
---------------------------------------
|
||||
|
||||
Get KiCad Sourcecode
|
||||
~~~~~~~~~~~~~~~~~~~~
|
||||
We will be getting the source codes through subversion. Create a directory
|
||||
where you'll be downloading the source codes, and go to that
|
||||
directory. type the following:
|
||||
|
||||
---------------------------------------
|
||||
svn checkout https://kicad.svn.sourceforge.net/svnroot/kicad/trunk/kicad kicad
|
||||
svn checkout https://kicad.svn.sourceforge.net/svnroot/kicad/trunk/kicad-doc kicad-doc
|
||||
svn checkout https://kicad.svn.sourceforge.net/svnroot/kicad/trunk/kicad-library kicad-library
|
||||
---------------------------------------
|
||||
|
||||
Also we need the following to get the debian specific stuff
|
||||
|
||||
---------------------------------------
|
||||
svn checkout http://svn.flexserv.de/kicad/trunk/debian
|
||||
---------------------------------------
|
||||
|
||||
Compiling
|
||||
~~~~~~~~~
|
||||
To compile simply do the following on your terminal (make sure you're still in
|
||||
the same directory where you did the svn)
|
||||
|
||||
---------------------------------------
|
||||
fakeroot debian/rules binary
|
||||
---------------------------------------
|
||||
hopefully, there will be no errors.
|
||||
You'll find the compiled version of KiCad in the following directory:
|
||||
|
||||
---------------------------------------
|
||||
debian/kicad/usr/bin/
|
||||
---------------------------------------
|
||||
to complete things up, you'll need to copy the following folders
|
||||
|
||||
---------------------------------------
|
||||
debian/kicad-common/usr/share/kicad/library
|
||||
debian/kicad-common/usr/share/kicad/modules
|
||||
debian/kicad-common/usr/share/kicad/template
|
||||
---------------------------------------
|
||||
in here
|
||||
|
||||
---------------------------------------
|
||||
debian/kicad/usr/share
|
||||
---------------------------------------
|
||||
again, to run KiCad go to
|
||||
|
||||
---------------------------------------
|
||||
cd debian/kicad/usr/bin/
|
||||
---------------------------------------
|
||||
and double click KiCad
|
||||
|
||||
|
||||
Debian squeeze (testing)
|
||||
------------------------
|
||||
|
||||
Special Note
|
||||
~~~~~~~~~~~~
|
||||
After SVN trunk revision 1753 boost library 1.36 or higher is needed
|
||||
to compile KiCad.
|
||||
|
||||
Installing Packages
|
||||
~~~~~~~~~~~~~~~~~~~
|
||||
The following packages should be installed with
|
||||
synaptic, apt-get or aptitude:
|
||||
- build-essential
|
||||
- cmake
|
||||
- libboost-dev
|
||||
- libwxgtk2.8-dev
|
||||
- libglut3-dev
|
||||
|
||||
The following packages will also be installed then
|
||||
- cmake dependencies
|
||||
- boost development dependencies
|
||||
- wxwidgets development dependencies
|
||||
- opengl3 (glut) development dependencies
|
||||
|
||||
Get KiCad sourcecode
|
||||
~~~~~~~~~~~~~~~~~~~~
|
||||
Checkout sourcecode using subversion or download latest release.
|
||||
|
||||
.*Subversion*
|
||||
---------------------------------------
|
||||
svn checkout https://kicad.svn.sourceforge.net/svnroot/kicad/trunk/kicad kicad
|
||||
---------------------------------------
|
||||
|
||||
.*Release*
|
||||
---------------------------------------
|
||||
wget http://iut-tice.ujf-grenoble.fr/cao/kicad-sources-2009-02-16.tar.gz
|
||||
tar -xvf kicad-sources-2009-02-16.tar.gz
|
||||
---------------------------------------
|
||||
|
||||
Compiling
|
||||
~~~~~~~~~
|
||||
Run 'cmake .' in the root of the source directory then build the
|
||||
binaries with 'make'.
|
||||
|
||||
Installing
|
||||
~~~~~~~~~~
|
||||
For installing you could use 'make install' or build a debian package.
|
|
@ -8,71 +8,56 @@
|
|||
static const unsigned char png[] = {
|
||||
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
|
||||
0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00, 0x1a, 0x08, 0x06, 0x00, 0x00, 0x00, 0xa9, 0x4a, 0x4c,
|
||||
0xce, 0x00, 0x00, 0x03, 0xf4, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xe5, 0x96, 0x49, 0x73, 0x1a,
|
||||
0x47, 0x14, 0x80, 0xfd, 0x0b, 0x72, 0xce, 0x39, 0x7f, 0x25, 0x55, 0x8e, 0xb3, 0x5c, 0x75, 0xf2,
|
||||
0xc1, 0x07, 0xc5, 0x3e, 0x25, 0x95, 0x54, 0xb9, 0x52, 0x4e, 0xaa, 0x9c, 0xca, 0x62, 0x24, 0x79,
|
||||
0x84, 0x85, 0x54, 0x89, 0xcb, 0x89, 0xb1, 0xd0, 0x62, 0x97, 0x6d, 0xb0, 0x85, 0x10, 0x52, 0x16,
|
||||
0x89, 0xc8, 0x36, 0x60, 0x08, 0x42, 0x68, 0xc0, 0x8a, 0xc2, 0x3a, 0xe8, 0x89, 0xdd, 0x62, 0x31,
|
||||
0x30, 0xec, 0xeb, 0xb4, 0x5f, 0xf7, 0x58, 0x94, 0x28, 0x22, 0x47, 0x4e, 0x52, 0x39, 0x24, 0x87,
|
||||
0x8f, 0xee, 0x19, 0x86, 0xf7, 0xbd, 0xee, 0x7e, 0xdd, 0xc3, 0x09, 0x42, 0xc8, 0x89, 0x7f, 0x03,
|
||||
0xf6, 0x71, 0x59, 0xa9, 0x18, 0xd6, 0xcc, 0x5c, 0xe7, 0x5f, 0xc6, 0xd5, 0x6b, 0xdf, 0x9a, 0x26,
|
||||
0x27, 0xbf, 0x7c, 0xed, 0x6f, 0x89, 0xb8, 0xf1, 0xd1, 0x6f, 0xb0, 0x85, 0x97, 0xb1, 0xc5, 0xbb,
|
||||
0x84, 0x31, 0x4e, 0x71, 0x9a, 0xe3, 0x46, 0x4f, 0x8e, 0x29, 0x15, 0x6f, 0x61, 0xcb, 0x18, 0x1b,
|
||||
0x57, 0x9c, 0xa2, 0x60, 0xff, 0x6d, 0x6c, 0xdf, 0xa1, 0x5c, 0x56, 0x8e, 0xbc, 0x4b, 0xc1, 0xfe,
|
||||
0x7b, 0x1c, 0x77, 0xe9, 0x8d, 0x57, 0x12, 0x95, 0x4a, 0xe2, 0x76, 0x20, 0xe8, 0x77, 0x07, 0x7b,
|
||||
0x04, 0x64, 0x42, 0x01, 0xb7, 0x20, 0x84, 0xf8, 0x3e, 0xc2, 0x02, 0x1f, 0x46, 0xb0, 0xff, 0xdb,
|
||||
0xb5, 0xef, 0xae, 0x9a, 0x5e, 0x49, 0xf4, 0x57, 0xd1, 0xcc, 0xdd, 0xb0, 0xfc, 0x0f, 0x45, 0xc5,
|
||||
0x62, 0x11, 0xf2, 0xf9, 0x7c, 0x1f, 0x99, 0x4c, 0x66, 0xe0, 0x5e, 0x36, 0x9b, 0xed, 0xbb, 0xce,
|
||||
0xe5, 0x72, 0xd0, 0xe9, 0x74, 0x8e, 0x2f, 0x72, 0x38, 0x1c, 0x10, 0x08, 0x04, 0x10, 0x3f, 0xf8,
|
||||
0xfd, 0x3e, 0xf0, 0xf9, 0xbc, 0x60, 0xb5, 0x5a, 0x59, 0x4b, 0xaf, 0xfd, 0x7e, 0x3f, 0xfb, 0xce,
|
||||
0x66, 0xb3, 0x41, 0x28, 0x14, 0x02, 0x41, 0x10, 0x20, 0x1c, 0x0e, 0xc3, 0xe6, 0xe6, 0x26, 0x88,
|
||||
0xa2, 0x78, 0x7c, 0x11, 0xcf, 0xf3, 0x50, 0xad, 0x56, 0xa0, 0x52, 0x29, 0x61, 0xd5, 0x15, 0x71,
|
||||
0x84, 0x79, 0x70, 0x3a, 0x9d, 0xac, 0x15, 0xc5, 0x22, 0x94, 0xcb, 0x25, 0x86, 0xdb, 0xcd, 0x43,
|
||||
0xb3, 0xd9, 0x80, 0x56, 0xab, 0xc5, 0x46, 0x12, 0x0c, 0x06, 0xf1, 0x37, 0x95, 0xa3, 0x45, 0x8d,
|
||||
0x46, 0x1d, 0x8c, 0xcb, 0x86, 0xff, 0xb0, 0x68, 0x7b, 0x7b, 0x1b, 0x83, 0xb8, 0x5f, 0xc0, 0x33,
|
||||
0xf1, 0x23, 0xb3, 0x19, 0x9c, 0x2e, 0x37, 0x98, 0xd6, 0x1f, 0xc6, 0xce, 0x7f, 0x72, 0xbe, 0xfd,
|
||||
0xf3, 0xea, 0x2f, 0x71, 0x8b, 0xc5, 0x02, 0x1e, 0x8f, 0x87, 0xf1, 0xe4, 0x89, 0x07, 0xec, 0x76,
|
||||
0x3b, 0x14, 0x0a, 0x85, 0xe3, 0x88, 0x24, 0x90, 0x24, 0x09, 0xba, 0xdd, 0x2e, 0xcb, 0xb0, 0xd3,
|
||||
0x69, 0x43, 0xbb, 0x2d, 0xf3, 0xab, 0xd3, 0x0d, 0x9e, 0x58, 0x07, 0xd6, 0xb7, 0xa2, 0xf1, 0x1d,
|
||||
0xaf, 0x57, 0xb2, 0xd8, 0x6c, 0xdd, 0x3b, 0x5a, 0x6d, 0x46, 0x7e, 0x4e, 0x86, 0x16, 0xd0, 0x91,
|
||||
0x23, 0xa2, 0x81, 0xeb, 0xf5, 0x1a, 0xe8, 0x17, 0xef, 0x43, 0x3c, 0x1e, 0xeb, 0x23, 0x9f, 0x7f,
|
||||
0xd6, 0x0b, 0xe2, 0xd8, 0xe4, 0xc1, 0x97, 0x92, 0xc0, 0xcc, 0x47, 0xe3, 0x58, 0x69, 0x12, 0x26,
|
||||
0x43, 0x22, 0xd1, 0x88, 0xa4, 0xd5, 0xdd, 0x29, 0xd1, 0x84, 0x68, 0x72, 0x54, 0x54, 0x2e, 0x97,
|
||||
0x59, 0xb2, 0x03, 0x22, 0xfa, 0x40, 0xad, 0x56, 0x81, 0xbb, 0xda, 0xdb, 0x60, 0x7d, 0x6c, 0x66,
|
||||
0x58, 0xac, 0x32, 0x21, 0x21, 0x88, 0xa3, 0x69, 0xb1, 0x35, 0xd8, 0x40, 0x91, 0x90, 0xee, 0x82,
|
||||
0xd5, 0x0d, 0x71, 0x41, 0x08, 0x4b, 0x98, 0x39, 0xa9, 0x56, 0xab, 0x04, 0xcb, 0x99, 0x4c, 0xcf,
|
||||
0xa8, 0x1b, 0xc5, 0x62, 0x21, 0x42, 0x45, 0xb4, 0xbc, 0x69, 0xcc, 0x01, 0x11, 0xcd, 0xb6, 0x52,
|
||||
0x29, 0xc3, 0x92, 0x71, 0xb1, 0x17, 0xb4, 0xd5, 0x6a, 0x32, 0x9a, 0xcd, 0x26, 0x5b, 0x6c, 0x8a,
|
||||
0x6b, 0x8b, 0x67, 0xb2, 0xa5, 0x95, 0x1f, 0x12, 0x78, 0x70, 0x4a, 0xb8, 0x41, 0x49, 0x3a, 0x9d,
|
||||
0x26, 0xb8, 0x69, 0x49, 0xad, 0x56, 0x23, 0x37, 0x6f, 0xcd, 0xb7, 0xf5, 0xfa, 0x85, 0xa4, 0xbc,
|
||||
0x69, 0xdb, 0x83, 0x22, 0x1a, 0x9c, 0x56, 0x90, 0x61, 0x49, 0xdf, 0x17, 0x98, 0xae, 0xdb, 0x61,
|
||||
0xea, 0x75, 0x19, 0xaf, 0xef, 0xf7, 0xc4, 0xee, 0xee, 0xae, 0xb4, 0xbf, 0xbf, 0x4f, 0xe2, 0xf1,
|
||||
0x38, 0x89, 0x46, 0xa3, 0x0c, 0x9c, 0x32, 0x62, 0xb1, 0x98, 0xbb, 0xcb, 0x2b, 0xc6, 0x1c, 0x8d,
|
||||
0x39, 0x3d, 0xab, 0xee, 0x17, 0xd1, 0xcc, 0xf1, 0x55, 0x00, 0x0b, 0xfa, 0x7b, 0x90, 0x7a, 0x9a,
|
||||
0x64, 0x24, 0x53, 0x89, 0x1e, 0x89, 0x64, 0x3f, 0x1b, 0x4e, 0x47, 0x72, 0x17, 0x76, 0xa5, 0x58,
|
||||
0x2c, 0x46, 0x50, 0x48, 0xf0, 0x54, 0x20, 0x58, 0xd6, 0x04, 0x4f, 0x0b, 0x36, 0x42, 0xc0, 0xef,
|
||||
0x34, 0x33, 0xd3, 0x15, 0xb5, 0xe6, 0x7b, 0x6b, 0x9f, 0x88, 0x66, 0x4f, 0xa7, 0x6e, 0xfd, 0x81,
|
||||
0x09, 0xd6, 0x4c, 0x3f, 0x31, 0x56, 0xd7, 0x28, 0x3f, 0xfe, 0x21, 0xfa, 0xc5, 0x7b, 0x49, 0x00,
|
||||
0x90, 0xf0, 0xc8, 0x61, 0xc1, 0xbd, 0x5e, 0x2f, 0x93, 0x45, 0x22, 0x11, 0x42, 0xe5, 0xa5, 0x52,
|
||||
0x89, 0xad, 0xdb, 0x18, 0x37, 0x5a, 0x19, 0x1a, 0x1a, 0x7a, 0xbd, 0x27, 0x92, 0xa7, 0xa5, 0xc6,
|
||||
0xa8, 0xd5, 0xaa, 0x6c, 0xa3, 0xca, 0x9b, 0xb5, 0xfc, 0x82, 0x52, 0x6f, 0x83, 0x52, 0x5c, 0x2e,
|
||||
0x67, 0x0a, 0xf6, 0x80, 0x09, 0x70, 0xf1, 0x59, 0x41, 0xec, 0xed, 0xed, 0x91, 0x42, 0x21, 0x4f,
|
||||
0x74, 0xba, 0xbb, 0x6d, 0xac, 0xde, 0xa6, 0x56, 0x7b, 0xbb, 0xf1, 0xb5, 0xe2, 0x2b, 0xf1, 0xec,
|
||||
0xd9, 0xe1, 0x0b, 0x3d, 0x91, 0x3c, 0xf7, 0x87, 0x25, 0xb2, 0x40, 0x0e, 0x2c, 0xb2, 0x69, 0xa5,
|
||||
0xa7, 0xc3, 0x01, 0x1b, 0x1b, 0x76, 0x26, 0xa2, 0xd3, 0x96, 0xcd, 0x65, 0xc9, 0x9a, 0x69, 0xb5,
|
||||
0x4b, 0xd7, 0x2b, 0x9b, 0xcd, 0x90, 0xb9, 0xf9, 0xb9, 0x06, 0x8d, 0x43, 0xe3, 0x0d, 0xac, 0xd1,
|
||||
0x51, 0x92, 0x03, 0x81, 0x28, 0x16, 0x18, 0x58, 0xbe, 0x0c, 0xbb, 0xfd, 0x71, 0x8a, 0x8e, 0x00,
|
||||
0x0b, 0x41, 0x9a, 0x9b, 0x9f, 0x2d, 0x19, 0x8d, 0x86, 0x5c, 0x32, 0x99, 0x24, 0x3b, 0x3b, 0x3b,
|
||||
0x24, 0x91, 0x48, 0x48, 0x58, 0x10, 0xe9, 0x3f, 0x15, 0xf5, 0x8f, 0xa4, 0x78, 0x48, 0x90, 0xc7,
|
||||
0xa3, 0xe5, 0x19, 0xc3, 0x62, 0x7d, 0xf4, 0x54, 0x33, 0xab, 0x91, 0xee, 0x2f, 0xe8, 0xf2, 0xf2,
|
||||
0x33, 0x45, 0x50, 0xab, 0xaf, 0xb7, 0x68, 0x99, 0xe3, 0xda, 0x91, 0x45, 0x83, 0xbe, 0x4d, 0x63,
|
||||
0xf5, 0x89, 0xf0, 0xef, 0xd6, 0x9b, 0xaa, 0x49, 0xe5, 0x8d, 0x03, 0x26, 0xa6, 0xc6, 0xa7, 0x29,
|
||||
0xd8, 0xd7, 0xc8, 0x70, 0x9a, 0x89, 0x29, 0x6e, 0x46, 0xa9, 0x92, 0xb9, 0x82, 0x5c, 0x1a, 0xf9,
|
||||
0x42, 0x77, 0xf1, 0xf3, 0x0b, 0x0f, 0x54, 0x53, 0xdc, 0xac, 0x6a, 0x6a, 0x9c, 0xf1, 0xd9, 0xc5,
|
||||
0x4f, 0x1f, 0xe2, 0xbb, 0xa8, 0x83, 0x2f, 0x4c, 0xb2, 0xb2, 0xb2, 0xdc, 0x9c, 0x50, 0x71, 0x37,
|
||||
0xb9, 0x2b, 0x23, 0xef, 0xf7, 0x44, 0xff, 0x24, 0xe7, 0xce, 0x0d, 0x7f, 0xf0, 0xd1, 0xc7, 0x1f,
|
||||
0x1a, 0xce, 0x9c, 0x39, 0x7d, 0xf2, 0xf0, 0xfd, 0xe7, 0x5a, 0xa9, 0xc0, 0xd6, 0x1c, 0xa6, 0x8b,
|
||||
0xf0, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
|
||||
0xce, 0x00, 0x00, 0x03, 0x00, 0x49, 0x44, 0x41, 0x54, 0x48, 0xc7, 0xbd, 0xd6, 0x5b, 0x48, 0x53,
|
||||
0x71, 0x00, 0xc7, 0x71, 0x1f, 0xa2, 0xc2, 0x12, 0xcc, 0xa2, 0x30, 0xad, 0x40, 0x2c, 0x82, 0x5e,
|
||||
0x44, 0x2c, 0x41, 0xcb, 0xeb, 0xd4, 0x34, 0x2c, 0x2d, 0x42, 0x85, 0xe8, 0x21, 0xc2, 0x5a, 0x06,
|
||||
0xdb, 0x74, 0xae, 0x09, 0x4e, 0x9d, 0xbb, 0x9d, 0x9d, 0xb3, 0xed, 0xe8, 0xd0, 0x4d, 0x77, 0xc9,
|
||||
0xd4, 0xcd, 0x74, 0x6a, 0x1c, 0x4d, 0xf0, 0x52, 0x06, 0x45, 0x8a, 0x79, 0xc9, 0x96, 0xe4, 0x8b,
|
||||
0xa1, 0x4f, 0x3d, 0x05, 0x41, 0x97, 0xf7, 0x5f, 0x6e, 0xc2, 0xe8, 0xb4, 0xed, 0x38, 0x27, 0xf8,
|
||||
0xf0, 0x19, 0xfc, 0x0f, 0x87, 0xff, 0x17, 0xfe, 0xe7, 0xbf, 0xf3, 0x3f, 0x11, 0xd1, 0xc5, 0xfb,
|
||||
0xb1, 0x17, 0x22, 0x3c, 0x3f, 0xb3, 0x4b, 0x33, 0xf8, 0xbc, 0xea, 0xde, 0x31, 0xd7, 0xf0, 0x00,
|
||||
0x5a, 0x8c, 0x34, 0xdc, 0x5f, 0x3e, 0x05, 0xbd, 0xc7, 0x33, 0xb7, 0x2f, 0xe4, 0xb9, 0xb0, 0xb1,
|
||||
0xb1, 0xb1, 0x63, 0x66, 0xb3, 0x09, 0xa6, 0x8e, 0x76, 0xd4, 0xd5, 0x49, 0xb1, 0xb2, 0xb2, 0x12,
|
||||
0xf0, 0x1e, 0xcf, 0xdc, 0xde, 0x50, 0x8d, 0x34, 0x12, 0x4a, 0x65, 0x3c, 0x54, 0xaa, 0xd3, 0xdb,
|
||||
0x38, 0x85, 0xd1, 0xd1, 0x06, 0xd6, 0x24, 0x6d, 0xed, 0x6d, 0x68, 0xed, 0x36, 0x42, 0xff, 0x4c,
|
||||
0x0f, 0x89, 0xb4, 0x16, 0x93, 0x93, 0x93, 0xc1, 0x43, 0xf5, 0xf5, 0x91, 0x30, 0x18, 0x73, 0x61,
|
||||
0x77, 0x8a, 0x38, 0xc9, 0x64, 0x51, 0x18, 0x1e, 0x16, 0xb3, 0x26, 0x31, 0x1a, 0x5b, 0x61, 0xe8,
|
||||
0xa1, 0x71, 0x90, 0x3c, 0x0c, 0x89, 0x5d, 0x0a, 0x35, 0xad, 0xf2, 0x5e, 0x5b, 0x5f, 0x5f, 0x0f,
|
||||
0x1c, 0x72, 0x32, 0x24, 0xe6, 0xd7, 0xfe, 0x70, 0x6a, 0x68, 0x8c, 0xf6, 0x0b, 0x19, 0x68, 0x03,
|
||||
0xf4, 0xdd, 0x7a, 0x44, 0x68, 0xf7, 0x79, 0x15, 0xb4, 0x15, 0xc1, 0x60, 0xa3, 0x21, 0x91, 0xd4,
|
||||
0xc2, 0xed, 0x76, 0xfb, 0x87, 0xfa, 0x18, 0x02, 0x4b, 0x5f, 0x7f, 0x72, 0x0a, 0x14, 0xa2, 0x74,
|
||||
0x14, 0xc8, 0x2e, 0xca, 0x17, 0xf2, 0x88, 0xd3, 0x9d, 0x01, 0x61, 0xd7, 0xa2, 0x46, 0x52, 0x83,
|
||||
0xf1, 0xf1, 0xf1, 0xff, 0x96, 0xae, 0xf5, 0x32, 0x9e, 0xf6, 0x56, 0x72, 0x0a, 0xb4, 0x74, 0x84,
|
||||
0x96, 0x00, 0xd1, 0xa5, 0x65, 0x85, 0x3c, 0x0e, 0x90, 0x87, 0x20, 0xe8, 0x14, 0x42, 0x4e, 0xc9,
|
||||
0x41, 0x90, 0x9a, 0xad, 0x90, 0xe0, 0x49, 0x24, 0xd4, 0x9a, 0x04, 0x10, 0x44, 0xa2, 0x97, 0x4c,
|
||||
0x16, 0x0b, 0xa9, 0xf4, 0x98, 0x6f, 0xfc, 0xaf, 0xb1, 0x31, 0x39, 0x2b, 0xa4, 0x52, 0xab, 0xa0,
|
||||
0xe9, 0x52, 0xfb, 0x26, 0x3f, 0x6f, 0xb8, 0x00, 0xca, 0xaa, 0x83, 0xd6, 0x46, 0x42, 0x63, 0x51,
|
||||
0x43, 0xdf, 0x69, 0x40, 0x63, 0x53, 0x23, 0xae, 0x14, 0xa6, 0xf9, 0x6f, 0x6f, 0xb1, 0x58, 0x0c,
|
||||
0x1e, 0x8f, 0x17, 0xd2, 0xf6, 0x6e, 0x56, 0xc8, 0xa1, 0xb4, 0xab, 0x70, 0x42, 0x17, 0x07, 0xb5,
|
||||
0x55, 0x03, 0xc2, 0xa6, 0x45, 0x99, 0xa9, 0x02, 0xc2, 0x5a, 0x21, 0xac, 0x56, 0x2b, 0x5c, 0x2e,
|
||||
0x17, 0xfa, 0x06, 0x9c, 0x38, 0x59, 0x18, 0x13, 0x7a, 0xa8, 0x7f, 0x70, 0x19, 0x26, 0xcb, 0x02,
|
||||
0xcb, 0x03, 0xbe, 0x14, 0xb4, 0xad, 0x05, 0x54, 0x07, 0x85, 0xfb, 0x95, 0x22, 0x48, 0xea, 0xeb,
|
||||
0x70, 0xbb, 0xbd, 0x0c, 0x4a, 0x8b, 0x12, 0x72, 0x79, 0x13, 0x7b, 0x33, 0x84, 0x1a, 0xca, 0xbe,
|
||||
0x3a, 0x8a, 0xa8, 0xe3, 0x0e, 0x96, 0xf4, 0x0c, 0x3e, 0xe4, 0x4a, 0x35, 0x92, 0x53, 0x6b, 0xbc,
|
||||
0xe3, 0xa4, 0x14, 0x11, 0xc8, 0x0e, 0x1d, 0x92, 0xe9, 0x14, 0x34, 0xd3, 0x0a, 0x4c, 0x4d, 0x4d,
|
||||
0x85, 0x17, 0x4a, 0xcb, 0x9f, 0xc0, 0xc8, 0xbb, 0xef, 0x3e, 0x0a, 0x5d, 0x0f, 0x28, 0x33, 0xe3,
|
||||
0x1b, 0x0f, 0x4f, 0x7f, 0xc3, 0x9d, 0xbb, 0x8f, 0x40, 0x58, 0x08, 0xd0, 0x16, 0xda, 0xbb, 0x2b,
|
||||
0x83, 0x86, 0xf8, 0x7c, 0x3e, 0x2e, 0xa5, 0x5e, 0xc4, 0xcd, 0x5b, 0xa5, 0x2c, 0x29, 0xe9, 0x4e,
|
||||
0xe4, 0x14, 0x4f, 0x61, 0x61, 0xed, 0x37, 0xa7, 0xfc, 0x1b, 0x0e, 0x5c, 0x2f, 0x79, 0xb8, 0xb9,
|
||||
0xa9, 0xea, 0xbd, 0xff, 0xa5, 0xa0, 0x21, 0x81, 0x40, 0x80, 0x8c, 0xcc, 0x0c, 0xf4, 0x3a, 0x7a,
|
||||
0x59, 0xd2, 0x73, 0x87, 0x90, 0x7d, 0x6d, 0x02, 0x73, 0xab, 0x3f, 0x38, 0x15, 0x94, 0xbe, 0x42,
|
||||
0x5a, 0x36, 0xe3, 0xff, 0x66, 0xd8, 0xcd, 0x33, 0x0a, 0x26, 0x3d, 0x67, 0x24, 0xfc, 0x90, 0xc5,
|
||||
0xbe, 0x08, 0x85, 0x66, 0x26, 0x24, 0x66, 0xeb, 0x42, 0xf8, 0xa1, 0x70, 0xed, 0x3a, 0x34, 0xab,
|
||||
0xb6, 0x63, 0xac, 0x40, 0xb0, 0x2d, 0x26, 0xaf, 0x0a, 0xe2, 0x84, 0xa4, 0xf0, 0x43, 0xaf, 0xef,
|
||||
0x29, 0xd0, 0x77, 0xb4, 0x08, 0x43, 0x99, 0x42, 0x4e, 0xfd, 0x89, 0xe5, 0xb0, 0xc7, 0xe4, 0x04,
|
||||
0x0e, 0x65, 0x65, 0x65, 0xa1, 0xa1, 0x41, 0xc6, 0xc9, 0x55, 0x22, 0x42, 0xff, 0xd9, 0x72, 0x7c,
|
||||
0xd8, 0x3c, 0x42, 0xb8, 0xbc, 0x7c, 0xdc, 0x16, 0x38, 0xc4, 0x30, 0x0c, 0x48, 0x8a, 0xdc, 0x3c,
|
||||
0x75, 0x15, 0x9c, 0x06, 0x4b, 0xab, 0xe1, 0x3a, 0x57, 0xb1, 0x79, 0x84, 0xfc, 0xe2, 0x34, 0x56,
|
||||
0x65, 0x0c, 0x1c, 0x0a, 0x95, 0x67, 0xe9, 0x9e, 0xc7, 0x97, 0xe0, 0x0d, 0xe1, 0xe2, 0xf4, 0x22,
|
||||
0xaf, 0x1a, 0xb6, 0x23, 0xd9, 0xbb, 0x0b, 0x39, 0xa2, 0x78, 0x21, 0xb1, 0xc5, 0x64, 0x85, 0xff,
|
||||
0xb9, 0xe5, 0xfe, 0xb8, 0x88, 0xe5, 0xf9, 0xb9, 0x6d, 0xbd, 0x7f, 0x3b, 0x8d, 0xd8, 0xc2, 0xc8,
|
||||
0xad, 0xd0, 0x5e, 0xf8, 0x0b, 0x55, 0xb5, 0x47, 0x12, 0x29, 0xf3, 0xf1, 0x14, 0x00, 0x00, 0x00,
|
||||
0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
|
||||
};
|
||||
|
||||
const BITMAP_OPAQUE hierarchy_cursor_xpm[1] = {{ png, sizeof( png ), "hierarchy_cursor_xpm" }};
|
||||
|
|
|
@ -12,10 +12,10 @@
|
|||
width="48"
|
||||
version="1.0"
|
||||
id="svg2"
|
||||
inkscape:version="0.47 r22583"
|
||||
inkscape:version="0.48.1 "
|
||||
sodipodi:docname="hierarchy_cursor.svg">
|
||||
<metadata
|
||||
id="metadata102">
|
||||
id="metadata91">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
|
@ -36,24 +36,24 @@
|
|||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="949"
|
||||
id="namedview100"
|
||||
inkscape:window-height="968"
|
||||
id="namedview89"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.61458333"
|
||||
inkscape:cx="-63.296329"
|
||||
inkscape:cy="-178.90751"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="25"
|
||||
inkscape:zoom="15.088678"
|
||||
inkscape:cx="22.775066"
|
||||
inkscape:cy="27.739621"
|
||||
inkscape:window-x="-4"
|
||||
inkscape:window-y="-4"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2" />
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="g"
|
||||
id="d"
|
||||
y2="106.25"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x2="49.333"
|
||||
gradientTransform="matrix(.89893 0 0 .89893 30.497 4.8167)"
|
||||
gradientTransform="matrix(0.89893,0,0,0.89893,30.497,4.8167)"
|
||||
y1="55.785"
|
||||
x1="49.333">
|
||||
<stop
|
||||
|
@ -67,12 +67,12 @@
|
|||
id="stop9" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
id="h"
|
||||
id="e"
|
||||
y2="54.974"
|
||||
spreadMethod="reflect"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x2="108.73"
|
||||
gradientTransform="matrix(.89893 0 0 .89893 8.9069 4.8167)"
|
||||
gradientTransform="matrix(0.89893,0,0,0.89893,8.9069,4.8167)"
|
||||
y1="54.974"
|
||||
x1="61.667">
|
||||
<stop
|
||||
|
@ -86,11 +86,11 @@
|
|||
id="stop14" />
|
||||
</linearGradient>
|
||||
<radialGradient
|
||||
id="l"
|
||||
id="f"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cy="112.43"
|
||||
cx="47.953"
|
||||
gradientTransform="matrix(1.8808 -.011744 .0062284 .9975 -24.45 .47983)"
|
||||
gradientTransform="matrix(1.8808,-0.011744,0.0062284,0.9975,-24.45,0.47983)"
|
||||
r="49.688">
|
||||
<stop
|
||||
stop-color="#eeeeec"
|
||||
|
@ -101,42 +101,106 @@
|
|||
offset="1"
|
||||
id="stop19" />
|
||||
</radialGradient>
|
||||
<radialGradient
|
||||
id="i"
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d"
|
||||
id="linearGradient3847"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cy="36.812"
|
||||
cx="25.375"
|
||||
gradientTransform="matrix(1,0,0,0.45357,0,20.115)"
|
||||
r="17.5">
|
||||
gradientTransform="matrix(0.76218778,0,0,0.43012929,-26.635041,-21.323625)"
|
||||
x1="49.333"
|
||||
y1="55.785"
|
||||
x2="49.333"
|
||||
y2="106.25" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#f"
|
||||
id="radialGradient3854"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.86334744,-0.00561939,0.00285904,0.47729408,-17.6905,-7.1554297)"
|
||||
cx="47.953"
|
||||
cy="112.43"
|
||||
r="49.688" />
|
||||
<linearGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d-7"
|
||||
id="linearGradient3847-1"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.76218778,0,0,0.43012929,-27.03269,-19.681039)"
|
||||
x1="49.333"
|
||||
y1="55.785"
|
||||
x2="49.333"
|
||||
y2="106.25" />
|
||||
<linearGradient
|
||||
id="d-7"
|
||||
y2="106.25"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x2="49.333"
|
||||
gradientTransform="matrix(0.89893,0,0,0.89893,30.497,4.8167)"
|
||||
y1="55.785"
|
||||
x1="49.333">
|
||||
<stop
|
||||
stop-color="#bfd9ff"
|
||||
offset="0"
|
||||
id="stop22" />
|
||||
id="stop7-4" />
|
||||
<stop
|
||||
stop-color="#bfd9ff"
|
||||
stop-opacity="0"
|
||||
offset="1"
|
||||
id="stop24" />
|
||||
</radialGradient>
|
||||
<radialGradient
|
||||
id="j"
|
||||
id="stop9-0" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
y2="106.25"
|
||||
x2="49.333"
|
||||
y1="55.785"
|
||||
x1="49.333"
|
||||
gradientTransform="matrix(0.76218778,0,0,0.43012929,-7.6640124,-7.3671659)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cy="24.149"
|
||||
cx="17.814"
|
||||
gradientTransform="matrix(2.644,0,-2.9365e-8,2.5344,31.4,-14.592)"
|
||||
r="9.125">
|
||||
id="linearGradient3877"
|
||||
xlink:href="#d-7"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
y2="106.25"
|
||||
x2="49.333"
|
||||
y1="55.785"
|
||||
x1="49.333"
|
||||
gradientTransform="matrix(0.76218778,0,0,0.43012929,-8.0290314,-5.3595613)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient3877-4"
|
||||
xlink:href="#d-7-8"
|
||||
inkscape:collect="always" />
|
||||
<linearGradient
|
||||
id="d-7-8"
|
||||
y2="106.25"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
x2="49.333"
|
||||
gradientTransform="matrix(0.89893,0,0,0.89893,30.497,4.8167)"
|
||||
y1="55.785"
|
||||
x1="49.333">
|
||||
<stop
|
||||
stop-color="#fff"
|
||||
stop-color="#bfd9ff"
|
||||
offset="0"
|
||||
id="stop27" />
|
||||
id="stop7-4-8" />
|
||||
<stop
|
||||
stop-color="#b6b6b6"
|
||||
stop-color="#bfd9ff"
|
||||
stop-opacity="0"
|
||||
offset="1"
|
||||
id="stop29" />
|
||||
</radialGradient>
|
||||
id="stop9-0-2" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
y2="106.25"
|
||||
x2="49.333"
|
||||
y1="55.785"
|
||||
x1="49.333"
|
||||
gradientTransform="matrix(0.76218778,0,0,0.43012929,0.00138586,6.7013661)"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
id="linearGradient3911"
|
||||
xlink:href="#d-7-8"
|
||||
inkscape:collect="always" />
|
||||
<radialGradient
|
||||
id="k"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cy="24.149"
|
||||
cx="17.814"
|
||||
cx="17.813999"
|
||||
gradientTransform="matrix(-8.5825,0,9.5321e-8,5.8317,228.28,-134.86)"
|
||||
r="9.125">
|
||||
<stop
|
||||
|
@ -148,277 +212,117 @@
|
|||
offset="1"
|
||||
id="stop34" />
|
||||
</radialGradient>
|
||||
<radialGradient
|
||||
id="c"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cy="36.812"
|
||||
cx="25.375"
|
||||
gradientTransform="matrix(1,0,0,0.45357,0,20.115)"
|
||||
r="17.5">
|
||||
<stop
|
||||
offset="0"
|
||||
id="stop7-6" />
|
||||
<stop
|
||||
stop-opacity="0"
|
||||
offset="1"
|
||||
id="stop9-2" />
|
||||
</radialGradient>
|
||||
<radialGradient
|
||||
id="d"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
cy="24.149"
|
||||
cx="17.813999"
|
||||
gradientTransform="matrix(-4.378,0,4.8624e-8,3.6749,144.59,-83.252)"
|
||||
r="9.125">
|
||||
<stop
|
||||
stop-color="#fff"
|
||||
offset="0"
|
||||
id="stop12-5" />
|
||||
<stop
|
||||
stop-color="#b6b6b6"
|
||||
offset="1"
|
||||
id="stop14-8" />
|
||||
</radialGradient>
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d"
|
||||
id="radialGradient2962"
|
||||
xlink:href="#k"
|
||||
id="radialGradient3117"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-3.0832503,0,3.4243938e-8,2.4318283,139.46226,-50.875918)"
|
||||
cx="17.813999"
|
||||
cy="24.149"
|
||||
r="9.125" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#c"
|
||||
id="radialGradient2965"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.73602213,0,0,0.19291847,77.030319,24.011818)"
|
||||
cx="25.375"
|
||||
cy="36.812"
|
||||
r="17.5" />
|
||||
<radialGradient
|
||||
inkscape:collect="always"
|
||||
xlink:href="#d"
|
||||
id="radialGradient2971"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(-3.0832503,0,3.4243938e-8,2.4318283,139.46226,-50.875918)"
|
||||
gradientTransform="matrix(-2.8623416,0,3.1790418e-8,2.1075085,81.515226,-46.238474)"
|
||||
cx="17.813999"
|
||||
cy="24.149"
|
||||
r="9.125" />
|
||||
</defs>
|
||||
<g
|
||||
opacity=".87109"
|
||||
transform="matrix(.37019 0 0 .39296 .46998 -2.5169)"
|
||||
id="g36">
|
||||
<path
|
||||
stroke-linejoin="round"
|
||||
d="m16.235 17.52v94.998l100.41 0.0519v-88.4l-61.431 0.10996 0.07655-6.7597h-39.052z"
|
||||
stroke-dashoffset="4"
|
||||
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
|
||||
stroke="#888a85"
|
||||
stroke-linecap="round"
|
||||
stroke-width="4.8249"
|
||||
fill="none"
|
||||
id="path38" />
|
||||
<path
|
||||
fill="url(#l)"
|
||||
d="m16.751 18.329v93.736l99.376-0.0523v-87.274l-61.014 0.06036 0.06958-6.4544-38.431-0.0157z"
|
||||
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
|
||||
id="path40" />
|
||||
<rect
|
||||
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
|
||||
height="19.256"
|
||||
width="64.77"
|
||||
y="44.606"
|
||||
x="41.876"
|
||||
fill="url(#h)"
|
||||
id="rect42" />
|
||||
<path
|
||||
d="m40.756 44.898h66.229"
|
||||
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
|
||||
stroke="#bbb"
|
||||
stroke-width="3.1463"
|
||||
fill="none"
|
||||
id="path44" />
|
||||
<rect
|
||||
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
|
||||
height="16.63"
|
||||
width="21.882"
|
||||
y="64.154"
|
||||
x="63.466"
|
||||
fill="url(#g)"
|
||||
id="rect46" />
|
||||
<path
|
||||
d="m41.998 44.023v19.548"
|
||||
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
|
||||
stroke="#bbb"
|
||||
stroke-width="3.1463"
|
||||
fill="none"
|
||||
id="path48" />
|
||||
<path
|
||||
d="m64.483 44.023v36.47"
|
||||
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
|
||||
stroke="#bbb"
|
||||
stroke-width="3.1463"
|
||||
fill="none"
|
||||
id="path50" />
|
||||
<path
|
||||
d="m85.415 44.023v52.808"
|
||||
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
|
||||
stroke="#bbb"
|
||||
stroke-width="3.1463"
|
||||
fill="none"
|
||||
id="path52" />
|
||||
<path
|
||||
d="m40.756 64.091h66.229"
|
||||
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
|
||||
stroke="#bbb"
|
||||
stroke-width="3.1463"
|
||||
fill="none"
|
||||
id="path54" />
|
||||
<path
|
||||
d="m84.52 96.744h22.465"
|
||||
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
|
||||
stroke="#bbb"
|
||||
stroke-width="3.1463"
|
||||
fill="none"
|
||||
id="path56" />
|
||||
<path
|
||||
d="m62.93 80.903h44.056"
|
||||
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
|
||||
stroke="#bbb"
|
||||
stroke-width="3.1463"
|
||||
fill="none"
|
||||
id="path58" />
|
||||
<path
|
||||
d="m105.48 44.023v52.808"
|
||||
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
|
||||
stroke="#bbb"
|
||||
stroke-width="3.1463"
|
||||
fill="none"
|
||||
id="path60" />
|
||||
<path
|
||||
d="m27.031 52.775v40.554"
|
||||
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
|
||||
stroke="#888a85"
|
||||
stroke-width="3.1463"
|
||||
fill="none"
|
||||
id="path62" />
|
||||
<path
|
||||
d="m28.21 74.571h22.465"
|
||||
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
|
||||
stroke="#888a85"
|
||||
stroke-width="3.1463"
|
||||
fill="none"
|
||||
id="path64" />
|
||||
<path
|
||||
d="m28.21 91.674h45.514"
|
||||
transform="matrix(1.1124,0,0,1.1124,-9.9084,-5.3582)"
|
||||
stroke="#888a85"
|
||||
stroke-width="3.1463"
|
||||
fill="none"
|
||||
id="path66" />
|
||||
<path
|
||||
fill-opacity=".75688"
|
||||
fill="#fff"
|
||||
d="m46.717-1.6694v-3.1071 3.1071z"
|
||||
id="path68" />
|
||||
<path
|
||||
fill-opacity=".75688"
|
||||
fill="#fff"
|
||||
d="m188.01-24.878v-3.1071 3.1071z"
|
||||
id="path70" />
|
||||
<path
|
||||
fill-opacity=".75688"
|
||||
fill="#fff"
|
||||
d="m85.034 57.276v-1.697 1.697z"
|
||||
id="path72" />
|
||||
</g>
|
||||
<rect
|
||||
style="fill:#dfdfdf;fill-opacity:1;stroke:#104d06;stroke-width:2;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect3030"
|
||||
width="46.04565"
|
||||
height="46.04565"
|
||||
x="0.97717398"
|
||||
y="0.97717553" />
|
||||
<path
|
||||
style="fill:none;stroke:#090909;stroke-width:2.25326276;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path47"
|
||||
d="M 9.4086086,14.947149 V 39.577497" />
|
||||
<path
|
||||
style="fill:none;stroke:#323331;stroke-width:2.17193031;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path49"
|
||||
d="M 8.8547504,25.421393 H 19.166905" />
|
||||
<path
|
||||
style="fill:none;stroke:#292a28;stroke-width:1.91258013;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
inkscape:connector-curvature="0"
|
||||
id="path51"
|
||||
d="M 10.503246,38.722694 H 26.70401" />
|
||||
<path
|
||||
fill-opacity=".75688"
|
||||
fill="#fff"
|
||||
d="m17.632 2.7214v-1.064 1.064z"
|
||||
id="path53" />
|
||||
<path
|
||||
fill-opacity=".75688"
|
||||
fill="#fff"
|
||||
d="m67.196-5.2262v-1.064 1.064z"
|
||||
id="path57" />
|
||||
<rect
|
||||
opacity=".57787"
|
||||
height="0"
|
||||
width=".41158"
|
||||
y="-314.59"
|
||||
x="-266.57"
|
||||
width="1.1118"
|
||||
y="-85.651"
|
||||
x="21.123"
|
||||
fill="#fff"
|
||||
id="rect74" />
|
||||
id="rect61" />
|
||||
<rect
|
||||
opacity=".57787"
|
||||
height="0"
|
||||
width=".41158"
|
||||
y="-326.62"
|
||||
x="-281.03"
|
||||
width="1.1118"
|
||||
y="-116.26"
|
||||
x="-17.93"
|
||||
fill="#fff"
|
||||
id="rect76" />
|
||||
id="rect63" />
|
||||
<rect
|
||||
opacity=".57787"
|
||||
height="0"
|
||||
width=".41158"
|
||||
y="-308.58"
|
||||
x="-370.13"
|
||||
width="1.1118"
|
||||
y="-70.349"
|
||||
x="-258.62"
|
||||
fill="#fff"
|
||||
id="rect78" />
|
||||
id="rect67" />
|
||||
<rect
|
||||
opacity=".57787"
|
||||
height="0"
|
||||
width=".41158"
|
||||
y="-396.16"
|
||||
x="-629.33"
|
||||
width="1.1118"
|
||||
y="-293.22"
|
||||
x="-958.8"
|
||||
fill="#fff"
|
||||
id="rect80" />
|
||||
id="rect83" />
|
||||
<rect
|
||||
opacity=".57787"
|
||||
height="0"
|
||||
width=".41158"
|
||||
y="-408.19"
|
||||
x="-643.79"
|
||||
width="1.1118"
|
||||
y="-323.82"
|
||||
x="-997.86"
|
||||
fill="#fff"
|
||||
id="rect82" />
|
||||
<g
|
||||
transform="matrix(0.33350907,0,0,0.36138836,-60.313457,-13.29018)"
|
||||
id="g84">
|
||||
<path
|
||||
d="m 71.736,0.71806 55.184,37.967 -25.16,0.575 10.55,15.532 c 3.2461,6.903 -11.361,9.4916 -13.796,4.3144 l -9.7381,-15.532 -17.852,13.519 0.812,-56.375 z"
|
||||
id="path86"
|
||||
style="fill:url(#k);fill-rule:evenodd;stroke:#555753;stroke-width:2.73300004;stroke-linejoin:round" />
|
||||
<path
|
||||
d="m 75.492,7.3276 42.028,28.753 -21.321,0.26 12.891,18.822 c 2.3586,3.4439 -5.3446,5.2526 -7.158,2.4544 L 89.985,39.169 74.641,50.4 z"
|
||||
id="path88"
|
||||
style="fill:#3a3c39;stroke:#9b9b9b;stroke-width:3.61599994" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.3321,0,0,1.0563,-144.79359,-36.610542)"
|
||||
id="g90">
|
||||
<path
|
||||
d="m 42.875,36.812 a 17.5,7.9375 0 1 1 -35,0 17.5,7.9375 0 1 1 35,0 z"
|
||||
transform="matrix(0.63117,0,0,0.44327,40.313,61.914)"
|
||||
display="block"
|
||||
id="path92"
|
||||
style="opacity:0.39872999;fill:url(#i);display:block" />
|
||||
<g
|
||||
transform="matrix(-1,0,0,1,125.25,7.375)"
|
||||
id="g94">
|
||||
<path
|
||||
d="m 79.625,44.332 -17,16.5 7.75,0.25 c 0,0 -3.25,6.75 -3.25,6.75 -1,3 3.5,4.125 4.25,1.875 l 3,-6.75 5.5,5.875 -0.25,-24.5 z"
|
||||
id="path96"
|
||||
style="fill:url(#j);fill-rule:evenodd;stroke:#555753;stroke-linejoin:round" />
|
||||
<path
|
||||
d="m 78.468,46.773 -13.476,13.186 6.9219,0.27746 -3.8721,7.7566 c -0.40273,1.6501 2.0283,2.4126 2.5071,1.1529 l 3.6831,-7.845 4.4247,4.7083 -0.18907,-19.236 z"
|
||||
id="path98"
|
||||
style="fill:none;stroke:#ffffff" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g2967"
|
||||
transform="matrix(0.96603881,0,0,0.95665806,-52.427719,17.049241)">
|
||||
<path
|
||||
style="fill:url(#radialGradient2971);fill-rule:evenodd;stroke:#555753;stroke-width:1.05779564;stroke-linejoin:round"
|
||||
d="M 83.224285,5.6624192 103.0485,21.494549 94.010732,21.73476 c 0,0 3.789904,6.476781 3.789904,6.476781 1.166114,2.878569 -4.081468,3.958065 -4.956089,1.799138 L 89.346136,23.533899 82.93237,29.17113 83.223905,5.6628162 z"
|
||||
id="path20" />
|
||||
<path
|
||||
style="fill:none;stroke:#ffffff;stroke-width:1.39947152"
|
||||
d="M 84.573648,8.4186325 99.671573,20.4087 l -7.367263,0.514383 4.339368,7.44259 c 0.840464,1.441534 -1.920024,2.190359 -2.571465,1.023513 l -4.294929,-7.692727 -5.511962,4.6832 z"
|
||||
id="path22" />
|
||||
</g>
|
||||
id="rect85" />
|
||||
<rect
|
||||
style="fill:url(#linearGradient3877);stroke:#0d16a4;stroke-width:2.718;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect31-9"
|
||||
x="20.28985"
|
||||
y="21.025156"
|
||||
width="18.553381"
|
||||
height="7.9572935" />
|
||||
<rect
|
||||
style="fill:url(#linearGradient3911);stroke:#a40d44;stroke-width:2.71816969;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect31-9-4"
|
||||
x="27.955248"
|
||||
y="35.093689"
|
||||
width="18.553381"
|
||||
height="7.9572935" />
|
||||
<rect
|
||||
style="fill:url(#linearGradient3847);stroke:#7c7c0a;stroke-width:2.71816969;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
||||
id="rect31"
|
||||
x="1.3188214"
|
||||
y="7.068697"
|
||||
width="18.553381"
|
||||
height="7.9572935" />
|
||||
<path
|
||||
style="fill:url(#radialGradient3117);fill-rule:evenodd;stroke:#3a3b39;stroke-width:1.2;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
id="path86"
|
||||
d="m 29.306383,2.7578583 18.404364,13.7208317 -8.391088,0.207798 3.518521,5.613085 c 1.082603,2.494663 -3.788997,3.430153 -4.601092,1.559173 l -3.247744,-5.613084 -5.953804,4.88561 0.270809,-20.3732691 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#008904;stroke:#9b9b9b;stroke-width:1.25536299000000010;fill-opacity:1"
|
||||
id="path88"
|
||||
d="m 30.559043,5.1464691 14.016719,10.3909999 -7.110747,0.09396 4.299265,6.802051 c 0.786615,1.244586 -1.782472,1.898229 -2.387258,0.886992 L 35.39259,16.65358 30.275226,20.712333 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 9.4 KiB |
Loading…
Reference in New Issue