--- /dev/null
+;Adds a border and a faint glow, based on the alpha channel
+;In: FilesIn (wildcard * possible)
+; Red Green Blue (border color, 0-255)
+; GlowBlur (Gauss filter, 0 to deactivate)
+; BorderGrow
+; BorderFeather
+; ObjectShrink
+; ObjectFeather
+;Out: Processed image files (overwrites input files)
+
+(define (addborder filesIn red green blue glowBlur borderGrow borderFeather objectShrink objectFeather)
+ (let*
+ (
+ (fileList (cadr (file-glob filesIn 1)))
+ (borderColor (list red green blue))
+ )
+
+ (while (not (null? fileList))
+ (let*
+ (
+ (file (car fileList))
+ (image (car (gimp-file-load 1 file file)))
+ (bottomLayer (car (gimp-image-get-active-layer image)))
+ (middleLayer (car (gimp-layer-new-from-drawable bottomLayer image)))
+ (topLayer (car (gimp-layer-new-from-drawable bottomLayer image)))
+ )
+
+ ;Add layers
+ (gimp-image-add-layer image middleLayer -1)
+ (gimp-image-add-layer image topLayer -1)
+
+ ;Bottom layer: if glowBlur = 0 clear layer, else create extended glow siluette of the object
+ (if (= glowBlur 0)
+ (gimp-edit-clear bottomLayer)
+ (begin
+ (gimp-context-set-foreground borderColor)
+ (gimp-selection-layer-alpha bottomLayer)
+ (gimp-selection-grow image (- borderGrow 1))
+ (gimp-selection-feather image borderFeather)
+ (gimp-edit-fill bottomLayer 0)
+ (gimp-selection-none image)
+ (plug-in-gauss-rle 1 image bottomLayer glowBlur 1 1)
+ )
+ )
+
+ ;Middle layer: create extended siluette of the object
+ (gimp-context-set-foreground borderColor)
+ (gimp-selection-layer-alpha middleLayer)
+ (gimp-selection-grow image borderGrow)
+ (gimp-selection-feather image borderFeather)
+ (gimp-edit-fill middleLayer 0)
+
+ ;Top layer: reduce border of the object on the top layer
+ (gimp-selection-layer-alpha topLayer)
+ (gimp-selection-shrink image objectShrink)
+ (gimp-selection-feather image objectFeather)
+ (gimp-selection-invert image)
+ (gimp-edit-clear topLayer)
+
+ ;Save image
+ (set! bottomLayer (car (gimp-image-merge-visible-layers image 1)))
+ (gimp-file-save 1 image bottomLayer file file)
+ (gimp-image-delete image)
+
+ (set! fileList (cdr fileList))
+ )
+ )
+ )
+)
--- /dev/null
+;Converts image files to .tga
+;In: FilesIn (wildcard * possible)
+; Compress (using RLE algorithm, 0=no, 1=yes)
+;Out: tga files with same name as input (overwrites tga input files)
+
+(define (all2tga filesIn compress)
+ (let*
+ (
+ (fileList (cadr (file-glob filesIn 1)))
+ )
+
+ (while (not (null? fileList))
+ (let*
+ (
+ (file (car fileList))
+ (image (car (gimp-file-load 1 file file)))
+ (drawable (car (gimp-image-get-active-layer image)))
+ )
+
+ ;Set extension to .tga
+ (set! file (car (strbreakup file ".")))
+ (set! file (string-append file ".tga"))
+
+ ;Save image as RLE compressed tga
+ (set! drawable (car (gimp-image-merge-visible-layers image 1)))
+ (file-tga-save 1 image drawable file file compress 0)
+ (gimp-image-delete image)
+
+ (set! fileList (cdr fileList))
+ )
+ )
+ )
+)
--- /dev/null
+;Adjust Desaturation, Brightness, Contrast and Alpha
+;In: FilesIn (wildcard * possible)
+; Desaturate (0=no, 1=yes)
+; Brightness (-127 to 127)
+; Contrast (-127 to 127)
+; Alpha (0.0 - 100.0)
+;Out: Processed image files (overwrites input files)
+
+(define (dbca filesIn desaturate brightness contrast alpha)
+ (let*
+ (
+ (fileList (cadr (file-glob filesIn 1)))
+ )
+
+ (while (not (null? fileList))
+ (let*
+ (
+ (file (car fileList))
+ (image (car (gimp-file-load 1 file file)))
+ (drawable (car (gimp-image-get-active-layer image)))
+ )
+
+ ;Desaturate
+ (if (= desaturate 1)
+ (gimp-desaturate-full drawable 0) )
+
+ ;Adjust brightness and contrast
+ (gimp-brightness-contrast drawable brightness contrast)
+
+ ;Adjust
+ (if (not (= alpha 0.0))
+ (gimp-layer-set-opacity drawable alpha)
+ )
+
+ ;Save image
+ (set! drawable (car (gimp-image-merge-visible-layers image 1)))
+ (gimp-file-save 1 image drawable file file)
+ (gimp-image-delete image)
+
+ (set! fileList (cdr fileList))
+ )
+ )
+ )
+)
--- /dev/null
+GIMP Palette
+Name: Luminos Palette
+Columns: 1
+#
+175 215 255 n_base
+191 223 255 n_border
+127 191 255 n_glow
+ 0 47 95 n_back
+223 239 255 f_base
+255 255 255 f_border
+159 207 255 f_glow
+ 0 63 127 f_back
+255 127 31 c_base
+255 159 95 c_border
+255 95 0 c_glow
+ 95 23 0 c_back
+255 159 95 cf_base
+255 191 159 cf_border
+255 127 63 cf_glow
+239 239 239 g_base
+255 255 255 g_border
+223 223 223 g_glow
+ 0 0 0 g_back
--- /dev/null
+#!/bin/bash
+#Save created files in this subdirectory:
+dir="created"
+
+#Create subdirectory if not already existing
+if [ ! -d "$dir" ]
+then
+ mkdir "$dir"
+fi
+
+#Method to render single Blender scene
+render_blendscene()
+{
+ blender -b "${PWD}/${blendfile}.blend" -S "$blendscene" -o "//${dir}/${blendscene}#" -f 1
+ rename "${blendscene}1" "$blendscene" "${dir}/${blendscene}1."*
+}
+
+#Method to create all icons of the specified color
+create_colorversion()
+{
+ #Export flagcontent from svg
+ inkscape -f "flagcontent_${colorversion}.svg" -e "flagcontent.png"
+
+ #Render the Blender scenes
+ blendfile="flags"
+ blendscene="flag_color_carrying"
+ render_blendscene
+ blendscene="flag_color_lost"
+ render_blendscene
+ blendscene="flag_color_taken"
+ render_blendscene
+ blendscene="notify_color_carrying"
+ render_blendscene
+ blendscene="notify_color_lost"
+ render_blendscene
+ blendscene="notify_color_taken"
+ render_blendscene
+
+ #Assemble notify_captured and notify_returned
+ cd "$dir"
+ composite -gravity Center "base_${othercolor}.png" "notify_color_taken.tga" "notify_color_captured.tga"
+ composite -gravity Center "base_${colorversion}.png" "notify_color_taken.tga" "notify_color_returned.tga"
+
+ #Create temporary files for shield icons
+ convert "flag_color_taken.tga" -filter Cubic -resize 192x192 "flag_temp.tga"
+ convert "notify_color_taken.tga" -filter Cubic -resize 192x96 "notify_temp.tga"
+
+ #Add white border to all .tga images of this color
+ gimp -d -f -i \
+ -b '(addborder "flag_color*.tga" 255 255 255 24 3 9 1 3)' \
+ -b '(addborder "notify_color*.tga" 255 255 255 16 2 6 1 3)' \
+ -b '(gimp-quit 0)'
+
+ #Assemble shielded icons
+ convert -size 256x256 xc:transparent "flag_color_shielded.tga"
+ composite -gravity Center -geometry +6+0 "flag_temp.tga" "flag_color_shielded.tga" "flag_color_shielded.tga"
+ composite -gravity Center "flag_shield.png" "flag_color_shielded.tga" "flag_color_shielded.tga"
+
+ convert -size 256x128 xc:transparent "notify_color_shielded.tga"
+ composite -gravity Center -geometry +6-1 "notify_temp.tga" "notify_color_shielded.tga" "notify_color_shielded.tga"
+ composite -gravity Center "notify_shield.png" "notify_color_shielded.tga" "notify_color_shielded.tga"
+
+ #Rename to color version
+ rename "color" "$colorversion" *".tga"
+ cd ..
+}
+
+#Export all neutral png images from svg files
+inkscape -f "flagcontent_carrying.svg" -e "flagcontent_carrying.png"
+inkscape -f "flag_shield.svg" -e "${dir}/flag_shield.png"
+inkscape -f "notify_shield.svg" -e "${dir}/notify_shield.png"
+
+#Create base images (colorize nyx.png)
+convert "nyx.png" -fill "#004fff" -tint 75 "${dir}/base_blue.png"
+convert "nyx.png" -fill "#ff0000" -tint 75 "${dir}/base_red.png"
+cd "$dir"
+gimp -d -f -i \
+-b '(addborder "base*.png" 255 255 255 0 1 3 1 2)' \
+-b '(gimp-quit 0)'
+cd ..
+
+#Create color versions
+colorversion="blue"
+othercolor="red"
+create_colorversion
+colorversion="red"
+othercolor="blue"
+create_colorversion
+
+#Remove unnecessary files
+rm flagcontent*.png
+cd "$dir"
+rm *".png"
+rm *"temp.tga"
+
+#RLE compress tga images
+gimp -d -f -i \
+-b '(all2tga "*.tga" 1)' \
+-b '(gimp-quit 0)'
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="256"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.47 r22583"
+ version="1.0"
+ sodipodi:docname="flag_shield.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <linearGradient
+ id="linearGradient3610">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="0"
+ id="stop3612" />
+ <stop
+ id="stop3624"
+ offset="0.60000002"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ <stop
+ id="stop3620"
+ offset="0.85000002"
+ style="stop-color:#ffffff;stop-opacity:0.49803922;" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0.89999998"
+ id="stop3622" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3614" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3610"
+ id="radialGradient3616"
+ cx="128"
+ cy="128"
+ fx="128"
+ fy="128"
+ r="120"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="232.55461"
+ inkscape:cy="59.73817"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline">
+ <path
+ d="M 248,128 A 120,120 0 1 1 8,128 120,120 0 1 1 248,128 z"
+ sodipodi:ry="120"
+ sodipodi:rx="120"
+ sodipodi:cy="128"
+ sodipodi:cx="128"
+ id="path3608"
+ style="fill:url(#radialGradient3616);fill-opacity:1;stroke:none"
+ sodipodi:type="arc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="384"
+ height="256"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.47 r22583"
+ version="1.0"
+ sodipodi:docname="flagcontent_blue.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3602"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="4"
+ id="feGaussianBlur3604" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="232.5"
+ inkscape:cy="72.79199"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922"
+ inkscape:bbox-paths="false">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline">
+ <path
+ style="fill:#001fdf;fill-opacity:1;stroke:none"
+ d="M -16,-16 -16,272 400,272 400,-16 -16,-16 z"
+ id="back" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#frame"
+ id="frameGlow"
+ style="filter:url(#filter3602)"
+ width="384"
+ height="256" />
+ <path
+ style="fill:#000f8f;fill-opacity:1;stroke:#2f5fff;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ d="M -16,-16 -16,272 112,272 136,248 248,248 272,272 400,272 400,-16 272,-16 248,8 136,8 112,-16 -16,-16 z M 32,32 96,32 104,40 280,40 288,32 352,32 360,40 360,88 352,96 352,160 360,168 360,216 352,224 288,224 280,216 104,216 96,224 32,224 24,216 24,168 32,160 32,96 24,88 24,40 32,32 z"
+ id="frame" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#xonotic"
+ id="xonoticGlow"
+ style="filter:url(#filter3602)"
+ width="384"
+ height="256" />
+ <path
+ id="xonotic"
+ d="M 157.80078,51.847656 C 130.73812,64.678594 112,92.228904 112,124.15234 112,168.31234 147.84,204.15234 192,204.15234 236.16,204.15234 272,168.31234 272,124.15234 272,92.228904 253.26191,64.678594 226.19922,51.847656 247.55878,63.838469 262,86.679719 262,112.90234 262,146.99371 237.58566,175.43265 205.30078,181.65234 200.99322,182.48215 195.75,201.65234 192,201.65234 188.25,201.65234 183.00678,182.48221 178.69922,181.65234 146.41444,175.43259 122,146.99371 122,112.90234 122,86.679719 136.44119,63.838469 157.80078,51.847656 z M 211.375,69.699219 C 189.35775,73.250594 161.17067,100.73184 133.71875,122.82421 L 167.46875,107.25781 147.97657,128 164.83203,120.10937 C 158.89212,131.8175 162.29869,152.06215 139.63672,153.52734 149.32144,165.97141 163.33759,174.8984 179.42187,177.98046 185.75,179.17184 190.12503,196.65234 191.94141,196.65234 193.87503,196.65234 198.25,179.17184 204.46093,177.98046 221.18375,174.77609 235.67184,165.26965 245.37891,152.04296 189.25197,158.20284 191.98478,104.76478 236.70703,93.527344 233.42453,90.468964 222.50532,91.040314 213.5625,92.453124 215.12093,82.031312 229.88772,77.041313 240.80859,78.390625 234.56734,72.058875 226.97103,67.485594 214.36328,72.746094 L 211.375,69.699219 z M 205.32031,78.46875 208.60156,81.710937 C 204.3215,85.335626 200.51553,85.574251 196.90234,82.335937 L 205.32031,78.46875 z"
+ style="fill:#000f8f;fill-opacity:1;stroke:#2f5fff;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="384"
+ height="256"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.47 r22583"
+ version="1.0"
+ sodipodi:docname="flagcontent_carrying.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3635"
+ x="-0.28031999"
+ width="1.56064"
+ y="-0.057917356"
+ height="1.1158347"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="3.36384"
+ id="feGaussianBlur3637" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3643"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="8.4708441"
+ id="feGaussianBlur3645" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="266.19384"
+ inkscape:cy="40.708732"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline">
+ <text
+ id="text3627"
+ y="197.696"
+ x="156.09599"
+ style="font-size:40px;font-style:normal;font-weight:normal;fill:#ffffff;fill-opacity:0.49803922;stroke:none;filter:url(#filter3635);font-family:Bitstream Vera Sans"
+ xml:space="preserve"><tspan
+ style="font-size:192px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:0.49803922;font-family:Nimbus Sans L;-inkscape-font-specification:Nimbus Sans L Bold"
+ y="197.696"
+ x="156.09599"
+ id="tspan3629"
+ sodipodi:role="line">!</tspan></text>
+ <path
+ transform="matrix(0.90947735,0,0,0.89441989,14.183523,20.45898)"
+ d="M 300.52038,120.2355 A 105.00536,106.77312 0 1 1 90.509651,120.2355 105.00536,106.77312 0 1 1 300.52038,120.2355 z"
+ sodipodi:ry="106.77312"
+ sodipodi:rx="105.00536"
+ sodipodi:cy="120.2355"
+ sodipodi:cx="195.51501"
+ id="path3613"
+ style="fill:none;stroke:#ffffff;stroke-width:22.17498398;stroke-miterlimit:4;stroke-opacity:0.49803922;stroke-dasharray:none;filter:url(#filter3643)"
+ sodipodi:type="arc" />
+ <path
+ sodipodi:type="arc"
+ style="fill:none;stroke:#ffffff;stroke-width:22.17498398000000037;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ id="path3601"
+ sodipodi:cx="195.51501"
+ sodipodi:cy="120.2355"
+ sodipodi:rx="105.00536"
+ sodipodi:ry="106.77312"
+ d="M 300.52038,120.2355 A 105.00536,106.77312 0 1 1 90.509651,120.2355 105.00536,106.77312 0 1 1 300.52038,120.2355 z"
+ transform="matrix(0.90947735,0,0,0.89441989,14.183523,20.45898)" />
+ <text
+ xml:space="preserve"
+ style="font-size:40px;font-style:normal;font-weight:normal;fill:#ffffff;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
+ x="156.09599"
+ y="197.696"
+ id="text2824"><tspan
+ sodipodi:role="line"
+ id="tspan2826"
+ x="156.09599"
+ y="197.696"
+ style="font-size:192px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#ffffff;fill-opacity:1;font-family:Nimbus Sans L;-inkscape-font-specification:Nimbus Sans L Bold">!</tspan></text>
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="384"
+ height="256"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.47 r22583"
+ version="1.0"
+ sodipodi:docname="flagcontent_red.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3602"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="4"
+ id="feGaussianBlur3604" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="232.5"
+ inkscape:cy="68.79199"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922"
+ inkscape:bbox-paths="false">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline">
+ <path
+ style="fill:#9f0000;fill-opacity:1;stroke:none"
+ d="M -16,-16 -16,272 400,272 400,-16 -16,-16 z"
+ id="back" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#frame"
+ id="frameGlow"
+ style="filter:url(#filter3602)"
+ width="384"
+ height="256" />
+ <path
+ style="fill:#7f0000;fill-opacity:1;stroke:#df1f17;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ d="M -16,-16 -16,272 112,272 136,248 248,248 272,272 400,272 400,-16 272,-16 248,8 136,8 112,-16 -16,-16 z M 32,32 96,32 104,40 280,40 288,32 352,32 360,40 360,88 352,96 352,160 360,168 360,216 352,224 288,224 280,216 104,216 96,224 32,224 24,216 24,168 32,160 32,96 24,88 24,40 32,32 z"
+ id="frame" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#xonotic"
+ id="xonoticGlow"
+ style="filter:url(#filter3602)"
+ width="384"
+ height="256" />
+ <path
+ id="xonotic"
+ d="M 157.80078,51.847656 C 130.73812,64.678594 112,92.228904 112,124.15234 112,168.31234 147.84,204.15234 192,204.15234 236.16,204.15234 272,168.31234 272,124.15234 272,92.228904 253.26191,64.678594 226.19922,51.847656 247.55878,63.838469 262,86.679719 262,112.90234 262,146.99371 237.58566,175.43265 205.30078,181.65234 200.99322,182.48215 195.75,201.65234 192,201.65234 188.25,201.65234 183.00678,182.48221 178.69922,181.65234 146.41444,175.43259 122,146.99371 122,112.90234 122,86.679719 136.44119,63.838469 157.80078,51.847656 z M 211.375,69.699219 C 189.35775,73.250594 161.17067,100.73184 133.71875,122.82421 L 167.46875,107.25781 147.97657,128 164.83203,120.10937 C 158.89212,131.8175 162.29869,152.06215 139.63672,153.52734 149.32144,165.97141 163.33759,174.8984 179.42187,177.98046 185.75,179.17184 190.12503,196.65234 191.94141,196.65234 193.87503,196.65234 198.25,179.17184 204.46093,177.98046 221.18375,174.77609 235.67184,165.26965 245.37891,152.04296 189.25197,158.20284 191.98478,104.76478 236.70703,93.527344 233.42453,90.468964 222.50532,91.040314 213.5625,92.453124 215.12093,82.031312 229.88772,77.041313 240.80859,78.390625 234.56734,72.058875 226.97103,67.485594 214.36328,72.746094 L 211.375,69.699219 z M 205.32031,78.46875 208.60156,81.710937 C 204.3215,85.335626 200.51553,85.574251 196.90234,82.335937 L 205.32031,78.46875 z"
+ style="fill:#7f0000;fill-opacity:1;stroke:#df1f17;stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="128"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.47 r22583"
+ version="1.0"
+ sodipodi:docname="notify_shield.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <linearGradient
+ id="linearGradient3610">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="0"
+ id="stop3612" />
+ <stop
+ id="stop3624"
+ offset="0.60000002"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ <stop
+ id="stop3620"
+ offset="0.85000002"
+ style="stop-color:#ffffff;stop-opacity:0.49803922;" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1;"
+ offset="0.89999998"
+ id="stop3622" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3614" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3610"
+ id="radialGradient3616"
+ cx="128"
+ cy="128"
+ fx="128"
+ fy="128"
+ r="120"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="232.55461"
+ inkscape:cy="87.98817"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline"
+ transform="translate(0,-128)">
+ <path
+ d="M 248,128 A 120,120 0 1 1 8,128 120,120 0 1 1 248,128 z"
+ sodipodi:ry="120"
+ sodipodi:rx="120"
+ sodipodi:cy="128"
+ sodipodi:cx="128"
+ id="path3608"
+ style="fill:url(#radialGradient3616);fill-opacity:1;stroke:none"
+ sodipodi:type="arc"
+ transform="matrix(0.73333333,0,0,0.46666667,34.133334,132.26667)" />
+ </g>
+</svg>
--- /dev/null
+#!/bin/bash
+#Save created files in this subdirectory:
+dir="created"
+
+#Create subdirectory, if not already existing
+if [ ! -d "$dir" ]
+then
+ mkdir "$dir"
+fi
+
+#Copy images to subdirectory, add white border
+cp *".tga" "$dir"
+cd "$dir"
+gimp -d -f -i \
+-b '(addborder "*.tga" 255 255 255 24 3 9 1 3)' \
+-b '(all2tga "*.tga" 1)' \
+-b '(gimp-quit 0)'
--- /dev/null
+#!/bin/bash
+#Save created files in this subdirectory:
+dir="created"
+
+#Create subdirectory, if not already existing
+if [ ! -d "$dir" ]
+then
+ mkdir "$dir"
+fi
+
+#Copy images to subdirectory, add white border
+cp *".tga" "$dir"
+cd "$dir"
+gimp -d -f -i \
+-b '(addborder "*.tga" 255 255 255 16 2 6 1 3)' \
+-b '(all2tga "*.tga" 1)' \
+-b '(gimp-quit 0)'
--- /dev/null
+#!/bin/bash
+#Save created files in this subdirectory:
+dir="created"
+
+#Create subdirectory if not already existing
+if [ ! -d "$dir" ]
+then
+ mkdir "$dir"
+fi
+
+#Export png from all svg files
+for f in *".svg"
+do
+ inkscape -f "$f" -e "`basename $f .svg`.png"
+done
+
+#Method to render single Blender scene
+render_blendscene()
+{
+ blender -b "${PWD}/${blendfile}.blend" -S "$blendscene" -o "//${dir}/${blendscene}#" -f 1
+ rename "${blendscene}1" "$blendscene" "${dir}/${blendscene}1."*
+}
+
+#Render the Blender scenes
+blendfile="keys"
+blendscene="key_forward"
+render_blendscene
+blendscene="key_forward_inv"
+render_blendscene
+blendscene="key_backward"
+render_blendscene
+blendscene="key_backward_inv"
+render_blendscene
+blendscene="key_left"
+render_blendscene
+blendscene="key_left_inv"
+render_blendscene
+blendscene="key_right"
+render_blendscene
+blendscene="key_right_inv"
+render_blendscene
+blendscene="key_jump"
+render_blendscene
+blendscene="key_jump_inv"
+render_blendscene
+blendscene="key_crouch"
+render_blendscene
+blendscene="key_crouch_inv"
+render_blendscene
+
+#Delete previously created png files
+for f in *".svg"
+do
+ rm "`basename $f .svg`.png"
+done
+
+#RLE compress tga files
+cd "$dir"
+gimp -d -f -i \
+-b '(all2tga "*.tga" 1)' \
+-b '(gimp-quit 0)'
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="256"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.47 r22583"
+ version="1.0"
+ sodipodi:docname="keyface_backward.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90"
+ inkscape:export-filename="/home/sev/Desktop/xdata/sourcefiles/icons_keys/keyface_backward.png">
+ <defs
+ id="defs4">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 128 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="256 : 128 : 1"
+ inkscape:persp3d-origin="128 : 85.333333 : 1"
+ id="perspective9" />
+ <filter
+ inkscape:collect="always"
+ id="filter3597"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.76"
+ id="feGaussianBlur3599" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="1"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="144.96197"
+ inkscape:cy="116.20333"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline">
+ <path
+ style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter3597)"
+ d="M 84,184 108,184 108,96 128,96 96,40 64,96 84,96 84,184 z"
+ id="path2814"
+ sodipodi:nodetypes="cccccccc"
+ transform="matrix(1,0,0,-1,0,224)" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="256"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.47 r22583"
+ version="1.0"
+ sodipodi:docname="keyface_crouch.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90"
+ inkscape:export-filename="/home/sev/Desktop/xdata/sourcefiles/icons_keys/keyface_crouch.png">
+ <defs
+ id="defs4">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 128 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="256 : 128 : 1"
+ inkscape:persp3d-origin="128 : 85.333333 : 1"
+ id="perspective9" />
+ <inkscape:perspective
+ id="perspective2824"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 0.5 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <filter
+ inkscape:collect="always"
+ id="filter3608"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.78"
+ id="feGaussianBlur3610" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="1"
+ inkscape:pageshadow="2"
+ inkscape:zoom="2"
+ inkscape:cx="144.96197"
+ inkscape:cy="112.20333"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline">
+ <path
+ style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter3608)"
+ d="M 40,80 184,80 112,144 40,80 z"
+ id="path2830"
+ sodipodi:nodetypes="cccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="256"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.47 r22583"
+ version="1.0"
+ sodipodi:docname="keyface_up.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90"
+ inkscape:export-filename="/home/sev/Desktop/xdata/sourcefiles/icons_keys/keyface_up.png">
+ <defs
+ id="defs4">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 128 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="256 : 128 : 1"
+ inkscape:persp3d-origin="128 : 85.333333 : 1"
+ id="perspective9" />
+ <filter
+ inkscape:collect="always"
+ id="filter3597">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.76"
+ id="feGaussianBlur3599" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="1"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.4142136"
+ inkscape:cx="144.96197"
+ inkscape:cy="143.82141"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline">
+ <path
+ style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter3597)"
+ d="M 84,184 108,184 108,96 128,96 96,40 64,96 84,96 84,184 z"
+ id="path2814"
+ sodipodi:nodetypes="cccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="256"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.47 r22583"
+ version="1.0"
+ sodipodi:docname="keyface_jump.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90"
+ inkscape:export-filename="/home/sev/Desktop/xdata/sourcefiles/icons_keys/keyface_jump.png">
+ <defs
+ id="defs4">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 128 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="256 : 128 : 1"
+ inkscape:persp3d-origin="128 : 85.333333 : 1"
+ id="perspective9" />
+ <inkscape:perspective
+ id="perspective2824"
+ inkscape:persp3d-origin="0.5 : 0.33333333 : 1"
+ inkscape:vp_z="1 : 0.5 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_x="0 : 0.5 : 1"
+ sodipodi:type="inkscape:persp3d" />
+ <filter
+ inkscape:collect="always"
+ id="filter3604"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.52"
+ id="feGaussianBlur3606" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="1"
+ inkscape:pageshadow="2"
+ inkscape:zoom="2"
+ inkscape:cx="144.96197"
+ inkscape:cy="110.20333"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline">
+ <path
+ style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter3604)"
+ d="M 40,80 184,80 112,144 40,80 z"
+ id="path2830"
+ sodipodi:nodetypes="cccc"
+ transform="matrix(1,0,0,-1,0,224)" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="256"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.47 r22583"
+ version="1.0"
+ sodipodi:docname="keyface_left.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90"
+ inkscape:export-filename="/home/sev/Desktop/xdata/sourcefiles/icons_keys/keyface_left.png">
+ <defs
+ id="defs4">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 128 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="256 : 128 : 1"
+ inkscape:persp3d-origin="128 : 85.333333 : 1"
+ id="perspective9" />
+ <filter
+ inkscape:collect="always"
+ id="filter3597"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.76"
+ id="feGaussianBlur3599" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="1"
+ inkscape:pageshadow="2"
+ inkscape:zoom="2"
+ inkscape:cx="144.96197"
+ inkscape:cy="136.99298"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline">
+ <path
+ sodipodi:nodetypes="cccccccc"
+ id="path2816"
+ d="M 84,168 108,168 108,80 128,80 96,24 64,80 84,80 84,168 z"
+ style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter3597)"
+ transform="matrix(0,-1,1,0,16,208)" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="256"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.47 r22583"
+ version="1.0"
+ sodipodi:docname="keyface_right.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90"
+ inkscape:export-filename="/home/sev/Desktop/xdata/sourcefiles/icons_keys/keyface_right.png">
+ <defs
+ id="defs4">
+ <inkscape:perspective
+ sodipodi:type="inkscape:persp3d"
+ inkscape:vp_x="0 : 128 : 1"
+ inkscape:vp_y="0 : 1000 : 0"
+ inkscape:vp_z="256 : 128 : 1"
+ inkscape:persp3d-origin="128 : 85.333333 : 1"
+ id="perspective9" />
+ <filter
+ inkscape:collect="always"
+ id="filter3597"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.76"
+ id="feGaussianBlur3599" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="1"
+ inkscape:pageshadow="2"
+ inkscape:zoom="2"
+ inkscape:cx="144.96197"
+ inkscape:cy="134.99298"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline">
+ <path
+ sodipodi:nodetypes="cccccccc"
+ id="path2816"
+ d="M 84,168 108,168 108,80 128,80 96,24 64,80 84,80 84,168 z"
+ style="fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter3597)"
+ transform="matrix(0,-1,-1,0,208,208)" />
+ </g>
+</svg>
--- /dev/null
+#!/bin/bash
+#Save created files in this subdirectory:
+dir="created"
+
+#Create subdirectory, if not already existing
+if [ ! -d "$dir" ]
+then
+ mkdir "$dir"
+fi
+
+#Copy images to subdirectory, add white border
+cp *".tga" "$dir"
+cd "$dir"
+gimp -d -f -i \
+-b '(addborder "*.tga" 255 255 255 24 3 9 1 3)' \
+-b '(all2tga "*.tga" 1)' \
+-b '(gimp-quit 0)'
--- /dev/null
+#!/bin/bash
+#Save created files in this subdirectory:
+dir="created"
+
+#Uses this font:
+font="DejaVu-Sans-Bold"
+
+#Create subdirectory if not already existing
+if [ ! -d "$dir" ]
+then
+ mkdir "$dir"
+fi
+
+#Method to render single Blender scene
+render_blendscene()
+{
+ blender -b "${PWD}/${blendfile}.blend" -S "$blendscene" -o "//${dir}/${blendscene}#" -f 1
+ rename "${blendscene}1" "$blendscene" "${dir}/${blendscene}1."*
+}
+
+#Render the Blender scenes
+blendfile="notify"
+blendscene="notify_lava"
+render_blendscene
+blendscene="notify_slime"
+render_blendscene
+blendscene="notify_water"
+render_blendscene
+
+#Export png from svg, render notify_telefrag
+inkscape -f "crosshair.svg" -e "crosshair.png"
+blendscene="notify_telefrag"
+render_blendscene
+rm "crosshair.png"
+
+#Create death images
+convert "splatter.png" -resize 256x128 -fill "#bf0000" -tint 75 "${dir}/notify_death.tga"
+convert "splatter.png" -resize 256x128 -fill "#004fff" -tint 100 "${dir}/notify_teamkill_blue.tga"
+convert "splatter.png" -resize 256x128 -fill "#ff0000" -tint 100 "${dir}/notify_teamkill_red.tga"
+
+#Copy notify photos to dir
+cp "notify"*".tga" "$dir"
+
+#Add white border to all tga images
+cd "$dir"
+gimp -d -f -i \
+-b '(addborder "*.tga" 255 255 255 16 2 6 1 2)' \
+-b '(gimp-quit 0)'
+
+#Create death related icons
+convert -size 256x128 xc:transparent -gravity Center -font "$font" -pointsize 32 -fill "#ffffff" -draw "text -8,0 'SELF'" -channel RGBA -blur 1x1 "temp.tga"
+composite -gravity Center "temp.tga" "notify_death.tga" "notify_selfkill.tga"
+
+convert -size 256x128 xc:transparent -gravity Center -font "$font" -pointsize 32 -fill "#ffffff" -draw "text -8,0 'FALL'" -channel RGBA -blur 1x1 "temp.tga"
+composite -gravity Center "temp.tga" "notify_death.tga" "notify_fall.tga"
+
+convert -size 256x128 xc:transparent -gravity Center -font "$font" -pointsize 28 -fill "#ffffff" -draw "text -6,0 'AMMO'" -channel RGBA -blur 1x1 "temp.tga"
+composite -gravity Center "temp.tga" "notify_death.tga" "notify_outofammo.tga"
+
+convert -size 256x128 xc:transparent -gravity Center -font "$font" -pointsize 32 -fill "#ffffff" -draw "text -5,0 'HEAD'" -channel RGBA -blur 1x1 "temp.tga"
+composite -gravity Center "temp.tga" "notify_death.tga" "notify_headshot.tga"
+
+#Create teamkill icons
+convert -size 256x128 xc:transparent -gravity Center -font "$font" -pointsize 32 -fill "#ffffff" -draw "text -6,0 'TEAM'" -channel RGBA -blur 1x1 "temp.tga"
+composite -gravity Center "temp.tga" "notify_teamkill_blue.tga" "notify_teamkill_blue.tga"
+
+convert -size 256x128 xc:transparent -gravity Center -font "$font" -pointsize 32 -fill "#ffffff" -draw "text -6,0 'TEAM'" -channel RGBA -blur 1x1 "temp.tga"
+composite -gravity Center "temp.tga" "notify_teamkill_red.tga" "notify_teamkill_red.tga"
+
+rm "temp.tga"
+
+#Render shootingstar and void (AFTER running the addborder script on all tga files)
+cd ..
+blendscene="notify_shootingstar"
+render_blendscene
+blendscene="notify_void"
+render_blendscene
+
+#RLE compress tga files
+cd "$dir"
+gimp -d -f -i \
+-b '(all2tga "*.tga" 1)' \
+-b '(gimp-quit 0)'
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="256"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.47 r22583"
+ version="1.0"
+ sodipodi:docname="scope.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="242.89805"
+ inkscape:cy="91.73817"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline">
+ <path
+ style="fill:none;stroke:#ffffff;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ d="M 0,128 256,128 0,128"
+ id="path3597" />
+ <path
+ id="path3595"
+ d="M 128,256 128,0 128,256"
+ style="fill:none;stroke:#ffffff;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+ <path
+ style="fill:none;stroke:#ffffff;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ d="M 128,88 128,0 128,88"
+ id="path2821" />
+ <path
+ id="path3599"
+ d="M 128,256 128,168 128,256"
+ style="fill:none;stroke:#ffffff;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+ <path
+ style="fill:none;stroke:#ffffff;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ d="M 168,128 256,128 168,128"
+ id="path3601" />
+ <path
+ id="path3603"
+ d="M 0,128 88,128 0,128"
+ style="fill:none;stroke:#ffffff;stroke-width:12;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+ </g>
+</svg>
--- /dev/null
+#!/bin/bash
+#Save created files in this subdirectory:
+dir="created"
+
+#Create subdirectory if not already existing
+if [ ! -d "$dir" ]
+then
+ mkdir "$dir"
+fi
+
+#Method to render single Blender scene
+render_blendscene()
+{
+ blender -b "${PWD}/${blendfile}.blend" -S "$blendscene" -o "//${dir}/${blendscene}#" -f 1
+ rename "${blendscene}1" "$blendscene" "${dir}/${blendscene}1."*
+}
+
+#Render the Blender blendscenes
+blendfile="race"
+blendscene="race_newrecordserver"
+render_blendscene
+blendscene="race_newrank"
+render_blendscene
+blendscene="race_newtime"
+render_blendscene
+blendscene="race_newfail"
+render_blendscene
+
+#Add white border and RLE compress tga files
+cd "$dir"
+gimp -d -f -i \
+-b '(addborder "*.tga" 255 255 255 24 3 9 0 2)' \
+-b '(all2tga "*.tga" 1)' \
+-b '(gimp-quit 0)'
+
+#For compatibility with current HUD:
+#Copy and rename newrank icons
+cp "race_newrank.tga" "race_newrankyellow.tga"
+rename "newrank" "newrankgreen" "race_newrank.tga"
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="256"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.47 r22583"
+ version="1.0"
+ sodipodi:docname="dial_raw.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.4142136"
+ inkscape:cx="166.93443"
+ inkscape:cy="113.06755"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline">
+ <path
+ sodipodi:type="arc"
+ style="fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none"
+ id="path3722"
+ sodipodi:cx="176"
+ sodipodi:cy="176"
+ sodipodi:rx="48"
+ sodipodi:ry="48"
+ d="M 224,176 A 48,48 0 1 1 128,176 48,48 0 1 1 224,176 z"
+ transform="matrix(-1.2819476,1.7462783,1.7462783,1.2819476,46.277786,-404.96774)" />
+ <path
+ style="fill:#000000;fill-opacity:1;stroke:none"
+ d="M 120,20.28125 C 96.36472,22.011193 74.84787,31.369866 57.875,45.875 L 66.375,54.375 C 81.13228,42.006788 99.67224,34.023171 120,32.34375 L 120,20.28125 z M 136,20.28125 136,32.34375 C 156.32776,34.023171 174.86772,42.006788 189.625,54.375 L 198.125,45.875 C 181.15213,31.369866 159.63528,22.011193 136,20.28125 z M 124,24 124,48 132,48 132,24 124,24 z M 106.125,38.625 102.25,39.65625 105.375,51.25 109.21875,50.21875 106.125,38.625 z M 149.875,38.625 146.78125,50.21875 150.625,51.25 153.75,39.65625 149.875,38.625 z M 83.71875,47.3125 80.28125,49.3125 86.28125,59.71875 89.71875,57.71875 83.71875,47.3125 z M 172.28125,47.3125 166.28125,57.71875 169.71875,59.71875 175.71875,49.3125 172.28125,47.3125 z M 57.28125,51.625 51.625,57.28125 68.59375,74.25 74.25,68.59375 57.28125,51.625 z M 198.71875,51.625 181.75,68.59375 187.40625,74.25 204.375,57.28125 198.71875,51.625 z M 45.875,57.875 C 31.36987,74.84787 22.01119,96.36472 20.28125,120 L 32.34375,120 C 34.02317,99.67224 42.00679,81.13228 54.375,66.375 L 45.875,57.875 z M 210.125,57.875 201.625,66.375 C 213.99321,81.13228 221.97683,99.67224 223.65625,120 L 235.71875,120 C 233.98881,96.36472 224.63013,74.84787 210.125,57.875 z M 49.3125,80.28125 47.3125,83.71875 57.71875,89.71875 59.71875,86.28125 49.3125,80.28125 z M 206.6875,80.28125 196.28125,86.28125 198.28125,89.71875 208.6875,83.71875 206.6875,80.28125 z M 39.65625,102.25 38.625,106.125 50.21875,109.21875 51.25,105.375 39.65625,102.25 z M 216.34375,102.25 204.75,105.375 205.78125,109.21875 217.375,106.125 216.34375,102.25 z M 24,124 24,132 48,132 48,124 24,124 z M 208,124 208,132 232,132 232,124 208,124 z M 20.28125,136 C 22.01119,159.63528 31.36987,181.15213 45.875,198.125 L 54.375,189.625 C 42.00679,174.86772 34.02317,156.32776 32.34375,136 L 20.28125,136 z M 50.21875,146.78125 38.625,149.875 39.65625,153.75 51.25,150.625 50.21875,146.78125 z M 57.71875,166.28125 47.3125,172.28125 49.3125,175.71875 59.71875,169.71875 57.71875,166.28125 z M 68.59375,181.75 51.625,198.71875 57.28125,204.375 74.25,187.40625 68.59375,181.75 z"
+ id="path2822" />
+ <text
+ xml:space="preserve"
+ style="font-size:40px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans"
+ id="text3724"><textPath
+ xlink:href="#path3722"
+ id="textPath3731"
+ style="font-size:24px;font-weight:bold;-inkscape-font-specification:Bitstream Vera Sans Bold"><tspan
+ style="font-size:20px"
+ id="tspan3734">NEW</tspan><tspan
+ style="font-size:32px"
+ id="tspan3736"> RECORD</tspan></textPath></text>
+ <path
+ style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
+ d="M 128 64 C 92.653776 64 64 92.653777 64 128 C 64 163.34622 92.653776 192 128 192 C 163.34622 192 192 163.34622 192 128 C 192 92.653777 163.34622 64 128 64 z M 128 68 C 161.13708 68 188 94.862913 188 128 C 188 161.13709 161.13708 188 128 188 C 94.862915 188 68 161.13709 68 128 C 68 94.862913 94.862915 68 128 68 z M 128 72 C 97.072055 72 72 97.072052 72 128 C 72 158.92795 97.072055 184 128 184 C 158.92794 184 184 158.92795 184 128 C 184 97.072052 158.92794 72 128 72 z M 128 80 C 154.50967 80 176 101.49033 176 128 C 176 154.50967 154.50967 176 128 176 C 101.49033 176 80 154.50967 80 128 C 80 101.49033 101.49033 80 128 80 z M 128 84 C 103.69947 84 84 103.69947 84 128 C 84 152.30053 103.69947 172 128 172 C 152.30053 172 172 152.30053 172 128 C 172 103.69947 152.30053 84 128 84 z M 128 96 C 145.67311 96 160 110.32689 160 128 C 160 145.67311 145.67311 160 128 160 C 110.32689 160 96 145.67311 96 128 C 96 110.32689 110.32689 96 128 96 z "
+ id="path3593" />
+ </g>
+</svg>
--- /dev/null
+#!/bin/bash
+#Save created files in this subdirectory:
+dir="created"
+
+#Create subdirectory if not already existing
+if [ ! -d "$dir" ]
+then
+ mkdir "$dir"
+fi
+
+#Method to render single Blender scene
+render_blendscene()
+{
+ blender -b "${PWD}/${blendfile}.blend" -S "$blendscene" -o "//${dir}/${blendscene}#" -f 1
+ rename "${blendscene}1" "$blendscene" "${dir}/${blendscene}1."*
+}
+
+#Render the Blender scenes
+blendfile="voteprogress"
+blendscene="voteprogress_back"
+render_blendscene
+blendscene="voteprogress_prog"
+render_blendscene
+blendscene="voteprogress_voted"
+render_blendscene
+
+#Edit voteprogress_back and RLE compress tga files
+cd "$dir"
+gimp -d -f -i \
+-b '(dbca "voteprogress_back.tga" 1 127 0 0.0)' \
+-b '(dbca "voteprogress_back.tga" 0 127 0 0.0)' \
+-b '(addborder "voteprogress_back.tga" 255 255 255 16 2 6 0 2)' \
+-b '(all2tga "*.tga" 1)' \
+-b '(gimp-quit 0)'
--- /dev/null
+#!/bin/bash
+#Save created files in this subdirectory:
+dir="created"
+
+#Create subdirectory, if not already existing
+if [ ! -d "$dir" ]
+then
+ mkdir "$dir"
+fi
+
+#Copy images to subdirectory, add white border
+cp *".tga" "$dir"
+cd "$dir"
+gimp -d -f -i \
+-b '(dbca "*.tga" 0 15 7 0.0)' \
+-b '(addborder "*.tga" 255 255 255 16 2 6 1 3)' \
+-b '(all2tga "*.tga" 1)' \
+-b '(gimp-quit 0)'
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="ammo_current_bg.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3593"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.80000000000000004"
+ id="feGaussianBlur3595" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3759"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.20000000000000001"
+ id="feGaussianBlur3761" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3761">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="2"
+ id="feGaussianBlur3763" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.6595651"
+ inkscape:cx="88.434142"
+ inkscape:cy="41.830572"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline"
+ transform="translate(0,-64)">
+ <path
+ style="fill:#ffffff;fill-opacity:0.30980393;stroke:none;filter:url(#filter3593)"
+ d="M 11,68 245,68 253,76 253,116 245,124 11,124 3,116 3,76 z"
+ id="back"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccc" />
+ <path
+ style="fill:#ffffff;fill-opacity:0.12156863;stroke:none;filter:url(#filter3759)"
+ d="M 4,74 4,78 252,78 252,74 z M 4,82 4,86 252,86 252,82 z M 4,90 4,94 252,94 252,90 z M 4,98 4,102 252,102 252,98 z M 4,106 4,110 252,110 252,106 z M 4,114 4,118 252,118 252,114 z"
+ id="stripes"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccc" />
+ <path
+ id="path2991"
+ d="M 10,3 2,13 11,6 245,6 254,13 246,3 z M 2,51 10,61 246,61 254,51 245,58 11,58 z"
+ style="fill:#dfdfdf;fill-opacity:1;fill-rule:evenodd;stroke:#dfdfdf;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3761)"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccc"
+ transform="translate(0,64)" />
+ <path
+ style="fill:#efefef;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3759)"
+ d="M 10,3 2,13 11,6 245,6 254,13 246,3 z M 2,51 10,61 246,61 254,51 245,58 11,58 z"
+ id="frame"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccc"
+ transform="translate(0,64)" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="512"
+ height="512"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="border_default.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="45"
+ inkscape:export-ydpi="45">
+ <defs
+ id="defs4">
+ <linearGradient
+ id="linearGradient3611">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.05882353;"
+ offset="0"
+ id="stop3613" />
+ <stop
+ id="stop3621"
+ offset="0.2"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ <stop
+ id="stop3619"
+ offset="0.80000001"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.05882353;"
+ offset="1"
+ id="stop3615" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3611"
+ id="linearGradient3617"
+ x1="256"
+ y1="512"
+ x2="256"
+ y2="0"
+ gradientUnits="userSpaceOnUse" />
+ <filter
+ inkscape:collect="always"
+ id="filter3779">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.80000000000000004"
+ id="feGaussianBlur3781" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3812">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="5.9000000000000004"
+ id="feGaussianBlur3814" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.26703378"
+ inkscape:cx="1064.2178"
+ inkscape:cy="473.27407"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="0,128"
+ id="guide3179" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="0,384"
+ id="guide3181" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="128,0"
+ id="guide3183" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="384,0"
+ id="guide3185" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline">
+ <path
+ style="fill:#000000;fill-opacity:0.74901961;stroke:none"
+ d="M 488,22 498,32 498,480 488,490 24,490 14,480 14,32 24,22 z"
+ id="back"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccc" />
+ <path
+ style="fill:url(#linearGradient3617);fill-opacity:1;stroke:none;filter:url(#filter3779)"
+ d="M 14,32 14,40 498,40 498,32 z M 14,48 14,56 498,56 498,48 z M 14,64 14,72 498,72 498,64 z M 14,80 14,88 498,88 498,80 z M 14,96 14,104 498,104 498,96 z M 14,112 14,120 498,120 498,112 z M 14,392 14,400 498,400 498,392 z M 14,408 14,416 498,416 498,408 z M 14,424 14,432 498,432 498,424 z M 14,440 14,448 498,448 498,440 z M 14,456 14,464 498,464 498,456 z M 14,472 14,480 498,480 498,472 z"
+ id="stripes"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
+ <path
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0"
+ id="path3001"
+ d="M 27,12 12,27 12,485 27,500 36,491 476,491 485,500 500,485 500,27 485,12 476,21 36,21 z M 37,12 40,15 472,15 475,12 z M 27,24 485,24 497,36 497,476 485,488 27,488 15,476 15,36 z M 40,497 37,500 475,500 472,497 z"
+ style="fill:#dfdfdf;fill-opacity:1;stroke:#dfdfdf;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3812)" />
+ <path
+ style="fill:#efefef;fill-opacity:1;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3779)"
+ d="M 27,12 12,27 12,485 27,500 36,491 476,491 485,500 500,485 500,27 485,12 476,21 36,21 z M 37,12 40,15 472,15 475,12 z M 27,24 485,24 497,36 497,476 485,488 27,488 15,476 15,36 z M 40,497 37,500 475,500 472,497 z"
+ id="frame"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+#!/bin/bash
+#Save created files in this subdirectory:
+dir="created"
+
+#Create subdirectory if not already existing
+if [ ! -d "$dir" ]
+then
+ mkdir "$dir"
+fi
+
+#Export png from svg files (to subdirectory)
+for f in *".svg"
+do
+ inkscape -f "$f" -e "${dir}/`basename $f .svg`.png"
+done
+
+#Convert from png to tga (RLE compressed), remove png
+cd "$dir"
+gimp -d -f -i -b '(all2tga "*.png" 1)' -b '(gimp-quit 0)'
+rm *".png"
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="1280"
+ height="1024"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="dock.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <linearGradient
+ id="linearGradient5172">
+ <stop
+ style="stop-color:#000000;stop-opacity:0.87450981;"
+ offset="0"
+ id="stop5174" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0.37254903;"
+ offset="1"
+ id="stop5176" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5114">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.49803922;"
+ offset="0"
+ id="stop5116" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop5118" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5108">
+ <stop
+ id="stop5110"
+ offset="0"
+ style="stop-color:#ffffff;stop-opacity:0.18431373;" />
+ <stop
+ id="stop5112"
+ offset="1"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5070">
+ <stop
+ style="stop-color:#efefef;stop-opacity:0.74901962;"
+ offset="0"
+ id="stop5072" />
+ <stop
+ style="stop-color:#efefef;stop-opacity:0.24705882;"
+ offset="1"
+ id="stop5074" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5054">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.24705882;"
+ offset="0"
+ id="stop5056" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop5058" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5108"
+ id="linearGradient5068"
+ x1="24"
+ y1="476"
+ x2="16"
+ y2="476"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0,-32)" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5172"
+ id="radialGradient5178"
+ cx="640"
+ cy="907.29413"
+ fx="640"
+ fy="907.29413"
+ r="672"
+ gradientTransform="matrix(1.4285714,1.453181e-8,-3.4376951e-8,2.1904762,-274.28568,-1155.4062)"
+ gradientUnits="userSpaceOnUse" />
+ <filter
+ inkscape:collect="always"
+ id="filter3327"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="6"
+ id="feGaussianBlur3329" />
+ </filter>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5054"
+ id="linearGradient2870"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-692,80)"
+ x1="1508"
+ y1="848"
+ x2="660"
+ y2="856" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5070"
+ id="radialGradient3797"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.4814815,1.7289134e-7,-2.3522387e-7,2.2716046,-308.14788,-1463.619)"
+ cx="639.99988"
+ cy="1010.5715"
+ fx="639.99982"
+ fy="1010.5715"
+ r="648" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5114"
+ id="radialGradient3799"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.4814815,1.4420104e-7,-1.9575811e-7,2.2716046,-308.14798,-1463.6184)"
+ cx="639.99994"
+ cy="1010.5712"
+ fx="639.99988"
+ fy="1010.5712"
+ r="648" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.39567867"
+ inkscape:cx="1129.35"
+ inkscape:cy="554.63559"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline">
+ <path
+ style="fill:url(#radialGradient5178);fill-opacity:1;fill-rule:evenodd;stroke:none"
+ d="M -32,16 4,16 8,20 8,260 24,276 24,484 8,500 8,908 28,928 820,928 852,960 1252,960 1272,940 1272,84 1252,64 1120,64 1103,47 1103,-32 1105,-32 1105,46 1108,49 1108,-32 1312,-32 1312,1056 -32,1056 z"
+ id="back"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccccccccc" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#border"
+ id="frameGlow"
+ style="filter:url(#filter3327)"
+ width="1280"
+ height="1024" />
+ <path
+ style="fill:url(#radialGradient3797);fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient3799);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ d="M 1100 -32 L 1100 56 L 1116 72 L 1248 72 L 1269 93 L 1269 931 L 1248 952 L 856 952 L 824 920 L 819 925 L 37 925 L 32 920 L 11 899 L 11 509 L 32 488 L 32 272 L 11 251 L 11 21 L 16 16 L 8 8 L -32 8 L -32 16 L 4 16 L 8 20 L 8 260 L 24 276 L 24 484 L 8 500 L 8 908 L 28 928 L 820 928 L 852 960 L 1252 960 L 1272 940 L 1272 84 L 1252 64 L 1120 64 L 1103 47 L 1103 -32 L 1100 -32 z M 1105 -32 L 1105 46 L 1108 49 L 1108 -32 L 1105 -32 z M 16 19 L 13 22 L 13 250 L 16 253 L 16 19 z M 1264 91 L 1264 933 L 1267 930 L 1267 94 L 1264 91 z M 16 507 L 13 510 L 13 898 L 16 901 L 16 507 z M 35 920 L 38 923 L 818 923 L 821 920 L 35 920 z M 967.0625 953.34375 L 968.625 953.34375 L 968.625 954.21875 L 967.0625 954.21875 L 967.0625 953.34375 z M 991.40625 953.34375 L 992.96875 953.34375 L 992.96875 957.90625 L 991.40625 957.90625 L 991.40625 953.34375 z M 1014.9375 953.34375 L 1016.5312 953.34375 L 1016.5312 954.21875 L 1014.9375 954.21875 L 1014.9375 953.34375 z M 1030.5312 953.34375 L 1032.125 953.34375 L 1032.125 957.90625 L 1030.5312 957.90625 L 1030.5312 953.34375 z M 1044.25 953.34375 L 1045.8125 953.34375 L 1045.8125 954.21875 L 1044.25 954.21875 L 1044.25 953.34375 z M 1059.1562 953.34375 L 1060.7188 953.34375 L 1060.7188 957.90625 L 1059.1562 957.90625 L 1059.1562 953.34375 z M 1077.0625 953.34375 L 1079.7812 953.34375 L 1079.7812 954 L 1078.5625 954 L 1078.5625 958.03125 L 1079.7812 958.03125 L 1079.7812 958.71875 L 1077.0625 958.71875 L 1077.0625 953.34375 z M 1191.1875 953.34375 L 1193.9375 953.34375 L 1193.9375 958.71875 L 1191.1875 958.71875 L 1191.1875 958.03125 L 1192.4375 958.03125 L 1192.4375 954 L 1191.1875 954 L 1191.1875 953.34375 z M 921.25 953.46875 C 922.30468 953.46875 923.12109 953.66016 923.71875 954.0625 C 924.3164 954.46485 924.62499 955.00977 924.625 955.71875 C 924.62499 956.42578 924.3164 957.00391 923.71875 957.40625 C 923.12109 957.80859 922.30468 958 921.25 958 C 920.19824 958 919.38183 957.80859 918.78125 957.40625 C 918.18359 957.00391 917.875 956.42578 917.875 955.71875 C 917.875 955.00977 918.18359 954.46485 918.78125 954.0625 C 919.38183 953.66016 920.19824 953.46875 921.25 953.46875 z M 936.4375 953.46875 C 937.49218 953.46875 938.30859 953.66016 938.90625 954.0625 C 939.5039 954.46485 939.81249 955.00977 939.8125 955.71875 C 939.81249 956.42578 939.5039 957.00391 938.90625 957.40625 C 938.30859 957.80859 937.49218 958 936.4375 958 C 935.38574 958 934.56933 957.80859 933.96875 957.40625 C 933.37109 957.00391 933.0625 956.42578 933.0625 955.71875 C 933.0625 955.00977 933.37109 954.46485 933.96875 954.0625 C 934.56933 953.66016 935.38574 953.46875 936.4375 953.46875 z M 953.75 953.46875 C 954.11621 953.46875 954.47558 953.47657 954.8125 953.53125 C 955.14941 953.58594 955.4707 953.67383 955.78125 953.78125 L 955.78125 954.6875 C 955.46777 954.54493 955.14843 954.44141 954.84375 954.375 C 954.53906 954.3086 954.24316 954.28125 953.90625 954.28125 C 953.30273 954.28125 952.81445 954.39844 952.46875 954.65625 C 952.12304 954.91407 951.9375 955.26563 951.9375 955.71875 C 951.9375 956.16992 952.12304 956.52344 952.46875 956.78125 C 952.81445 957.03906 953.30273 957.1875 953.90625 957.1875 C 954.24316 957.1875 954.53906 957.16016 954.84375 957.09375 C 955.14843 957.02734 955.46777 956.92383 955.78125 956.78125 L 955.78125 957.6875 C 955.4707 957.79492 955.14941 957.85156 954.8125 957.90625 C 954.47558 957.96094 954.11621 958 953.75 958 C 952.65722 958 951.79492 957.78125 951.15625 957.375 C 950.51758 956.9668 950.1875 956.41602 950.1875 955.71875 C 950.1875 955.01953 950.51758 954.46875 951.15625 954.0625 C 951.79492 953.6543 952.65722 953.46875 953.75 953.46875 z M 1116.8125 953.46875 C 1117.8672 953.46875 1118.6836 953.66016 1119.2812 954.0625 C 1119.8789 954.46485 1120.1875 955.00977 1120.1875 955.71875 C 1120.1875 956.42578 1119.8789 957.00391 1119.2812 957.40625 C 1118.6836 957.80859 1117.8672 958 1116.8125 958 C 1115.7607 958 1114.9443 957.80859 1114.3438 957.40625 C 1113.7461 957.00391 1113.4375 956.42578 1113.4375 955.71875 C 1113.4375 955.00977 1113.7461 954.46485 1114.3438 954.0625 C 1114.9443 953.66016 1115.7607 953.46875 1116.8125 953.46875 z M 1123.7188 953.46875 C 1124.0791 953.46875 1124.4629 953.49415 1124.8438 953.53125 C 1125.2246 953.56641 1125.624 953.61524 1126.0312 953.6875 L 1126.0312 954.59375 C 1125.6709 954.48633 1125.3115 954.42969 1124.9688 954.375 C 1124.626 954.32032 1124.3047 954.28125 1124 954.28125 C 1123.5957 954.28125 1123.2871 954.30078 1123.0938 954.375 C 1122.9004 954.44922 1122.8125 954.59375 1122.8125 954.75 C 1122.8125 954.86719 1122.8711 954.9336 1123 955 C 1123.1318 955.06446 1123.376 955.14063 1123.7188 955.1875 L 1124.4375 955.28125 C 1125.167 955.37891 1125.6924 955.51953 1126 955.71875 C 1126.3076 955.91797 1126.4687 956.19531 1126.4688 956.5625 C 1126.4687 957.04492 1126.2432 957.41992 1125.8125 957.65625 C 1125.3848 957.89063 1124.7256 958 1123.8438 958 C 1123.4277 958 1123.0127 957.95898 1122.5938 957.90625 C 1122.1748 957.85352 1121.7627 957.79102 1121.3438 957.6875 L 1121.3438 956.71875 C 1121.7627 956.86719 1122.1416 956.98633 1122.5312 957.0625 C 1122.9238 957.13672 1123.3242 957.1875 1123.6875 957.1875 C 1124.0566 957.1875 1124.335 957.14453 1124.5312 957.0625 C 1124.7275 956.98047 1124.8125 956.87109 1124.8125 956.71875 C 1124.8125 956.58203 1124.7598 956.48047 1124.625 956.40625 C 1124.4932 956.33203 1124.2109 956.2461 1123.8125 956.1875 L 1123.1562 956.09375 C 1122.5 956 1122.0234 955.86133 1121.7188 955.65625 C 1121.417 955.45117 1121.2812 955.16016 1121.2812 954.8125 C 1121.2812 954.37696 1121.4844 954.04688 1121.9062 953.8125 C 1122.3281 953.57813 1122.9277 953.46875 1123.7188 953.46875 z M 1147.5938 953.46875 C 1148.6484 953.46875 1149.4648 953.66016 1150.0625 954.0625 C 1150.6601 954.46485 1150.9687 955.00977 1150.9688 955.71875 C 1150.9687 956.42578 1150.6601 957.00391 1150.0625 957.40625 C 1149.4648 957.80859 1148.6484 958 1147.5938 958 C 1146.542 958 1145.6943 957.80859 1145.0938 957.40625 C 1144.4961 957.00391 1144.2187 956.42578 1144.2188 955.71875 C 1144.2187 955.00977 1144.4961 954.46485 1145.0938 954.0625 C 1145.6943 953.66016 1146.542 953.46875 1147.5938 953.46875 z M 1161.375 953.46875 C 1162.4297 953.46875 1163.2461 953.66016 1163.8438 954.0625 C 1164.4414 954.46485 1164.75 955.00977 1164.75 955.71875 C 1164.75 956.42578 1164.4414 957.00391 1163.8438 957.40625 C 1163.2461 957.80859 1162.4297 958 1161.375 958 C 1160.3232 958 1159.4756 957.80859 1158.875 957.40625 C 1158.2773 957.00391 1158 956.42578 1158 955.71875 C 1158 955.00977 1158.2773 954.46485 1158.875 954.0625 C 1159.4756 953.66016 1160.3232 953.46875 1161.375 953.46875 z M 911.0625 953.53125 L 912.8125 953.53125 L 914.25 954.9375 L 915.6875 953.53125 L 917.46875 953.53125 L 915.28125 955.6875 L 917.5625 957.90625 L 915.8125 957.90625 L 914.25 956.40625 L 912.75 957.90625 L 910.96875 957.90625 L 913.25 955.6875 L 911.0625 953.53125 z M 925.90625 953.53125 L 927.78125 953.53125 L 930.1875 956.53125 L 930.1875 953.53125 L 931.78125 953.53125 L 931.78125 957.90625 L 929.875 957.90625 L 927.5 954.90625 L 927.5 957.90625 L 925.90625 957.90625 L 925.90625 953.53125 z M 940.3125 953.53125 L 946.34375 953.53125 L 946.34375 954.40625 L 944.1875 954.40625 L 944.1875 957.90625 L 942.5 957.90625 L 942.5 954.40625 L 940.3125 954.40625 L 940.3125 953.53125 z M 947.21875 953.53125 L 948.90625 953.53125 L 948.90625 957.90625 L 947.21875 957.90625 L 947.21875 953.53125 z M 959.53125 953.53125 L 961.25 953.53125 L 962.96875 956.78125 L 964.71875 953.53125 L 966.40625 953.53125 L 963.96875 957.90625 L 961.96875 957.90625 L 959.53125 953.53125 z M 997.6875 953.53125 L 1000.2812 953.53125 C 1001.1455 953.53125 1001.7549 953.65039 1002.1562 953.84375 C 1002.5605 954.03711 1002.7812 954.33203 1002.7812 954.75 C 1002.7812 955.03907 1002.6797 955.28321 1002.4688 955.46875 C 1002.2607 955.6543 1001.9531 955.78711 1001.5312 955.875 C 1001.7627 955.91016 1001.9434 956 1002.125 956.125 C 1002.3096 956.24805 1002.5 956.43555 1002.6875 956.6875 L 1003.625 957.90625 L 1001.8125 957.90625 L 1001 956.8125 C 1000.8389 956.59375 1000.6982 956.45508 1000.5312 956.375 C 1000.3672 956.29492 1000.1504 956.25 999.875 956.25 L 999.375 956.25 L 999.375 957.90625 L 997.6875 957.90625 L 997.6875 953.53125 z M 1036.8438 953.53125 L 1038.625 953.53125 C 1039.6211 953.53125 1040.3574 953.5918 1040.8438 953.6875 C 1041.333 953.78125 1041.7451 953.92969 1042.0938 954.15625 C 1042.4014 954.35352 1042.6318 954.58594 1042.7812 954.84375 C 1042.9307 955.10157 1043 955.39258 1043 955.71875 C 1043 956.04883 1042.9307 956.33399 1042.7812 956.59375 C 1042.6318 956.85156 1042.4014 957.08399 1042.0938 957.28125 C 1041.7422 957.50781 1041.3359 957.68555 1040.8438 957.78125 C 1040.3516 957.875 1039.6094 957.90625 1038.625 957.90625 L 1036.8438 957.90625 L 1036.8438 953.53125 z M 1081.2188 953.53125 L 1082.9062 953.53125 L 1082.9062 957.0625 L 1085.875 957.0625 L 1085.875 957.90625 L 1081.2188 957.90625 L 1081.2188 953.53125 z M 1086.625 953.53125 L 1088.3125 953.53125 L 1088.3125 956.15625 C 1088.3125 956.51758 1088.418 956.78125 1088.5938 956.9375 C 1088.7725 957.0918 1089.0674 957.15625 1089.4688 957.15625 C 1089.873 957.15625 1090.168 957.0918 1090.3438 956.9375 C 1090.5225 956.78125 1090.5937 956.51758 1090.5938 956.15625 L 1090.5938 953.53125 L 1092.2812 953.53125 L 1092.2812 956.15625 C 1092.2812 956.77539 1092.0596 957.22852 1091.5938 957.53125 C 1091.1279 957.83398 1090.4238 958 1089.4688 958 C 1088.5166 958 1087.8096 957.83398 1087.3438 957.53125 C 1086.8779 957.22852 1086.625 956.77539 1086.625 956.15625 L 1086.625 953.53125 z M 1093.9375 953.53125 L 1096.0938 953.53125 L 1097.5938 955.875 L 1099.0938 953.53125 L 1101.25 953.53125 L 1101.25 957.90625 L 1099.6562 957.90625 L 1099.6562 954.71875 L 1098.125 957.0625 L 1097.0625 957.0625 L 1095.5625 954.71875 L 1095.5625 957.90625 L 1093.9375 957.90625 L 1093.9375 953.53125 z M 1102.9062 953.53125 L 1104.5938 953.53125 L 1104.5938 957.90625 L 1102.9062 957.90625 L 1102.9062 953.53125 z M 1106.2812 953.53125 L 1108.1562 953.53125 L 1110.5312 956.53125 L 1110.5312 953.53125 L 1112.1562 953.53125 L 1112.1562 957.90625 L 1110.25 957.90625 L 1107.875 954.90625 L 1107.875 957.90625 L 1106.2812 957.90625 L 1106.2812 953.53125 z M 1131.0625 953.53125 L 1133.875 953.53125 C 1134.71 953.53125 1135.3672 953.65821 1135.8125 953.90625 C 1136.2607 954.15235 1136.4687 954.51172 1136.4688 954.96875 C 1136.4687 955.42774 1136.2607 955.78321 1135.8125 956.03125 C 1135.3672 956.27735 1134.71 956.40625 1133.875 956.40625 L 1132.75 956.40625 L 1132.75 957.90625 L 1131.0625 957.90625 L 1131.0625 953.53125 z M 1137.6562 953.53125 L 1140.25 953.53125 C 1141.1143 953.53125 1141.7549 953.65039 1142.1562 953.84375 C 1142.5605 954.03711 1142.75 954.33203 1142.75 954.75 C 1142.75 955.03907 1142.6484 955.28321 1142.4375 955.46875 C 1142.2295 955.6543 1141.9219 955.78711 1141.5 955.875 C 1141.7314 955.91016 1141.9434 956 1142.125 956.125 C 1142.3096 956.24805 1142.4687 956.43555 1142.6562 956.6875 L 1143.5938 957.90625 L 1141.7812 957.90625 L 1141 956.8125 C 1140.8389 956.59375 1140.667 956.45508 1140.5 956.375 C 1140.3359 956.29492 1140.1191 956.25 1139.8438 956.25 L 1139.3438 956.25 L 1139.3438 957.90625 L 1137.6562 957.90625 L 1137.6562 953.53125 z M 1151.4688 953.53125 L 1157.5 953.53125 L 1157.5 954.40625 L 1155.3125 954.40625 L 1155.3125 957.90625 L 1153.625 957.90625 L 1153.625 954.40625 L 1151.4688 954.40625 L 1151.4688 953.53125 z M 1165.25 953.53125 L 1171.2812 953.53125 L 1173.0938 953.53125 L 1174.5938 955.09375 L 1176.0625 953.53125 L 1177.9375 953.53125 L 1175.4375 956.0625 L 1175.4375 957.90625 L 1173.75 957.90625 L 1173.75 956.0625 L 1171.2812 953.5625 L 1171.2812 954.40625 L 1169.0938 954.40625 L 1169.0938 957.90625 L 1167.4062 957.90625 L 1167.4062 954.40625 L 1165.25 954.40625 L 1165.25 953.53125 z M 1178.6875 953.53125 L 1181.4688 953.53125 C 1182.3037 953.53125 1182.9609 953.65821 1183.4062 953.90625 C 1183.8545 954.15235 1184.0625 954.51172 1184.0625 954.96875 C 1184.0625 955.42774 1183.8545 955.78321 1183.4062 956.03125 C 1182.9609 956.27735 1182.3037 956.40625 1181.4688 956.40625 L 1180.375 956.40625 L 1180.375 957.90625 L 1178.6875 957.90625 L 1178.6875 953.53125 z M 1185.25 953.53125 L 1189.8438 953.53125 L 1189.8438 954.40625 L 1186.9688 954.40625 L 1186.9688 955.21875 L 1189.6562 955.21875 L 1189.6562 956.0625 L 1186.9688 956.0625 L 1186.9688 957.0625 L 1189.9375 957.0625 L 1189.9375 957.90625 L 1185.25 957.90625 L 1185.25 953.53125 z M 974.75 953.6875 L 976.3125 953.6875 L 976.3125 954.625 L 977.9375 954.625 L 977.9375 955.375 L 976.3125 955.375 L 976.3125 956.78125 C 976.3125 956.93359 976.34668 957.03906 976.4375 957.09375 C 976.52832 957.14649 976.73047 957.15625 977 957.15625 L 977.78125 957.15625 L 977.78125 957.90625 L 976.4375 957.90625 C 975.8164 957.90625 975.38574 957.82813 975.125 957.65625 C 974.86719 957.48242 974.75 957.19531 974.75 956.78125 L 974.75 955.375 L 973.96875 955.375 L 973.96875 954.625 L 974.75 954.625 L 974.75 953.6875 z M 1010.7812 953.6875 L 1012.375 953.6875 L 1012.375 954.625 L 1013.9688 954.625 L 1013.9688 955.375 L 1012.375 955.375 L 1012.375 956.78125 C 1012.375 956.93359 1012.4092 957.03906 1012.5 957.09375 C 1012.5908 957.14649 1012.7617 957.15625 1013.0312 957.15625 L 1013.8438 957.15625 L 1013.8438 957.90625 L 1012.5 957.90625 C 1011.8789 957.90625 1011.4482 957.82813 1011.1875 957.65625 C 1010.9297 957.48242 1010.7812 957.19531 1010.7812 956.78125 L 1010.7812 955.375 L 1010 955.375 L 1010 954.625 L 1010.7812 954.625 L 1010.7812 953.6875 z M 921.25 954.28125 C 920.73437 954.28125 920.34668 954.40235 920.0625 954.65625 C 919.77832 954.91016 919.625 955.25782 919.625 955.71875 C 919.625 956.17774 919.77832 956.5586 920.0625 956.8125 C 920.34668 957.06641 920.73437 957.1875 921.25 957.1875 C 921.76855 957.1875 922.18457 957.06641 922.46875 956.8125 C 922.75292 956.5586 922.87499 956.17774 922.875 955.71875 C 922.87499 955.25782 922.75292 954.91016 922.46875 954.65625 C 922.18457 954.40235 921.76855 954.28125 921.25 954.28125 z M 936.4375 954.28125 C 935.92187 954.28125 935.53418 954.40235 935.25 954.65625 C 934.96582 954.91016 934.8125 955.25782 934.8125 955.71875 C 934.8125 956.17774 934.96582 956.5586 935.25 956.8125 C 935.53418 957.06641 935.92187 957.1875 936.4375 957.1875 C 936.95605 957.1875 937.37207 957.06641 937.65625 956.8125 C 937.94042 956.5586 938.06249 956.17774 938.0625 955.71875 C 938.06249 955.25782 937.94042 954.91016 937.65625 954.65625 C 937.37207 954.40235 936.95605 954.28125 936.4375 954.28125 z M 1116.8125 954.28125 C 1116.2969 954.28125 1115.8779 954.40235 1115.5938 954.65625 C 1115.3096 954.91016 1115.1875 955.25782 1115.1875 955.71875 C 1115.1875 956.17774 1115.3096 956.5586 1115.5938 956.8125 C 1115.8779 957.06641 1116.2969 957.1875 1116.8125 957.1875 C 1117.3311 957.1875 1117.7158 957.06641 1118 956.8125 C 1118.2842 956.5586 1118.4375 956.17774 1118.4375 955.71875 C 1118.4375 955.25782 1118.2842 954.91016 1118 954.65625 C 1117.7158 954.40235 1117.3311 954.28125 1116.8125 954.28125 z M 1147.5938 954.28125 C 1147.0781 954.28125 1146.6592 954.40235 1146.375 954.65625 C 1146.0908 954.91016 1145.9687 955.25782 1145.9688 955.71875 C 1145.9687 956.17774 1146.0908 956.5586 1146.375 956.8125 C 1146.6592 957.06641 1147.0781 957.1875 1147.5938 957.1875 C 1148.1123 957.1875 1148.4971 957.06641 1148.7812 956.8125 C 1149.0654 956.5586 1149.2187 956.17774 1149.2188 955.71875 C 1149.2187 955.25782 1149.0654 954.91016 1148.7812 954.65625 C 1148.4971 954.40235 1148.1123 954.28125 1147.5938 954.28125 z M 1161.375 954.28125 C 1160.8594 954.28125 1160.4404 954.40235 1160.1562 954.65625 C 1159.8721 954.91016 1159.75 955.25782 1159.75 955.71875 C 1159.75 956.17774 1159.8721 956.5586 1160.1562 956.8125 C 1160.4404 957.06641 1160.8594 957.1875 1161.375 957.1875 C 1161.8936 957.1875 1162.2783 957.06641 1162.5625 956.8125 C 1162.8467 956.5586 1163 956.17774 1163 955.71875 C 1163 955.25782 1162.8467 954.91016 1162.5625 954.65625 C 1162.2783 954.40235 1161.8936 954.28125 1161.375 954.28125 z M 999.375 954.34375 L 999.375 955.46875 L 1000.0938 955.46875 C 1000.4482 955.46875 1000.6914 955.43164 1000.8438 955.34375 C 1000.999 955.25586 1001.0937 955.10742 1001.0938 954.90625 C 1001.0937 954.70703 1000.999 954.58594 1000.8438 954.5 C 1000.6914 954.41407 1000.4482 954.34375 1000.0938 954.34375 L 999.375 954.34375 z M 1132.75 954.34375 L 1132.75 955.59375 L 1133.6875 955.59375 C 1134.0156 955.59375 1134.29 955.51172 1134.4688 955.40625 C 1134.6475 955.29883 1134.7187 955.16407 1134.7188 954.96875 C 1134.7187 954.77344 1134.6475 954.63672 1134.4688 954.53125 C 1134.29 954.42578 1134.0156 954.34375 1133.6875 954.34375 L 1132.75 954.34375 z M 1139.3438 954.34375 L 1139.3438 955.46875 L 1140.0625 955.46875 C 1140.417 955.46875 1140.6602 955.43164 1140.8125 955.34375 C 1140.9678 955.25586 1141.0625 955.10742 1141.0625 954.90625 C 1141.0625 954.70703 1140.9678 954.58594 1140.8125 954.5 C 1140.6602 954.41407 1140.417 954.34375 1140.0625 954.34375 L 1139.3438 954.34375 z M 1180.375 954.34375 L 1180.375 955.59375 L 1181.3125 955.59375 C 1181.6406 955.59375 1181.8838 955.51172 1182.0625 955.40625 C 1182.2412 955.29883 1182.3437 955.16407 1182.3438 954.96875 C 1182.3437 954.77344 1182.2412 954.63672 1182.0625 954.53125 C 1181.8838 954.42578 1181.6406 954.34375 1181.3125 954.34375 L 1180.375 954.34375 z M 1038.5312 954.40625 L 1038.5312 957.0625 L 1039.125 957.0625 C 1039.8164 957.0625 1040.3555 956.94727 1040.7188 956.71875 C 1041.085 956.49024 1041.25 956.1543 1041.25 955.71875 C 1041.25 955.28516 1041.082 954.94532 1040.7188 954.71875 C 1040.3555 954.49219 1039.8193 954.40625 1039.125 954.40625 L 1038.5312 954.40625 z M 973.34375 954.5625 C 973.39648 954.5625 973.46972 954.5586 973.53125 954.5625 C 973.59277 954.56446 973.66406 954.55274 973.78125 954.5625 L 973.8125 955.53125 C 973.6748 955.48828 973.51269 955.45703 973.375 955.4375 C 973.24023 955.41602 973.10644 955.40625 972.96875 955.40625 C 972.56445 955.40625 972.25097 955.48242 972.03125 955.65625 C 971.81445 955.82813 971.71875 956.08399 971.71875 956.40625 L 971.71875 957.90625 L 970.15625 957.90625 L 970.15625 954.625 L 971.71875 954.625 L 971.71875 955.1875 C 971.9209 954.97266 972.14551 954.81641 972.40625 954.71875 C 972.66992 954.61914 972.97754 954.5625 973.34375 954.5625 z M 987.40625 954.5625 C 988.29394 954.5625 988.95117 954.67188 989.34375 954.90625 C 989.73925 955.13867 989.93749 955.50586 989.9375 956.03125 L 989.9375 957.90625 L 988.34375 957.90625 L 988.34375 957.4375 C 988.13281 957.63672 987.88867 957.7832 987.625 957.875 C 987.36133 957.96484 987.03418 958 986.65625 958 C 986.14648 958 985.72558 957.91602 985.40625 957.71875 C 985.08984 957.51953 984.9375 957.25391 984.9375 956.9375 C 984.9375 956.55274 985.13574 956.27344 985.53125 956.09375 C 985.92969 955.91406 986.55664 955.8125 987.40625 955.8125 L 988.34375 955.8125 L 988.34375 955.71875 C 988.34375 955.55274 988.22754 955.45117 988.03125 955.375 C 987.83496 955.29688 987.54101 955.25 987.125 955.25 C 986.78808 955.25 986.47754 955.26758 986.1875 955.3125 C 985.89746 955.35742 985.62402 955.44141 985.375 955.53125 L 985.375 954.71875 C 985.71191 954.66407 986.0664 954.6211 986.40625 954.59375 C 986.74609 954.56446 987.0664 954.5625 987.40625 954.5625 z M 1006.9062 954.5625 C 1007.6797 954.5625 1008.2871 954.72071 1008.75 955.03125 C 1009.2158 955.3418 1009.4687 955.73047 1009.4688 956.25 L 1009.4688 956.5625 L 1005.7812 956.5625 C 1005.8193 956.80859 1005.959 957.00195 1006.1875 957.125 C 1006.416 957.24805 1006.7148 957.3125 1007.125 957.3125 C 1007.4561 957.3125 1007.8105 957.2832 1008.1562 957.21875 C 1008.5049 957.15234 1008.8525 957.03906 1009.2188 956.90625 L 1009.2188 957.71875 C 1008.8467 957.8125 1008.4658 957.89063 1008.0938 957.9375 C 1007.7217 957.98633 1007.3721 958 1007 958 C 1006.1094 958 1005.4014 957.86328 1004.9062 957.5625 C 1004.4141 957.25977 1004.1875 956.82617 1004.1875 956.28125 C 1004.1875 955.7461 1004.4229 955.30664 1004.9062 955 C 1005.3926 954.69336 1006.0566 954.5625 1006.9062 954.5625 z M 1021.25 954.5625 C 1021.8184 954.5625 1022.2695 954.67383 1022.5625 954.90625 C 1022.8584 955.13867 1023 955.46289 1023 955.90625 L 1023 957.90625 L 1021.4062 957.90625 L 1021.4062 957.59375 L 1021.4062 956.375 C 1021.4062 956.0918 1021.3955 955.91992 1021.375 955.8125 C 1021.3574 955.70508 1021.3281 955.61328 1021.2812 955.5625 C 1021.2197 955.49414 1021.1367 955.44336 1021.0312 955.40625 C 1020.9258 955.36719 1020.8223 955.34375 1020.6875 955.34375 C 1020.3594 955.34375 1020.0937 955.42383 1019.9062 955.59375 C 1019.7187 955.76172 1019.625 956.01367 1019.625 956.3125 L 1019.625 957.90625 L 1018.0312 957.90625 L 1018.0312 954.625 L 1019.625 954.625 L 1019.625 955.125 C 1019.8623 954.9336 1020.1084 954.77735 1020.375 954.6875 C 1020.6416 954.59571 1020.9277 954.5625 1021.25 954.5625 z M 1026.5625 954.5625 C 1027.4502 954.5625 1028.0762 954.67188 1028.4688 954.90625 C 1028.8643 955.13867 1029.0625 955.50586 1029.0625 956.03125 L 1029.0625 957.90625 L 1027.4688 957.90625 L 1027.4688 957.4375 C 1027.2578 957.63672 1027.0449 957.7832 1026.7812 957.875 C 1026.5176 957.96484 1026.1904 958 1025.8125 958 C 1025.3027 958 1024.8818 957.91602 1024.5625 957.71875 C 1024.2461 957.51953 1024.0937 957.25391 1024.0938 956.9375 C 1024.0937 956.55274 1024.292 956.27344 1024.6875 956.09375 C 1025.0859 955.91406 1025.7129 955.8125 1026.5625 955.8125 L 1027.4688 955.8125 L 1027.4688 955.71875 C 1027.4687 955.55274 1027.3838 955.45117 1027.1875 955.375 C 1026.9912 955.29688 1026.6973 955.25 1026.2812 955.25 C 1025.9443 955.25 1025.6338 955.26758 1025.3438 955.3125 C 1025.0537 955.35742 1024.7803 955.44141 1024.5312 955.53125 L 1024.5312 954.71875 C 1024.8682 954.66407 1025.1914 954.6211 1025.5312 954.59375 C 1025.8711 954.56446 1026.2227 954.5625 1026.5625 954.5625 z M 1049.2188 954.5625 C 1049.5088 954.5625 1049.8057 954.56446 1050.125 954.59375 C 1050.4443 954.62305 1050.8125 954.6875 1051.1875 954.75 L 1051.1875 955.53125 C 1050.8506 955.4375 1050.501 955.35938 1050.1875 955.3125 C 1049.874 955.26563 1049.5908 955.25 1049.3125 955.25 C 1049.0137 955.25 1048.8027 955.26172 1048.6562 955.3125 C 1048.5127 955.36133 1048.4375 955.45899 1048.4375 955.5625 C 1048.4375 955.64649 1048.4853 955.70508 1048.5938 955.75 C 1048.7051 955.79492 1048.9033 955.82227 1049.1875 955.84375 L 1049.4688 955.875 C 1050.2744 955.94336 1050.8154 956.0625 1051.0938 956.21875 C 1051.3721 956.375 1051.5 956.60352 1051.5 956.9375 C 1051.5 957.28711 1051.3242 957.57422 1050.9375 957.75 C 1050.5508 957.92578 1049.9551 958 1049.1875 958 C 1048.8623 958 1048.5361 957.97266 1048.1875 957.9375 C 1047.8418 957.9043 1047.4912 957.84961 1047.125 957.78125 L 1047.125 957 C 1047.4385 957.10156 1047.7344 957.16797 1048.0625 957.21875 C 1048.3936 957.26953 1048.7539 957.3125 1049.0938 957.3125 C 1049.4014 957.3125 1049.626 957.27539 1049.7812 957.21875 C 1049.9365 957.16211 1050 957.08008 1050 956.96875 C 1050 956.875 1049.9521 956.79492 1049.8438 956.75 C 1049.7383 956.70313 1049.5381 956.68164 1049.2188 956.65625 L 1048.9375 956.625 C 1048.2373 956.56641 1047.75 956.4707 1047.4688 956.3125 C 1047.1875 956.1543 1047.0312 955.91602 1047.0312 955.59375 C 1047.0312 955.2461 1047.2051 954.98047 1047.5625 954.8125 C 1047.9199 954.64453 1048.4805 954.5625 1049.2188 954.5625 z M 1055.9062 954.5625 C 1056.5127 954.5625 1056.9853 954.70899 1057.375 955.03125 C 1057.7646 955.35157 1057.9687 955.77539 1057.9688 956.28125 C 1057.9687 956.78711 1057.7646 957.20899 1057.375 957.53125 C 1056.9853 957.85156 1056.5127 958 1055.9062 958 C 1055.5635 958 1055.2637 957.96484 1055 957.875 C 1054.7363 957.7832 1054.4668 957.62891 1054.25 957.4375 L 1054.25 959.15625 L 1052.6875 959.15625 L 1052.6875 954.625 L 1054.25 954.625 L 1054.25 955.125 C 1054.4668 954.9336 1054.7363 954.77735 1055 954.6875 C 1055.2637 954.59571 1055.5635 954.5625 1055.9062 954.5625 z M 1064.3438 954.5625 C 1065.2314 954.5625 1065.8574 954.67188 1066.25 954.90625 C 1066.6455 955.13867 1066.8437 955.50586 1066.8438 956.03125 L 1066.8438 957.90625 L 1065.25 957.90625 L 1065.25 957.4375 C 1065.0391 957.63672 1064.8262 957.7832 1064.5625 957.875 C 1064.2988 957.96484 1063.9717 958 1063.5938 958 C 1063.084 958 1062.6631 957.91602 1062.3438 957.71875 C 1062.0273 957.51953 1061.875 957.25391 1061.875 956.9375 C 1061.875 956.55274 1062.0732 956.27344 1062.4688 956.09375 C 1062.8672 955.91406 1063.4941 955.8125 1064.3438 955.8125 L 1065.25 955.8125 L 1065.25 955.71875 C 1065.25 955.55274 1065.165 955.45117 1064.9688 955.375 C 1064.7725 955.29688 1064.4473 955.25 1064.0312 955.25 C 1063.6943 955.25 1063.3838 955.26758 1063.0938 955.3125 C 1062.8037 955.35742 1062.5615 955.44141 1062.3125 955.53125 L 1062.3125 954.71875 C 1062.6494 954.66407 1062.9727 954.6211 1063.3125 954.59375 C 1063.6523 954.56446 1064.0039 954.5625 1064.3438 954.5625 z M 967.0625 954.625 L 968.625 954.625 L 968.625 957.90625 L 967.0625 957.90625 L 967.0625 954.625 z M 978.84375 954.625 L 980.4375 954.625 L 980.4375 954.96875 C 980.4375 955.14649 980.44043 955.35547 980.4375 955.625 C 980.43457 955.89258 980.40625 956.06641 980.40625 956.15625 C 980.40625 956.41992 980.41699 956.63281 980.4375 956.75 C 980.45801 956.86524 980.51269 956.94727 980.5625 957 C 980.62695 957.06836 980.70996 957.11914 980.8125 957.15625 C 980.91797 957.19336 981.02148 957.21875 981.15625 957.21875 C 981.48437 957.21875 981.75 957.13672 981.9375 956.96875 C 982.125 956.80078 982.21875 956.54883 982.21875 956.25 L 982.21875 954.625 L 983.78125 954.625 L 983.78125 957.90625 L 982.21875 957.90625 L 982.21875 957.4375 C 981.98144 957.62891 981.73535 957.7832 981.46875 957.875 C 981.20508 957.96484 980.91308 958 980.59375 958 C 980.02539 958 979.58008 957.88867 979.28125 957.65625 C 978.98535 957.42383 978.84375 957.06836 978.84375 956.625 L 978.84375 954.625 z M 1014.9375 954.625 L 1016.5312 954.625 L 1016.5312 957.90625 L 1014.9375 957.90625 L 1014.9375 954.625 z M 1044.25 954.625 L 1045.8125 954.625 L 1045.8125 957.90625 L 1044.25 957.90625 L 1044.25 954.625 z M 1067.4062 954.625 L 1068.9688 954.625 L 1070.2812 956.875 L 1071.4062 954.625 L 1073 954.625 L 1070.9062 958.21875 C 1070.6982 958.58398 1070.4658 958.85547 1070.1875 959 C 1069.9121 959.14648 1069.5478 959.21875 1069.0938 959.21875 L 1068.1875 959.21875 L 1068.1875 958.53125 L 1068.6875 958.53125 C 1068.9541 958.53125 1069.1299 958.49414 1069.25 958.4375 C 1069.373 958.38086 1069.4639 958.27148 1069.5312 958.125 L 1069.5938 958.03125 L 1067.4062 954.625 z M 1006.9062 955.25 C 1006.6016 955.25 1006.3467 955.32227 1006.1562 955.4375 C 1005.9658 955.55078 1005.8594 955.69141 1005.8125 955.90625 L 1007.8438 955.90625 C 1007.8437 955.70703 1007.7383 955.5586 1007.5625 955.4375 C 1007.3896 955.31446 1007.1875 955.25 1006.9062 955.25 z M 1055.3125 955.3125 C 1054.9756 955.3125 1054.7129 955.39649 1054.5312 955.5625 C 1054.3525 955.72656 1054.25 955.97071 1054.25 956.28125 C 1054.25 956.5918 1054.3525 956.83399 1054.5312 957 C 1054.7129 957.16406 1054.9756 957.25 1055.3125 957.25 C 1055.6494 957.25 1055.918 957.16406 1056.0938 957 C 1056.2725 956.83594 1056.3437 956.59375 1056.3438 956.28125 C 1056.3437 955.96875 1056.2725 955.72656 1056.0938 955.5625 C 1055.918 955.39844 1055.6494 955.3125 1055.3125 955.3125 z M 987.53125 956.4375 C 987.20312 956.4375 986.94824 956.48828 986.78125 956.5625 C 986.61719 956.63672 986.53125 956.73047 986.53125 956.875 C 986.53125 957.00781 986.58691 957.11133 986.71875 957.1875 C 986.85351 957.26172 987.04394 957.3125 987.28125 957.3125 C 987.57715 957.3125 987.8291 957.23438 988.03125 957.09375 C 988.23339 956.95117 988.34375 956.77539 988.34375 956.5625 L 988.34375 956.4375 L 987.53125 956.4375 z M 1026.6562 956.4375 C 1026.3281 956.4375 1026.1045 956.48828 1025.9375 956.5625 C 1025.7734 956.63672 1025.6875 956.73047 1025.6875 956.875 C 1025.6875 957.00781 1025.7432 957.11133 1025.875 957.1875 C 1026.0098 957.26172 1026.2002 957.3125 1026.4375 957.3125 C 1026.7334 957.3125 1026.9853 957.23438 1027.1875 957.09375 C 1027.3896 956.95117 1027.4687 956.77539 1027.4688 956.5625 L 1027.4688 956.4375 L 1026.6562 956.4375 z M 1064.4375 956.4375 C 1064.1094 956.4375 1063.8545 956.48828 1063.6875 956.5625 C 1063.5234 956.63672 1063.4687 956.73047 1063.4688 956.875 C 1063.4687 957.00781 1063.5244 957.11133 1063.6562 957.1875 C 1063.791 957.26172 1063.9814 957.3125 1064.2188 957.3125 C 1064.5146 957.3125 1064.7666 957.23438 1064.9688 957.09375 C 1065.1709 956.95117 1065.25 956.77539 1065.25 956.5625 L 1065.25 956.4375 L 1064.4375 956.4375 z "
+ id="border" />
+ <path
+ id="warningV"
+ d="M 16,492 20,488 16,484 16,492 z M 16,476 24,484 24,476 16,468 16,476 z M 16,460 24,468 24,460 16,452 16,460 z M 16,444 24,452 24,444 16,436 16,444 z M 16,428 24,436 24,428 16,420 16,428 z M 16,412 24,420 24,412 16,404 16,412 z M 16,396 24,404 24,396 16,388 16,396 z M 16,380 24,388 24,380 16,372 16,380 z M 16,364 24,372 24,364 16,356 16,364 z M 16,348 24,356 24,348 16,340 16,348 z M 16,332 24,340 24,332 16,324 16,332 z M 16,316 24,324 24,316 16,308 16,316 z M 16,300 24,308 24,300 16,292 16,300 z M 16,284 24,292 24,284 16,276 16,284 z"
+ style="fill:url(#linearGradient5068);fill-opacity:1;fill-rule:evenodd;stroke:none" />
+ <path
+ style="fill:url(#linearGradient2870);fill-opacity:1;fill-rule:evenodd;stroke:none"
+ d="M 28,928 20,936 28,936 36,928 28,928 z M 44,928 36,936 44,936 52,928 44,928 z M 60,928 52,936 60,936 68,928 60,928 z M 76,928 68,936 76,936 84,928 76,928 z M 92,928 84,936 92,936 100,928 92,928 z M 108,928 100,936 108,936 116,928 108,928 z M 124,928 116,936 124,936 132,928 124,928 z M 140,928 132,936 140,936 148,928 140,928 z M 156,928 148,936 156,936 164,928 156,928 z M 172,928 164,936 172,936 180,928 172,928 z M 188,928 180,936 188,936 196,928 188,928 z M 204,928 196,936 204,936 212,928 204,928 z M 220,928 212,936 220,936 228,928 220,928 z M 236,928 228,936 236,936 244,928 236,928 z M 252,928 244,936 252,936 260,928 252,928 z M 268,928 260,936 268,936 276,928 268,928 z M 284,928 276,936 284,936 292,928 284,928 z M 300,928 292,936 300,936 308,928 300,928 z M 316,928 308,936 316,936 324,928 316,928 z M 332,928 324,936 332,936 340,928 332,928 z M 348,928 340,936 348,936 356,928 348,928 z M 364,928 356,936 364,936 372,928 364,928 z M 380,928 372,936 380,936 388,928 380,928 z M 396,928 388,936 396,936 404,928 396,928 z M 412,928 404,936 412,936 420,928 412,928 z M 428,928 420,936 428,936 436,928 428,928 z M 444,928 436,936 444,936 452,928 444,928 z M 460,928 452,936 460,936 468,928 460,928 z M 476,928 468,936 476,936 484,928 476,928 z M 492,928 484,936 492,936 500,928 492,928 z M 508,928 500,936 508,936 516,928 508,928 z M 524,928 516,936 524,936 532,928 524,928 z M 540,928 532,936 540,936 548,928 540,928 z M 556,928 548,936 556,936 564,928 556,928 z M 572,928 564,936 572,936 580,928 572,928 z M 588,928 580,936 588,936 596,928 588,928 z M 604,928 596,936 604,936 612,928 604,928 z M 620,928 612,936 620,936 628,928 620,928 z M 636,928 628,936 636,936 644,928 636,928 z M 652,928 644,936 652,936 660,928 652,928 z M 668,928 660,936 668,936 676,928 668,928 z M 684,928 676,936 684,936 692,928 684,928 z M 700,928 692,936 700,936 708,928 700,928 z M 716,928 708,936 716,936 724,928 716,928 z M 732,928 724,936 732,936 740,928 732,928 z M 748,928 740,936 748,936 756,928 748,928 z M 764,928 756,936 764,936 772,928 764,928 z M 780,928 772,936 780,936 788,928 780,928 z M 796,928 788,936 796,936 804,928 796,928 z M 812,928 804,936 812,936 820,928 812,928 z M 824,932 820,936 828,936 824,932 z"
+ id="warningH" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="256"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.47 r22583"
+ version="1.0"
+ sodipodi:docname="num_leading.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="45"
+ inkscape:export-ydpi="45">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3158"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="6.96"
+ id="feGaussianBlur3160" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="2.0000001"
+ inkscape:cx="100.05795"
+ inkscape:cy="146.50772"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline">
+ <path
+ sodipodi:nodetypes="ccccccccc"
+ id="path3156"
+ d="M 12,12 244,12 244,28 244,228 244,244 12,244 12,228 12,28 12,12 z"
+ style="fill:#dfdfdf;fill-opacity:0.12156863;fill-rule:evenodd;stroke:none;filter:url(#filter3158)" />
+ <path
+ style="fill:#f3f3f3;fill-opacity:0.12156863;fill-rule:evenodd;stroke:none"
+ d="M 12,12 244,12 244,28 244,228 244,244 12,244 12,228 12,28 12,12 z"
+ id="path3186"
+ sodipodi:nodetypes="ccccccccc" />
+ <path
+ style="fill:#ffffff;fill-opacity:0.02745098;stroke:#7f7f7f;stroke-width:1;stroke-miterlimit:4;stroke-opacity:0.05882353;stroke-dasharray:none"
+ d="M 12,12 12,28 244,28 244,12 12,12 z M 12,36 12,52 244,52 244,36 12,36 z M 12,60 12,76 244,76 244,60 12,60 z M 12,84 12,100 244,100 244,84 12,84 z M 12,108 12,124 244,124 244,108 12,108 z M 12,132 12,148 244,148 244,132 12,132 z M 12,156 12,172 244,172 244,156 12,156 z M 12,180 12,196 244,196 244,180 12,180 z M 12,204 12,220 244,220 244,204 12,204 z M 12,228 12,244 244,244 244,228 12,228 z"
+ id="rect3168"
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="256"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.47 r22583"
+ version="1.0"
+ sodipodi:docname="statusbar.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3205"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="6.84"
+ id="feGaussianBlur3207" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="101.47057"
+ inkscape:cy="110.90974"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline">
+ <path
+ id="path3188"
+ d="M 12,12 244,12 244,244 12,244 12,12 z"
+ style="fill:#dfdfdf;fill-opacity:0.74901961;fill-rule:evenodd;stroke:none;filter:url(#filter3205)" />
+ <path
+ style="fill:#f3f3f3;fill-opacity:1;fill-rule:evenodd;stroke:none"
+ d="M 12,12 244,12 244,244 12,244 12,12 z"
+ id="path3186" />
+ <path
+ style="fill:#ffffff;fill-opacity:1;stroke:#7f7f7f;stroke-width:1;stroke-miterlimit:4;stroke-opacity:0.24705882;stroke-dasharray:none"
+ d="M 12,12 12,28 244,28 244,12 12,12 z M 12,36 12,52 244,52 244,36 12,36 z M 12,60 12,76 244,76 244,60 12,60 z M 12,84 12,100 244,100 244,84 12,84 z M 12,108 12,124 244,124 244,108 12,108 z M 12,132 12,148 244,148 244,132 12,132 z M 12,156 12,172 244,172 244,156 12,156 z M 12,180 12,196 244,196 244,180 12,180 z M 12,204 12,220 244,220 244,204 12,204 z M 12,228 12,244 244,244 244,228 12,228 z"
+ id="rect3168" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="256"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.47 r22583"
+ version="1.0"
+ sodipodi:docname="statusbar_vertical.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3205"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="6.84"
+ id="feGaussianBlur3207" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.4142136"
+ inkscape:cx="101.47057"
+ inkscape:cy="97.939173"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline">
+ <path
+ id="path3188"
+ d="M 12,12 244,12 244,244 12,244 12,12 z"
+ style="fill:#dfdfdf;fill-opacity:0.74901961;fill-rule:evenodd;stroke:none;filter:url(#filter3205)" />
+ <path
+ style="fill:#f3f3f3;fill-opacity:1;fill-rule:evenodd;stroke:none"
+ d="M 12,12 244,12 244,244 12,244 12,12 z"
+ id="path3186" />
+ <path
+ style="fill:#ffffff;fill-opacity:1;stroke:#7f7f7f;stroke-width:1;stroke-miterlimit:4;stroke-opacity:0.24705882;stroke-dasharray:none"
+ d="M 244,12 228,12 228,244 244,244 244,12 z M 220,12 204,12 204,244 220,244 220,12 z M 196,12 180,12 180,244 196,244 196,12 z M 172,12 156,12 156,244 172,244 172,12 z M 148,12 132,12 132,244 148,244 148,12 z M 124,12 108,12 108,244 124,244 124,12 z M 100,12 84,12 84,244 100,244 100,12 z M 76,12 60,12 60,244 76,244 76,12 z M 52,12 36,12 36,244 52,244 52,12 z M 28,12 12,12 12,244 28,244 28,12 z"
+ id="rect3168" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="128"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="weapon_accuracy.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3593"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1"
+ id="feGaussianBlur3595" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3759">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.5"
+ id="feGaussianBlur3761" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="2.2185307"
+ inkscape:cx="14.234158"
+ inkscape:cy="119.96076"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline">
+ <path
+ style="fill:#ffffff;fill-opacity:0.37254903;stroke:none;filter:url(#filter3593)"
+ d="M 24,10 232,10 250,23 250,105 232,118 24,118 6,105 6,23 z"
+ id="back"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccc" />
+ <path
+ style="fill:#ffffff;fill-opacity:0.09019608;stroke:none;filter:url(#filter3759)"
+ d="M 12,20 7,24 7,28 249,28 249,24 244,20 z M 7,36 7,44 249,44 249,36 z M 7,52 7,60 249,60 249,52 z M 7,68 7,76 249,76 249,68 z M 7,84 7,92 249,92 249,84 z M 7,100 7,104 12,108 244,108 249,104 249,100 z"
+ id="stripes"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="128"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="weapon_ammo.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ id="filter3588"
+ inkscape:collect="always"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ id="feGaussianBlur3590"
+ stdDeviation="1"
+ inkscape:collect="always" />
+ </filter>
+ <filter
+ id="filter3759"
+ inkscape:collect="always">
+ <feGaussianBlur
+ id="feGaussianBlur3761"
+ stdDeviation="0.5"
+ inkscape:collect="always" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.4017251"
+ inkscape:cx="88.24825"
+ inkscape:cy="17.447967"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline">
+ <path
+ style="fill:#dfdfdf;fill-opacity:0.74901961;stroke:none;filter:url(#filter3588)"
+ d="M 6,104 24,117 232,117 250,104 241,96 14,96 z"
+ id="back"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccc" />
+ <path
+ style="fill:#000000;fill-opacity:0.18431373;stroke:none;filter:url(#filter3759)"
+ d="M 14,97 7,104 24,116 32,116 z M 23,97 42,116 52,116 33,97 z M 43,97 62,116 72,116 53,97 z M 63,97 82,116 92,116 73,97 z M 83,97 102,116 112,116 93,97 z M 103,97 122,116 132,116 113,97 z M 123,97 142,116 152,116 133,97 z M 143,97 162,116 172,116 153,97 z M 163,97 182,116 192,116 173,97 z M 183,97 202,116 212,116 193,97 z M 203,97 222,116 232,116 213,97 z M 223,97 238,112 249,104 241,97 z"
+ id="stripes"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="128"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="weapon_complainbubble.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3593"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="2"
+ id="feGaussianBlur3595" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3759">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.5"
+ id="feGaussianBlur3761" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="2.2185308"
+ inkscape:cx="146.6862"
+ inkscape:cy="119.96076"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline">
+ <path
+ style="fill:#ffffff;fill-opacity:0.30980393;stroke:none;filter:url(#filter3593)"
+ d="M 24,10 232,10 250,23 250,105 232,118 24,118 6,105 6,23 z"
+ id="back"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccc" />
+ <path
+ style="fill:#ffffff;fill-opacity:0.12156863;stroke:none;filter:url(#filter3759)"
+ d="M 12,20 7,24 7,28 249,28 249,24 244,20 z M 7,36 7,44 249,44 249,36 z M 7,52 7,60 249,60 249,52 z M 7,68 7,76 249,76 249,68 z M 7,84 7,92 249,92 249,84 z M 7,100 7,104 12,108 244,108 249,104 249,100 z"
+ id="stripes"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccc" />
+ <path
+ id="path3005"
+ d="M 20 4 L 4 24 L 24 10 L 232 10 L 252 24 L 236 4 L 20 4 z M 4 104 L 20 124 L 236 124 L 252 104 L 232 118 L 24 118 L 4 104 z "
+ style="fill:#dfdfdf;fill-opacity:1;fill-rule:evenodd;stroke:#dfdfdf;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3593)" />
+ <path
+ style="fill:#efefef;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3759)"
+ d="M 20 4 L 4 24 L 24 10 L 232 10 L 252 24 L 236 4 L 20 4 z M 4 104 L 20 124 L 236 124 L 252 104 L 232 118 L 24 118 L 4 104 z "
+ id="frame" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="128"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="weapon_current_bg.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3593"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="2"
+ id="feGaussianBlur3595" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3759">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.5"
+ id="feGaussianBlur3761" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="3.9646772"
+ inkscape:cx="260.72564"
+ inkscape:cy="119.96076"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline">
+ <path
+ style="fill:#ffffff;fill-opacity:0.37254902;stroke:none;filter:url(#filter3593)"
+ d="M 24,10 232,10 250,23 250,105 232,118 24,118 6,105 6,23 z"
+ id="back"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccc" />
+ <path
+ style="fill:#ffffff;fill-opacity:0.09019608;stroke:none;filter:url(#filter3759)"
+ d="M 12,20 7,24 7,28 249,28 249,24 244,20 z M 7,36 7,44 249,44 249,36 z M 7,52 7,60 249,60 249,52 z M 7,68 7,76 249,76 249,68 z M 7,84 7,92 249,92 249,84 z M 7,100 7,104 12,108 244,108 249,104 249,100 z"
+ id="stripes"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccc" />
+ <path
+ id="path3005"
+ d="M 20 4 L 4 24 L 24 10 L 232 10 L 252 24 L 236 4 L 20 4 z M 4 104 L 20 124 L 236 124 L 252 104 L 232 118 L 24 118 L 4 104 z "
+ style="fill:#dfdfdf;fill-opacity:1;fill-rule:evenodd;stroke:#dfdfdf;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3593)" />
+ <path
+ style="fill:#efefef;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3759)"
+ d="M 20 4 L 4 24 L 24 10 L 232 10 L 252 24 L 236 4 L 20 4 z M 4 104 L 20 124 L 236 124 L 252 104 L 232 118 L 24 118 L 4 104 z "
+ id="frame" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="2560"
+ height="2048"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="background_l2.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <linearGradient
+ id="linearGradient3681">
+ <stop
+ id="stop3691"
+ offset="0"
+ style="stop-color:#1f7fff;stop-opacity:0;" />
+ <stop
+ style="stop-color:#1f7fff;stop-opacity:0;"
+ offset="0.31"
+ id="stop3695" />
+ <stop
+ id="stop3689"
+ offset="0.44"
+ style="stop-color:#1f7fff;stop-opacity:0.24705882;" />
+ <stop
+ style="stop-color:#1f7fff;stop-opacity:0;"
+ offset="0.85000002"
+ id="stop3704" />
+ <stop
+ style="stop-color:#1f7fff;stop-opacity:0;"
+ offset="1"
+ id="stop3685" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3699">
+ <stop
+ id="stop3701"
+ offset="0"
+ style="stop-color:#3f0f00;stop-opacity:0.56078434;" />
+ <stop
+ style="stop-color:#ff7f2f;stop-opacity:0.56078434;"
+ offset="0.75"
+ id="stop3673" />
+ <stop
+ id="stop3703"
+ offset="1"
+ style="stop-color:#ff9f5f;stop-opacity:0.56078434;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3698">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3700" />
+ <stop
+ id="stop3706"
+ offset="0.5"
+ style="stop-color:#0f3f6f;stop-opacity:1;" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="1"
+ id="stop3702" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3674">
+ <stop
+ style="stop-color:#000000;stop-opacity:1;"
+ offset="0"
+ id="stop3676" />
+ <stop
+ style="stop-color:#3f0b00;stop-opacity:1;"
+ offset="1"
+ id="stop3678" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3666">
+ <stop
+ style="stop-color:#3f0f00;stop-opacity:1;"
+ offset="0"
+ id="stop3668" />
+ <stop
+ id="stop3671"
+ offset="0.75"
+ style="stop-color:#ff7f2f;stop-opacity:1;" />
+ <stop
+ style="stop-color:#ff9f5f;stop-opacity:1;"
+ offset="1"
+ id="stop3670" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3606">
+ <stop
+ style="stop-color:#bfdfff;stop-opacity:1;"
+ offset="0"
+ id="stop3608" />
+ <stop
+ id="stop3616"
+ offset="0.2"
+ style="stop-color:#5fafff;stop-opacity:1;" />
+ <stop
+ id="stop3614"
+ offset="0.80000001"
+ style="stop-color:#5fafff;stop-opacity:1;" />
+ <stop
+ style="stop-color:#bfdfff;stop-opacity:1;"
+ offset="1"
+ id="stop3610" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3699"
+ id="linearGradient3836"
+ x1="1024"
+ y1="640"
+ x2="1024"
+ y2="384"
+ gradientUnits="userSpaceOnUse" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3681"
+ id="radialGradient3100"
+ gradientUnits="userSpaceOnUse"
+ cx="1024"
+ cy="494"
+ fx="1024"
+ fy="494"
+ r="256"
+ gradientTransform="translate(-252.53405,-1286.4835)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3674"
+ id="linearGradient3106"
+ gradientUnits="userSpaceOnUse"
+ x1="1024"
+ y1="592"
+ x2="1024"
+ y2="384"
+ gradientTransform="translate(-252.53405,-1286.4835)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3666"
+ id="linearGradient3108"
+ gradientUnits="userSpaceOnUse"
+ x1="1024"
+ y1="592"
+ x2="1024"
+ y2="384"
+ gradientTransform="translate(-252.53405,-1286.4835)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3674"
+ id="linearGradient3113"
+ gradientUnits="userSpaceOnUse"
+ x1="1024"
+ y1="640"
+ x2="1024"
+ y2="440"
+ gradientTransform="translate(-252.53405,-1286.4835)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3666"
+ id="linearGradient3115"
+ gradientUnits="userSpaceOnUse"
+ x1="1024"
+ y1="640"
+ x2="1024"
+ y2="440"
+ gradientTransform="translate(-252.53405,-1286.4835)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3698"
+ id="linearGradient3124"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-252.53405,-2310.4835)"
+ x1="1024"
+ y1="1600"
+ x2="1024"
+ y2="1376" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3606"
+ id="linearGradient3127"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-252.53405,-2310.4835)"
+ x1="1024"
+ y1="1592"
+ x2="1024"
+ y2="1480" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3698"
+ id="linearGradient3136"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-252.53405,-2310.4835)"
+ x1="1024"
+ y1="1600"
+ x2="1024"
+ y2="1376" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3606"
+ id="linearGradient3139"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-252.53405,-2310.4835)"
+ x1="1024"
+ y1="1592"
+ x2="1024"
+ y2="1480" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3698"
+ id="linearGradient3148"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-252.53405,-2310.4835)"
+ x1="1024"
+ y1="1600"
+ x2="1024"
+ y2="1376" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3606"
+ id="linearGradient3151"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-252.53405,-2310.4835)"
+ x1="1024"
+ y1="1592"
+ x2="1024"
+ y2="1480" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3698"
+ id="linearGradient3156"
+ gradientUnits="userSpaceOnUse"
+ x1="1024"
+ y1="640"
+ x2="1024"
+ y2="384"
+ gradientTransform="translate(-252.53405,-1286.4835)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3606"
+ id="linearGradient3159"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-252.53405,-2310.4835)"
+ x1="1024"
+ y1="1664"
+ x2="1024"
+ y2="1480" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3698"
+ id="linearGradient3167"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-252.53405,-2310.4835)"
+ x1="1024"
+ y1="1600"
+ x2="1024"
+ y2="1376" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3606"
+ id="linearGradient3170"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-252.53405,-2310.4835)"
+ x1="1024"
+ y1="1592"
+ x2="1024"
+ y2="1480" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3698"
+ id="linearGradient3179"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-252.53405,-2310.4835)"
+ x1="1024"
+ y1="1600"
+ x2="1024"
+ y2="1376" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3606"
+ id="linearGradient3182"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-252.53405,-2310.4835)"
+ x1="1024"
+ y1="1592"
+ x2="1024"
+ y2="1480" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3698"
+ id="linearGradient3187"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-252.53405,-2310.4835)"
+ x1="1024"
+ y1="1600"
+ x2="1024"
+ y2="1376" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3606"
+ id="linearGradient3190"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-252.53405,-2310.4835)"
+ x1="1024"
+ y1="1592"
+ x2="1024"
+ y2="1480" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3699"
+ id="linearGradient3230"
+ gradientUnits="userSpaceOnUse"
+ x1="1024"
+ y1="640"
+ x2="1024"
+ y2="440" />
+ <filter
+ inkscape:collect="always"
+ id="filter4004"
+ inkscape:label="GlowBlur"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="16"
+ id="feGaussianBlur4006" />
+ </filter>
+ <filter
+ color-interpolation-filters="sRGB"
+ inkscape:label="GlowBlur"
+ id="filter4004-7"
+ inkscape:collect="always">
+ <feGaussianBlur
+ id="feGaussianBlur4006-1"
+ stdDeviation="16"
+ inkscape:collect="always" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3886"
+ inkscape:label="BlurAll">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.59999999999999998"
+ id="feGaussianBlur3888" />
+ </filter>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3606"
+ id="linearGradient3887"
+ x1="0"
+ y1="0"
+ x2="0"
+ y2="-48"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3698"
+ id="linearGradient3897"
+ x1="0"
+ y1="0"
+ x2="0"
+ y2="-80"
+ gradientUnits="userSpaceOnUse" />
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.35276389"
+ inkscape:cx="873.45666"
+ inkscape:cy="1330.0086"
+ inkscape:document-units="px"
+ inkscape:current-layer="BlurAll"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ gridtolerance="10"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ inkscape:snap-to-guides="true"
+ inkscape:snap-global="true"
+ borderlayer="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2383"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title>Xonotic Logo</dc:title>
+ <dc:date>2010</dc:date>
+ <dc:rights>
+ <cc:Agent>
+ <dc:title>Xonotic Community</dc:title>
+ </cc:Agent>
+ </dc:rights>
+ <dc:publisher>
+ <cc:Agent>
+ <dc:title />
+ </cc:Agent>
+ </dc:publisher>
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Xonotic Community</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <cc:license
+ rdf:resource="Dual-licensed under the "GNU LGPL v2.1, or any later version" (http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html) and "CC-BY v3.0" (http://creativecommons.org/licenses/by/3.0/)" />
+ <dc:contributor>
+ <cc:Agent>
+ <dc:title />
+ </cc:Agent>
+ </dc:contributor>
+ <dc:subject>
+ <rdf:Bag>
+ <rdf:li>Xonotic</rdf:li>
+ <rdf:li>Phoenix</rdf:li>
+ <rdf:li>Logo</rdf:li>
+ </rdf:Bag>
+ </dc:subject>
+ <dc:language />
+ <dc:description>The logo of the Xonotic project.</dc:description>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:groupmode="layer"
+ id="BlurAll"
+ style="filter:url(#filter3886)">
+ <g
+ inkscape:groupmode="layer"
+ id="XonoticLogo"
+ transform="translate(-16,1000)">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#radialGradient3100);fill-opacity:1;stroke:none"
+ d="M 771.46595,-1048.4835 C 630.08105,-1048.4835 515.46595,-933.86838 515.46595,-792.48352 515.46595,-651.09866 630.08105,-536.48352 771.46595,-536.48352 912.85085,-536.48352 1027.466,-651.09866 1027.466,-792.48352 1027.466,-933.86838 912.85085,-1048.4835 771.46595,-1048.4835 z"
+ id="BackgroundGlow" />
+ <g
+ id="PhoenixGlowBlur"
+ style="filter:url(#filter4004)"
+ transform="translate(-252.53405,-1286.4835)">
+ <path
+ style="fill:none;stroke:none"
+ d="M 0,0 0,1024 2048,1024 2048,0 0,0 z"
+ id="PhoenixBlurHelp"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccsccsccsccscccccccccccccccccccccccccccsccsccsccscccccccccccccccccccccccc"
+ id="PhoenixWingsGlow"
+ d="M 963.1564,392.59366 C 921.0791,414.09676 891.6511,457.24186 890.0627,507.7812 888.258,565.2096 922.9398,615.3783 973.1564,636 939.2191,629.528 908.753,631.3468 903.0314,615.375 893.9715,590.0828 867.2923,595.8421 867.5314,620.6562 851.6142,620.1018 826.0198,613.8284 801.1564,643.7812 800.8328,574.4558 889.8589,592.3985 869.5002,551.5625 858.0429,528.5813 822.3808,547.9373 836.2814,563.2812 792.5503,571.9131 757.604,555.3267 692.5002,587 750.404,499.485 875.6786,537.6908 869.8752,490.0312 865.4273,453.50266 810.8005,472.14906 829.5314,495.9688 796.6718,507.1177 736.7339,472.30386 643.5002,489.9688 730.3791,418.16286 889.1414,476.42906 895.7502,430.18736 900.9701,393.66406 847.1163,392.79106 848.7814,422.87486 779.2712,388.66126 758.01,415.92766 666.1252,385.06236 772.9245,383.66456 871.3975,345.03906 963.1564,392.59366 z M 816.969,438.34366 C 744.8304,434.23856 749.1408,445.06256 711.219,441.24986 720.7911,406.27256 627.8213,423.06806 686.3127,445.43736 563.9505,439.39236 566.1161,486.75836 443.094,463.96866 582.0041,449.50096 694.8089,368.23236 816.969,438.34366 z M 617.7502,498.2188 C 584.1315,513.0374 563.7366,540.7074 493.7814,534.6875 540.9623,536.9052 577.4358,478.91886 617.7502,498.2188 z M 804.0627,511.25 C 732.3043,518.9629 756.4204,531.9824 721.7814,534.4375 726.1133,500.5412 645.1521,528.1712 700.0627,541.5312 590.6291,557.3141 616.7465,601.3484 503.5314,585.9062 618.1556,570.9112 649.5047,464.44366 804.0627,511.25 z M 829.594,582.6562 C 795.9479,592.4153 804.0588,601.9992 785.9377,605.5625 778.9859,569.7135 716.2163,624.5562 773.4377,620.8125 711.8177,631.3836 724.6283,663.9435 662.0314,655.9688 718.3656,641.8048 730.1535,555.0753 829.594,582.6562 z M 676.4377,605.5312 C 650.5891,620.6729 653.5909,636.3178 590.2502,641.2188 623.1894,641.0288 650.8332,588.63 676.4377,605.5312 z M 1084.8438,392.59366 C 1126.9211,414.09676 1156.349,457.24186 1157.9374,507.7811 1159.742,565.2095 1125.0603,615.3782 1074.8437,636 1108.781,629.5279 1139.2471,631.3467 1144.9687,615.375 1154.0286,590.0828 1180.7078,595.842 1180.4687,620.6561 1196.3859,620.1017 1221.9803,613.8283 1246.8437,643.7811 1247.1673,574.4557 1158.1412,592.3984 1178.4999,551.5625 1189.9572,528.5812 1225.6193,547.9373 1211.7187,563.2811 1255.4498,571.913 1290.3961,555.3267 1355.5,587 1297.596,499.485 1172.3215,537.6907 1178.125,490.0311 1182.5727,453.50266 1237.1995,472.14906 1218.4688,495.9687 1251.3284,507.1177 1311.2663,472.30386 1404.5001,489.9687 1317.6211,418.16286 1158.8586,476.42906 1152.25,430.18736 1147.0299,393.66406 1200.8839,392.79096 1199.2188,422.87486 1268.729,388.66126 1289.9902,415.92766 1381.8751,385.06236 1275.0757,383.66446 1176.6025,345.03906 1084.8438,392.59366 z M 1231.0311,438.34366 C 1303.1697,434.23856 1298.8593,445.06256 1336.7811,441.24986 1327.209,406.27256 1420.1788,423.06806 1361.6876,445.43736 1484.0498,439.39236 1481.8841,486.75836 1604.9061,463.96866 1465.996,449.50096 1353.1912,368.23236 1231.0311,438.34366 z M 1430.2501,498.2187 C 1463.8686,513.0374 1484.2636,540.7074 1554.2188,534.6875 1507.038,536.9052 1470.5644,478.91886 1430.2501,498.2187 z M 1243.9375,511.2499 C 1315.6957,518.9628 1291.5797,531.9823 1326.2188,534.4375 1321.8869,500.5412 1402.8481,528.1712 1347.9375,541.5311 1457.3712,557.3141 1431.2537,601.3483 1544.4688,585.9061 1429.8445,570.9112 1398.4954,464.44366 1243.9375,511.2499 z M 1218.4061,582.6561 C 1252.0522,592.4153 1243.9412,601.9991 1262.0625,605.5625 1269.0143,569.7134 1331.7837,624.5561 1274.5625,620.8125 1336.1822,631.3836 1323.3717,663.9434 1385.9686,655.9688 1329.6344,641.8047 1317.8466,555.0752 1218.4061,582.6561 z M 1371.5626,605.5311 C 1397.4111,620.6729 1394.4094,636.3177 1457.7501,641.2188 1424.8108,641.0288 1397.1667,588.63 1371.5626,605.5311 z"
+ style="fill:url(#linearGradient3836);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3852)" />
+ <path
+ style="fill:url(#linearGradient3230);fill-opacity:1;fill-rule:evenodd;stroke:none;filter:url(#filter3852)"
+ d="M 1057.0938,439.71875 C 1023.0924,445.20314 979.58155,487.66395 937.1875,521.78125 L 989.3125,497.71875 959.1875,529.75 985.21875,517.5625 C 976.67388,534.40527 977.58883,563.53923 949.46875,569.28125 964.11056,583.77194 982.92685,594.06177 1003.9688,598.09375 1014,600 1021,628 1024,628 1027,628 1034,600 1044.0312,598.09375 1065.8794,593.90727 1085.3218,582.97344 1100.1875,567.59375 1025.7951,568.52336 1030.4958,493.04561 1096.2188,476.53125 1091.1498,471.8082 1074.2793,472.69319 1060.4688,474.875 1062.8755,458.78057 1085.6974,451.07251 1102.5625,453.15625 1092.9241,443.37812 1081.189,436.3137 1061.7188,444.4375 L 1057.0938,439.71875 z M 1047.75,453.28125 1052.8125,458.28125 C 1046.2027,463.87886 1040.3298,464.25093 1034.75,459.25 L 1047.75,453.28125 z"
+ id="PhoenixHeadGlow"
+ sodipodi:nodetypes="cccccccsccccccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ inkscape:export-ydpi="45"
+ inkscape:export-xdpi="45"
+ style="fill:url(#linearGradient3106);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3108);stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
+ d="M 710.62235,-893.88986 C 668.54505,-872.38676 639.11705,-829.24166 637.52865,-778.70232 635.72395,-721.27392 670.40575,-671.10522 720.62235,-650.48352 686.68505,-656.95552 656.21895,-655.13672 650.49735,-671.10852 641.43745,-696.40072 614.75825,-690.64142 614.99735,-665.82732 599.08015,-666.38172 573.48575,-672.65512 548.62235,-642.70232 548.29875,-712.02772 637.32485,-694.08502 616.96615,-734.92102 605.50885,-757.90222 569.84675,-738.54622 583.74735,-723.20232 540.01625,-714.57042 505.06995,-731.15682 439.96615,-699.48352 497.86995,-786.99852 623.14455,-748.79272 617.34115,-796.45232 612.89325,-832.98086 558.26645,-814.33446 576.99735,-790.51472 544.13775,-779.36582 484.19985,-814.17966 390.96615,-796.51472 477.84505,-868.32066 636.60735,-810.05446 643.21615,-856.29616 648.43605,-892.81946 594.58225,-893.69246 596.24735,-863.60866 526.73715,-897.82226 505.47595,-870.55586 413.59115,-901.42116 520.39045,-902.81896 618.86345,-941.44446 710.62235,-893.88986 z M 564.43495,-848.13986 C 492.29635,-852.24496 496.60675,-841.42096 458.68495,-845.23366 468.25705,-880.21096 375.28725,-863.41546 433.77865,-841.04616 311.41645,-847.09116 313.58205,-799.72516 190.55995,-822.51486 329.47005,-836.98256 442.27485,-918.25116 564.43495,-848.13986 z M 365.21615,-788.26472 C 331.59745,-773.44612 311.20255,-745.77612 241.24735,-751.79602 288.42825,-749.57832 324.90175,-807.56466 365.21615,-788.26472 z M 551.52865,-775.23352 C 479.77025,-767.52062 503.88635,-754.50112 469.24735,-752.04602 473.57925,-785.94232 392.61805,-758.31232 447.52865,-744.95232 338.09505,-729.16942 364.21245,-685.13512 250.99735,-700.57732 365.62155,-715.57232 396.97065,-822.03986 551.52865,-775.23352 z M 577.05995,-703.82732 C 543.41385,-694.06822 551.52475,-684.48432 533.40365,-680.92102 526.45185,-716.77002 463.68225,-661.92732 520.90365,-665.67102 459.28365,-655.09992 472.09425,-622.54002 409.49735,-630.51472 465.83155,-644.67872 477.61945,-731.40822 577.05995,-703.82732 z M 423.90365,-680.95232 C 398.05505,-665.81062 401.05685,-650.16572 337.71615,-645.26472 370.65535,-645.45472 398.29915,-697.85352 423.90365,-680.95232 z M 832.30975,-893.88986 C 874.38705,-872.38676 903.81495,-829.24166 905.40335,-778.70242 907.20795,-721.27402 872.52625,-671.10532 822.30965,-650.48352 856.24695,-656.95562 886.71305,-655.13682 892.43465,-671.10852 901.49455,-696.40072 928.17377,-690.64152 927.93467,-665.82742 943.85187,-666.38182 969.44627,-672.65522 994.30967,-642.70242 994.63327,-712.02782 905.60715,-694.08512 925.96587,-734.92102 937.42317,-757.90232 973.08527,-738.54622 959.18467,-723.20242 1002.9158,-714.57052 1037.8621,-731.15682 1102.966,-699.48352 1045.062,-786.99852 919.78747,-748.79282 925.59097,-796.45242 930.03867,-832.98086 984.66547,-814.33446 965.93477,-790.51482 998.79437,-779.36582 1058.7323,-814.17966 1151.9661,-796.51482 1065.0871,-868.32066 906.32455,-810.05446 899.71595,-856.29616 894.49585,-892.81946 948.34987,-893.69256 946.68477,-863.60866 1016.195,-897.82226 1037.4562,-870.55586 1129.3411,-901.42116 1022.5417,-902.81906 924.06847,-941.44446 832.30975,-893.88986 z M 978.49707,-848.13986 C 1050.6357,-852.24496 1046.3253,-841.42096 1084.2471,-845.23366 1074.675,-880.21096 1167.6448,-863.41546 1109.1536,-841.04616 1231.5158,-847.09116 1229.3501,-799.72516 1352.3721,-822.51486 1213.462,-836.98256 1100.6572,-918.25116 978.49707,-848.13986 z M 1177.7161,-788.26482 C 1211.3346,-773.44612 1231.7296,-745.77612 1301.6848,-751.79602 1254.504,-749.57832 1218.0304,-807.56466 1177.7161,-788.26482 z M 991.40347,-775.23362 C 1063.1617,-767.52072 1039.0457,-754.50122 1073.6848,-752.04602 1069.3529,-785.94232 1150.3141,-758.31232 1095.4035,-744.95242 1204.8372,-729.16942 1178.7197,-685.13522 1291.9348,-700.57742 1177.3105,-715.57232 1145.9614,-822.03986 991.40347,-775.23362 z M 965.87207,-703.82742 C 999.51817,-694.06822 991.40717,-684.48442 1009.5285,-680.92102 1016.4803,-716.77012 1079.2497,-661.92742 1022.0285,-665.67102 1083.6482,-655.09992 1070.8377,-622.54012 1133.4346,-630.51472 1077.1004,-644.67882 1065.3126,-731.40832 965.87207,-703.82742 z M 1119.0286,-680.95242 C 1144.8771,-665.81062 1141.8754,-650.16582 1205.2161,-645.26472 1172.2768,-645.45472 1144.6327,-697.85352 1119.0286,-680.95242 z"
+ id="PhoenixWingsFill"
+ sodipodi:nodetypes="cccsccsccsccscccccccccccccccccccccccccccsccsccsccscccccccccccccccccccccccc" />
+ <g
+ id="LettersGlowBlur"
+ style="filter:url(#filter4004)"
+ transform="translate(-252.53405,-1286.4835)">
+ <path
+ inkscape:connector-curvature="0"
+ id="LettersBlurHelp"
+ d="M 0,0 0,1024 2048,1024 2048,0 0,0 z"
+ style="fill:none;stroke:none" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccsscscccccccscssc"
+ id="LetterXGlow"
+ d="M 317.25,456 C 317.25,456 345.17,456.75 350,462 L 396.09375,512 350,562 C 344.48,568 316,568 316,568 L 364,568 C 368,568 372.31499,568 376,564 L 410,527.0938 444,564 C 447.68501,568 452,568 456,568 L 504,568 C 504,568 475.52,568 470,562 L 423.90625,512 470,462 C 474.83,456.75 502.75,456 502.75,456 L 456,456 C 452,456 447.68501,456 444,460 L 410,496.9063 376,460 C 372.31499,456 368,456 364,456 L 317.25,456 z"
+ style="fill:#1f7fff;fill-opacity:1;stroke:none;filter:url(#filter3852)" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccc"
+ id="LetterOGlow"
+ d="M 540,456 C 528,456 516,472 516,488 L 516,536 C 516,552 528,568 540,568 L 636,568 C 648,568 660,552 660,536 L 660,488 C 660,472 648,456 636,456 L 540,456 z M 552,476 624,476 C 634,476 636,484 636,492 L 636,532 C 636,540 634,548 624,548 L 552,548 C 542,548 540,540 540,532 L 540,492 C 540,484 542,476 552,476 z"
+ style="fill:#1f7fff;fill-opacity:1;stroke:none;filter:url(#filter3852)" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="csscccccccssccccccc"
+ id="LetterNGlow"
+ d="M 676,456 C 676,456 714.66667,456 728,456 732,456 733.94939,458.0519 736,460 L 816,536 816,462 C 816,456 784,456 784,456 L 872,456 C 872,456 840,456 840,462 L 840,562 C 840,568 872,568 872,568 872,568 836,568 824,568 820,568 818.04817,565.9506 816,564 L 732,484 732,562 C 732,568 764,568 764,568 L 676,568 C 676,568 708,568 708,562 L 708,462 C 708,456 676,456 676,456 z"
+ style="fill:#1f7fff;fill-opacity:1;stroke:none;filter:url(#filter3852)" />
+ <path
+ inkscape:connector-curvature="0"
+ id="RingGlow"
+ d="M 969.28125,396.2812 C 925.981,416.8108 896,460.9225 896,512 896,582.656 953.344,640 1024.0001,640 1094.6561,640 1152.0001,582.656 1152.0001,512 1152.0001,460.9225 1122.0192,416.8108 1078.7189,396.2812 1112.8942,415.4666 1136.0001,452.0438 1136.0001,494 1136.0001,548.5462 1096.937,594.0173 1045.2813,603.9688 1038.3891,605.2965 1030.0001,636 1024.0001,636 1018.0001,636 1009.6109,605.2966 1002.7187,603.9688 951.06315,594.0172 912,548.5462 912,494 912,452.0438 935.1059,415.4666 969.28125,396.2812 z"
+ style="fill:#1f7fff;fill-opacity:1;stroke:none;filter:url(#filter3852)" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccsccscccc"
+ id="LetterTGlow"
+ d="M 1220,568 1308,568 C 1308,568 1276,568 1276,562 L 1276,476 1316,476 C 1324,476 1328.3729,461.8135 1332,460 1340,456 1364,456 1364,456 L 1164,456 C 1164,456 1188,456 1196,460 1199.6271,461.8135 1204,476 1212,476 L 1252,476 1252,562 C 1252,568 1220,568 1220,568 z"
+ style="fill:#1f7fff;fill-opacity:1;stroke:none;filter:url(#filter3852)" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccc"
+ id="LetterIGlow"
+ d="M 1380,456 1468,456 C 1468,456 1436,456 1436,462 L 1436,562 C 1436,568 1468,568 1468,568 L 1380,568 C 1380,568 1412,568 1412,562 L 1412,462 C 1412,456 1380,456 1380,456 z"
+ style="fill:#1f7fff;fill-opacity:1;stroke:none;filter:url(#filter3852)" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccccccccc"
+ id="LetterCGlow"
+ d="M 1540,456 C 1528,456 1516,472 1516,488 L 1516,536 C 1516,552 1528,568 1540,568 L 1636,568 C 1656,568 1652,520 1652,520 1652,520 1648,548 1624,548 L 1552,548 C 1542,548 1540,540 1540,532 L 1540,492 C 1540,484 1542,476 1552,476 L 1624,476 C 1648,476 1652,504 1652,504 1652,504 1656,456 1636,456 L 1540,456 z"
+ style="fill:#1f7fff;fill-opacity:1;stroke:none;filter:url(#filter3852)" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient3113);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3115);stroke-width:2;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ d="M 804.55975,-846.76477 C 770.55835,-841.28038 727.0475,-798.81957 684.65345,-764.70227 L 736.77845,-788.76477 706.65345,-756.73352 732.6847,-768.92102 C 724.13983,-752.07825 725.05478,-722.94429 696.9347,-717.20227 711.57651,-702.71158 730.3928,-692.42175 751.43475,-688.38977 761.46595,-686.48352 768.46595,-658.48352 771.46595,-658.48352 774.46595,-658.48352 781.46595,-686.48352 791.49715,-688.38977 813.34535,-692.57625 832.78775,-703.51008 847.65345,-718.88977 773.26105,-717.96016 777.96175,-793.43791 843.68475,-809.95227 838.61575,-814.67532 821.74525,-813.79033 807.93475,-811.60852 810.34145,-827.70295 833.16335,-835.41101 850.02845,-833.32727 840.39005,-843.1054 828.65495,-850.16982 809.18475,-842.04602 L 804.55975,-846.76477 z M 795.21595,-833.20227 800.27845,-828.20227 C 793.66865,-822.60466 787.79575,-822.23259 782.21595,-827.23352 L 795.21595,-833.20227 z"
+ id="PhoenixHeadFill"
+ sodipodi:nodetypes="cccccccsccccccccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient3127);fill-opacity:1;stroke:none"
+ d="M 64.715955,-830.48352 C 64.715955,-830.48352 92.635955,-829.73352 97.465953,-824.48352 L 143.5597,-774.48352 97.465953,-724.48352 C 91.945955,-718.48352 63.465955,-718.48352 63.465955,-718.48352 L 111.46595,-718.48352 C 115.46595,-718.48352 119.78094,-718.48352 123.46595,-722.48352 L 157.46595,-759.38972 191.46595,-722.48352 C 195.15096,-718.48352 199.46595,-718.48352 203.46595,-718.48352 L 251.46595,-718.48352 C 251.46595,-718.48352 222.98595,-718.48352 217.46595,-724.48352 L 171.3722,-774.48352 217.46595,-824.48352 C 222.29595,-829.73352 250.21595,-830.48352 250.21595,-830.48352 L 203.46595,-830.48352 C 199.46595,-830.48352 195.15096,-830.48352 191.46595,-826.48352 L 157.46595,-789.57722 123.46595,-826.48352 C 119.78094,-830.48352 115.46595,-830.48352 111.46595,-830.48352 L 64.715955,-830.48352 z"
+ id="LetterXBorder"
+ sodipodi:nodetypes="cccccsscscccccccscssc" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient3124);fill-opacity:1;stroke:#00001f;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ d="M 147.46595,-774.48352 98.465953,-721.48352 114.46595,-721.48352 C 117.46595,-721.48352 118.61595,-721.48352 120.46595,-723.48352 L 157.46595,-763.48352 194.46595,-723.48352 C 196.31595,-721.48352 197.46595,-721.48352 200.46595,-721.48352 L 216.46595,-721.48352 167.46595,-774.48352 216.46595,-827.48352 200.46595,-827.48352 C 197.46595,-827.48352 196.31595,-827.48352 194.46595,-825.48352 L 157.46595,-785.48352 120.46595,-825.48352 C 118.61595,-827.48352 117.46595,-827.48352 114.46595,-827.48352 L 98.465953,-827.48352 147.46595,-774.48352 z"
+ id="LetterXFill"
+ sodipodi:nodetypes="ccccccccccccccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient3139);fill-opacity:1;stroke:none"
+ d="M 287.46595,-830.48352 C 275.46595,-830.48352 263.46595,-814.48352 263.46595,-798.48352 L 263.46595,-750.48352 C 263.46595,-734.48352 275.46595,-718.48352 287.46595,-718.48352 L 383.46595,-718.48352 C 395.46595,-718.48352 407.46595,-734.48352 407.46595,-750.48352 L 407.46595,-798.48352 C 407.46595,-814.48352 395.46595,-830.48352 383.46595,-830.48352 L 287.46595,-830.48352 z M 299.46595,-810.48352 371.46595,-810.48352 C 381.46595,-810.48352 383.46595,-802.48352 383.46595,-794.48352 L 383.46595,-754.48352 C 383.46595,-746.48352 381.46595,-738.48352 371.46595,-738.48352 L 299.46595,-738.48352 C 289.46595,-738.48352 287.46595,-746.48352 287.46595,-754.48352 L 287.46595,-794.48352 C 287.46595,-802.48352 289.46595,-810.48352 299.46595,-810.48352 z"
+ id="LetterOBorder"
+ sodipodi:nodetypes="cccccccccccccccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient3136);fill-opacity:1;stroke:#00001f;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ d="M 288.46595,-827.48352 C 276.46595,-827.48352 266.46595,-811.48352 266.46595,-797.48352 L 266.46595,-751.48352 C 266.46595,-737.48352 276.46595,-721.48352 288.46595,-721.48352 L 382.46595,-721.48352 C 394.46595,-721.48352 404.46595,-737.48352 404.46595,-751.48352 L 404.46595,-797.48352 C 404.46595,-811.48352 394.46595,-827.48352 382.46595,-827.48352 L 288.46595,-827.48352 z M 300.46595,-813.48352 370.46595,-813.48352 C 382.46595,-813.48352 386.46066,-805.48342 386.34095,-793.32722 L 386.34095,-755.63972 C 386.46066,-743.48352 382.46595,-735.48352 370.46595,-735.48352 L 300.46595,-735.48352 C 288.46595,-735.48352 284.47124,-743.48352 284.59095,-755.63972 L 284.59095,-793.32722 C 284.47124,-805.48342 288.46595,-813.48352 300.46595,-813.48352 z"
+ id="LetterOFill"
+ sodipodi:nodetypes="cccccccccccccccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient3151);fill-opacity:1;stroke:none"
+ d="M 423.46595,-830.48352 C 423.46595,-830.48352 462.13262,-830.48352 475.46595,-830.48352 479.46595,-830.48352 481.41534,-828.43162 483.46595,-826.48352 L 563.46595,-750.48352 563.46595,-824.48352 C 563.46595,-830.48352 531.46595,-830.48352 531.46595,-830.48352 L 619.46595,-830.48352 C 619.46595,-830.48352 587.46595,-830.48352 587.46595,-824.48352 L 587.46595,-724.48352 C 587.46595,-718.48352 619.46595,-718.48352 619.46595,-718.48352 619.46595,-718.48352 583.46595,-718.48352 571.46595,-718.48352 567.46595,-718.48352 565.51412,-720.53292 563.46595,-722.48352 L 479.46595,-802.48352 479.46595,-724.48352 C 479.46595,-718.48352 511.46595,-718.48352 511.46595,-718.48352 L 423.46595,-718.48352 C 423.46595,-718.48352 455.46595,-718.48352 455.46595,-724.48352 L 455.46595,-824.48352 C 455.46595,-830.48352 423.46595,-830.48352 423.46595,-830.48352 z"
+ id="LetterNBorder"
+ sodipodi:nodetypes="csscccccccssccccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient3148);fill-opacity:1;stroke:#00001f;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ d="M 586.46595,-827.48352 564.46595,-827.48352 C 564.46595,-827.48352 566.46595,-826.48352 566.46595,-825.48352 L 566.46595,-743.48352 477.46595,-827.48352 456.46595,-827.48352 C 456.46595,-827.48352 458.46595,-826.48352 458.46595,-825.48352 L 458.46595,-723.48352 C 458.46595,-722.48352 456.46595,-721.48352 456.46595,-721.48352 L 478.46595,-721.48352 C 478.46595,-721.48352 476.46595,-722.48352 476.46595,-723.48352 L 476.46595,-809.48352 569.46595,-721.48352 586.46595,-721.48352 C 586.46595,-721.48352 584.46595,-722.48352 584.46595,-723.48352 L 584.46595,-825.48352 C 584.46595,-826.48352 586.46595,-827.48352 586.46595,-827.48352 z"
+ id="LetterNFill"
+ sodipodi:nodetypes="ccccccccccccccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient3159);fill-opacity:1;stroke:none"
+ d="M 716.7472,-890.20232 C 673.44695,-869.67272 643.46595,-825.56102 643.46595,-774.48352 643.46595,-703.82752 700.80995,-646.48352 771.46605,-646.48352 842.12205,-646.48352 899.46605,-703.82752 899.46605,-774.48352 899.46605,-825.56102 869.48515,-869.67272 826.18485,-890.20232 860.36015,-871.01692 883.46605,-834.43972 883.46605,-792.48352 883.46605,-737.93732 844.40295,-692.46622 792.74725,-682.51472 785.85505,-681.18702 777.46605,-650.48352 771.46605,-650.48352 765.46605,-650.48352 757.07685,-681.18692 750.18465,-682.51472 698.5291,-692.46632 659.46595,-737.93732 659.46595,-792.48352 659.46595,-834.43972 682.57185,-871.01692 716.7472,-890.20232 z"
+ id="RingBorder" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient3156);fill-opacity:1;stroke:#00001f;stroke-width:1.5;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ d="M 671.90345,-850.07727 C 655.94129,-829.08548 646.46595,-802.88952 646.46595,-774.48352 646.46595,-706.78842 700.2845,-651.59882 767.46595,-649.48352 759.46595,-656.48352 753.46595,-678.48352 749.46595,-679.48352 696.43208,-689.71352 656.46595,-736.46302 656.46595,-792.48352 656.46595,-813.46434 662.08892,-833.14354 671.90345,-850.07727 z M 871.02845,-850.07727 C 880.84295,-833.14354 886.46595,-813.46434 886.46595,-792.48352 886.46595,-736.46302 846.49985,-689.71352 793.46595,-679.48352 789.46595,-678.48352 783.46595,-656.48352 775.46595,-649.48352 842.64745,-651.59882 896.46595,-706.78842 896.46595,-774.48352 896.46595,-802.88952 886.99065,-829.08548 871.02845,-850.07727 z"
+ id="RingFill"
+ sodipodi:nodetypes="csccsccsccsc" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient3170);fill-opacity:1;stroke:none"
+ d="M 967.46597,-718.48352 1055.466,-718.48352 C 1055.466,-718.48352 1023.466,-718.48352 1023.466,-724.48352 L 1023.466,-810.48352 1063.466,-810.48352 C 1071.466,-810.48352 1075.8389,-824.67002 1079.466,-826.48352 1087.466,-830.48352 1111.466,-830.48352 1111.466,-830.48352 L 911.46595,-830.48352 C 911.46595,-830.48352 935.46597,-830.48352 943.46597,-826.48352 947.09307,-824.67002 951.46597,-810.48352 959.46597,-810.48352 L 999.46597,-810.48352 999.46597,-724.48352 C 999.46597,-718.48352 967.46597,-718.48352 967.46597,-718.48352 z"
+ id="LetterTBorder"
+ sodipodi:nodetypes="cccccsccscccc" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient3167);fill-opacity:1;stroke:#00001f;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ d="M 959.46597,-813.48352 1002.466,-813.48352 1002.466,-723.48352 C 1002.466,-722.48352 1000.466,-721.48352 1000.466,-721.48352 L 1022.466,-721.48352 C 1022.466,-721.48352 1020.466,-722.48352 1020.466,-723.48352 L 1020.466,-813.48352 1063.466,-813.48352 C 1067.466,-813.48352 1075.466,-827.48352 1075.466,-827.48352 1075.466,-827.48352 947.46597,-827.48352 947.46597,-827.48352 947.46597,-827.48352 955.46597,-813.48352 959.46597,-813.48352 z"
+ id="LetterTFill"
+ sodipodi:nodetypes="ccccccccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient3182);fill-opacity:1;stroke:none"
+ d="M 1127.466,-830.48352 1215.466,-830.48352 C 1215.466,-830.48352 1183.466,-830.48352 1183.466,-824.48352 L 1183.466,-724.48352 C 1183.466,-718.48352 1215.466,-718.48352 1215.466,-718.48352 L 1127.466,-718.48352 C 1127.466,-718.48352 1159.466,-718.48352 1159.466,-724.48352 L 1159.466,-824.48352 C 1159.466,-830.48352 1127.466,-830.48352 1127.466,-830.48352 z"
+ id="LetterIBorder"
+ sodipodi:nodetypes="ccccccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient3179);fill-opacity:1;stroke:#00001f;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ d="M 1180.466,-825.48352 C 1180.466,-826.48352 1182.466,-827.48352 1182.466,-827.48352 L 1160.466,-827.48352 C 1160.466,-827.48352 1162.466,-826.48352 1162.466,-825.48352 L 1162.466,-723.48352 C 1162.466,-722.48352 1160.466,-721.48352 1160.466,-721.48352 L 1182.466,-721.48352 C 1182.466,-721.48352 1180.466,-722.48352 1180.466,-723.48352 L 1180.466,-825.48352 z"
+ id="LetterIFill"
+ sodipodi:nodetypes="ccccccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient3190);fill-opacity:1;stroke:none"
+ d="M 1287.466,-830.48352 C 1275.466,-830.48352 1263.466,-814.48352 1263.466,-798.48352 L 1263.466,-750.48352 C 1263.466,-734.48352 1275.466,-718.48352 1287.466,-718.48352 L 1383.466,-718.48352 C 1403.466,-718.48352 1399.466,-766.48352 1399.466,-766.48352 1399.466,-766.48352 1395.466,-738.48352 1371.466,-738.48352 L 1299.466,-738.48352 C 1289.466,-738.48352 1287.466,-746.48352 1287.466,-754.48352 L 1287.466,-794.48352 C 1287.466,-802.48352 1289.466,-810.48352 1299.466,-810.48352 L 1371.466,-810.48352 C 1395.466,-810.48352 1399.466,-782.48352 1399.466,-782.48352 1399.466,-782.48352 1403.466,-830.48352 1383.466,-830.48352 L 1287.466,-830.48352 z"
+ id="LetterCBorder"
+ sodipodi:nodetypes="ccccccccccccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient3187);fill-opacity:1;stroke:#00001f;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ d="M 1288.466,-827.48352 C 1276.466,-827.48352 1266.466,-811.48352 1266.466,-797.48352 L 1266.466,-751.48352 C 1266.466,-737.48352 1276.466,-721.48352 1288.466,-721.48352 L 1382.466,-721.48352 C 1396.466,-721.48352 1397.466,-752.48352 1397.466,-752.48352 1397.466,-752.48352 1391.466,-735.48352 1370.466,-735.48352 L 1300.466,-735.48352 C 1288.466,-735.48352 1284.4713,-743.48352 1284.591,-755.63972 L 1284.591,-793.32722 C 1284.4713,-805.48342 1288.466,-813.48352 1300.466,-813.48352 L 1370.466,-813.48352 C 1391.466,-813.48352 1397.466,-796.48352 1397.466,-796.48352 1397.466,-796.48352 1396.466,-827.48352 1382.466,-827.48352 L 1288.466,-827.48352 z"
+ id="LetterCFill"
+ sodipodi:nodetypes="ccccccccccccccc" />
+ </g>
+ <g
+ inkscape:groupmode="layer"
+ id="Version"
+ transform="translate(756,432)">
+ <text
+ xml:space="preserve"
+ style="font-size:72px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill-opacity:1;font-family:Sans;-inkscape-font-specification:Sans"
+ id="VersionMaster"
+ sodipodi:linespacing="125%"
+ transform="scale(1.2247449,0.81649658)"><tspan
+ sodipodi:role="line"
+ id="tspan3077"
+ y="0"
+ x="0">VERSIONPLACEHOLDER</tspan></text>
+ <g
+ style="filter:url(#filter4004-7)"
+ id="VersionGlowBlur">
+ <use
+ x="0"
+ y="0"
+ xlink:href="#VersionMaster"
+ id="VersionGlowBlurHelp"
+ transform="matrix(2,0,0,4,0,64)"
+ width="2560"
+ height="2048"
+ style="fill:none;stroke:#000000;stroke-opacity:0" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#VersionMaster"
+ id="VersionGlow"
+ style="fill:#1f7fff;fill-opacity:1;stroke:#1f7fff;stroke-opacity:1"
+ width="2560"
+ height="2048" />
+ </g>
+ <use
+ x="0"
+ y="0"
+ xlink:href="#VersionMaster"
+ id="VersionBorder"
+ style="stroke:url(#linearGradient3887);stroke-width:5.5;stroke-miterlimit:4;stroke-dasharray:none"
+ width="2560"
+ height="2048" />
+ <use
+ x="0"
+ y="0"
+ xlink:href="#VersionMaster"
+ id="VersionFill"
+ style="fill:url(#linearGradient3897);fill-opacity:1;stroke:#00001f;stroke-width:1.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+ width="2560"
+ height="2048" />
+ </g>
+ </g>
+</svg>
--- /dev/null
+#!/bin/bash
+#Uses Inkscape, Gimp and sed.
+#Requires the provided Gimp script (all2tga.scm) to be present in ~/.gimp*/scripts/.
+
+#Creates the background_(ingame_)l2.tga images, with a given version string argument.
+
+#The appearance of the string is defined by the master element in background_l2.svg:
+#BlurAll > Version > VersionMaster
+#The visible parts (Fill, Border, Glow) are duplicates of the master element.
+#If the font or its size is changed, the gradients of the duplicates may need adjustment.
+
+#Check for valid argument
+if [ -z "$1" ]
+then
+ echo "Usage:"
+ echo "$0 [Version String]"
+ echo ""
+ exit 3
+fi
+
+#Create tmp.svg with version string according to argument
+sed -e "s/VERSIONPLACEHOLDER/$1/" background_l2.svg > tmp.svg
+
+#Create tga files
+inkscape -f "tmp.svg" -d 90 -e "background_l2.png"
+gimp -d -f -i -b '(all2tga "background_l2.png" 1)' -b '(gimp-quit 0)'
+cp background_l2.tga background_ingame_l2.tga
+rm tmp.svg
+rm background_l2.png
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="bigbutton_c.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="180"
+ inkscape:export-ydpi="180">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3622"
+ x="-0.029419355"
+ width="1.0588387"
+ y="-0.13028571"
+ height="1.2605714"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="2"
+ id="feGaussianBlur3624" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3763"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.29999999999999999"
+ id="feGaussianBlur3765" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="6.8020501"
+ inkscape:cx="176.99789"
+ inkscape:cy="26.658037"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="961"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.5"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.5">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="64,0"
+ id="guide3220" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="192,0"
+ id="guide3224" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ style="fill:#5f1700;fill-opacity:1;stroke:none"
+ d="M 16,8 16,56 240,56 240,8 16,8 z"
+ id="path3610"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ffffff;fill-opacity:0.12156863;stroke:none"
+ d="M 16,10 16,14 209,14 205,10 16,10 z M 16,18 16,22 240,22 240,18 16,18 z M 16,26 16,30 240,30 240,26 16,26 z M 16,34 16,38 240,38 240,34 16,34 z M 16,42 16,46 240,46 240,42 16,42 z M 47,50 51,54 240,54 240,50 47,50 z"
+ id="path2822"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0"
+ id="path3761"
+ d="M 16,4 13,7 13,32 4,41 4,48 14,58 45,58 40,53 20,53 16,49 16,10 18,8 203,8 211,16 237,16 235,14 215,14 205,4 z M 211,6 216,11 236,11 240,15 240,54 238,56 53,56 45,48 19,48 21,50 41,50 51,60 240,60 243,57 243,32 252,23 252,16 242,6 z M 10,10 4,16 4,37 10,31 z M 252,27 246,33 246,54 252,48 z"
+ style="fill:#ff5f00;fill-opacity:1;stroke:#ff5f00;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3622)" />
+ <path
+ style="fill:#ff7f1f;fill-opacity:1;stroke:#ff9f5f;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3763)"
+ d="M 16,4 13,7 13,32 4,41 4,48 14,58 45,58 40,53 20,53 16,49 16,10 18,8 203,8 211,16 237,16 235,14 215,14 205,4 z M 211,6 216,11 236,11 240,15 240,54 238,56 53,56 45,48 19,48 21,50 41,50 51,60 240,60 243,57 243,32 252,23 252,16 242,6 z M 10,10 4,16 4,37 10,31 z M 252,27 246,33 246,54 252,48 z"
+ id="path3595"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="bigbutton_f.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="180"
+ inkscape:export-ydpi="180">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3622"
+ x="-0.029419355"
+ width="1.0588387"
+ y="-0.13028571"
+ height="1.2605714"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="2"
+ id="feGaussianBlur3624" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3763">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.29999999999999999"
+ id="feGaussianBlur3765" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="3.5425848"
+ inkscape:cx="65.704462"
+ inkscape:cy="26.658037"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="961"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.5"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.5">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="64,0"
+ id="guide3220" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="192,0"
+ id="guide3224" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ style="fill:#003f7f;fill-opacity:1;stroke:none"
+ d="M 16 8 L 16 56 L 240 56 L 240 8 L 16 8 z "
+ id="path3610" />
+ <path
+ style="fill:#ffffff;fill-opacity:0.12156863;stroke:none"
+ d="M 16,10 16,14 209,14 205,10 16,10 z M 16,18 16,22 240,22 240,18 16,18 z M 16,26 16,30 240,30 240,26 16,26 z M 16,34 16,38 240,38 240,34 16,34 z M 16,42 16,46 240,46 240,42 16,42 z M 47,50 51,54 240,54 240,50 47,50 z"
+ id="path2822" />
+ <path
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0"
+ id="path3761"
+ d="M 16,4 13,7 13,32 4,41 4,48 14,58 45,58 40,53 20,53 16,49 16,10 18,8 203,8 211,16 237,16 235,14 215,14 205,4 z M 211,6 216,11 236,11 240,15 240,54 238,56 53,56 45,48 19,48 21,50 41,50 51,60 240,60 243,57 243,32 252,23 252,16 242,6 z M 10,10 4,16 4,37 10,31 z M 252,27 246,33 246,54 252,48 z"
+ style="fill:#9fcfff;fill-opacity:1;stroke:#9fcfff;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3622)" />
+ <path
+ style="fill:#dfefff;fill-opacity:1;stroke:#ffffff;stroke-width:0.50000000000000000;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3763)"
+ d="M 16,4 13,7 13,32 4,41 4,48 14,58 45,58 40,53 20,53 16,49 16,10 18,8 203,8 211,16 237,16 235,14 215,14 205,4 z M 211,6 216,11 236,11 240,15 240,54 238,56 53,56 45,48 19,48 21,50 41,50 51,60 240,60 243,57 243,32 252,23 252,16 242,6 z M 10,10 4,16 4,37 10,31 z M 252,27 246,33 246,54 252,48 z"
+ id="path3595"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="bigbutton_n.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="180"
+ inkscape:export-ydpi="180">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3622"
+ x="-0.029419355"
+ width="1.0588387"
+ y="-0.13028571"
+ height="1.2605714"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="2"
+ id="feGaussianBlur3624" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3763">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.29999999999999999"
+ id="feGaussianBlur3765" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="2.0984031"
+ inkscape:cx="202.95169"
+ inkscape:cy="44.528769"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="961"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.5"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.5">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="64,0"
+ id="guide3220" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="192,0"
+ id="guide3224" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ style="fill:#002f5f;fill-opacity:1;stroke:none"
+ d="M 16 8 L 16 56 L 240 56 L 240 8 L 16 8 z "
+ id="path3610" />
+ <path
+ style="fill:#ffffff;fill-opacity:0.12156863;stroke:none"
+ d="M 16,10 16,14 209,14 205,10 16,10 z M 16,18 16,22 240,22 240,18 16,18 z M 16,26 16,30 240,30 240,26 16,26 z M 16,34 16,38 240,38 240,34 16,34 z M 16,42 16,46 240,46 240,42 16,42 z M 47,50 51,54 240,54 240,50 47,50 z"
+ id="path2822" />
+ <path
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0"
+ id="path3761"
+ d="M 16,4 13,7 13,32 4,41 4,48 14,58 45,58 40,53 20,53 16,49 16,10 18,8 203,8 211,16 237,16 235,14 215,14 205,4 z M 211,6 216,11 236,11 240,15 240,54 238,56 53,56 45,48 19,48 21,50 41,50 51,60 240,60 243,57 243,32 252,23 252,16 242,6 z M 10,10 4,16 4,37 10,31 z M 252,27 246,33 246,54 252,48 z"
+ style="fill:#7fbfff;fill-opacity:1;stroke:#7fbfff;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3622)" />
+ <path
+ style="fill:#afd7ff;fill-opacity:1;stroke:#bfdfff;stroke-width:0.50000000000000000;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3763)"
+ d="M 16,4 13,7 13,32 4,41 4,48 14,58 45,58 40,53 20,53 16,49 16,10 18,8 203,8 211,16 237,16 235,14 215,14 205,4 z M 211,6 216,11 236,11 240,15 240,54 238,56 53,56 45,48 19,48 21,50 41,50 51,60 240,60 243,57 243,32 252,23 252,16 242,6 z M 10,10 4,16 4,37 10,31 z M 252,27 246,33 246,54 252,48 z"
+ id="path3595"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="512"
+ height="512"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="border.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <linearGradient
+ id="linearGradient3717">
+ <stop
+ id="stop3719"
+ offset="0"
+ style="stop-color:#003f7f;stop-opacity:0.74901962;" />
+ <stop
+ style="stop-color:#003f7f;stop-opacity:0;"
+ offset="0.2"
+ id="stop3721" />
+ <stop
+ id="stop3725"
+ offset="0.85000002"
+ style="stop-color:#003f7f;stop-opacity:0;" />
+ <stop
+ id="stop3723"
+ offset="1"
+ style="stop-color:#003f7f;stop-opacity:0.74901962;" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3657">
+ <stop
+ style="stop-color:#003f7f;stop-opacity:0.87450981;"
+ offset="0"
+ id="stop3659" />
+ <stop
+ id="stop3665"
+ offset="0.5"
+ style="stop-color:#003f7f;stop-opacity:0.37254903;" />
+ <stop
+ style="stop-color:#003f7f;stop-opacity:0.87450981;"
+ offset="1"
+ id="stop3661" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3627">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.12156863;"
+ offset="0"
+ id="stop3629" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0;"
+ offset="1"
+ id="stop3631" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3627"
+ id="linearGradient3633"
+ x1="248"
+ y1="480"
+ x2="248"
+ y2="392"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3657"
+ id="linearGradient3663"
+ x1="256"
+ y1="112"
+ x2="256"
+ y2="24"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3717"
+ id="linearGradient3701"
+ x1="256"
+ y1="384"
+ x2="256"
+ y2="128"
+ gradientUnits="userSpaceOnUse" />
+ <filter
+ inkscape:collect="always"
+ id="filter3711">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="10"
+ id="feGaussianBlur3713" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3663">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1.5"
+ id="feGaussianBlur3665" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.8856462"
+ inkscape:cx="419.35675"
+ inkscape:cy="372.49447"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true"
+ spacingx="2px"
+ spacingy="2px" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="128,0"
+ id="guide3220" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="384,0"
+ id="guide3224" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="0,128"
+ id="guide2407" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="0,384"
+ id="guide2409" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ style="fill:#000000;fill-opacity:0.9372549;stroke:none"
+ d="M 412,108 412,20 100,20 100,108 24,108 24,456 48,480 464,480 488,456 488,108 412,108 z"
+ id="path3619" />
+ <path
+ style="fill:url(#linearGradient3701);fill-opacity:1;stroke:none"
+ d="M 28,464 48,484 464,484 484,464 484,120 476,112 414,112 400,120 112,120 98,112 36,112 28,120 z"
+ id="path3685"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccccccc" />
+ <path
+ style="fill:url(#linearGradient3633);fill-opacity:1;stroke:none;filter:url(#filter3663)"
+ d="M 24 392 L 24 400 L 488 400 L 488 392 L 24 392 z M 24 408 L 24 416 L 488 416 L 488 408 L 24 408 z M 24 424 L 24 432 L 488 432 L 488 424 L 24 424 z M 24 440 L 24 448 L 488 448 L 488 440 L 24 440 z M 24 456 L 24 464 L 488 464 L 488 456 L 24 456 z M 24 472 L 24 480 L 488 480 L 488 472 L 24 472 z "
+ id="path3622" />
+ <path
+ style="fill:url(#linearGradient3663);stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
+ d="M 104,40 120,24 392,24 408,40 408,96 392,112 120,112 104,96 104,40 z"
+ id="path3609" />
+ <path
+ style="fill:#ffffff;fill-opacity:0.12156863000000000;stroke:none;filter:url(#filter3663)"
+ d="M 104 32 L 104 40 L 408 40 L 408 32 L 104 32 z M 104 48 L 104 56 L 408 56 L 408 48 L 104 48 z M 104 64 L 104 72 L 408 72 L 408 64 L 104 64 z M 104 80 L 104 88 L 408 88 L 408 80 L 104 80 z M 104 96 L 104 104 L 408 104 L 408 96 L 104 96 z "
+ id="path2826" />
+ <path
+ id="path3661"
+ d="M 40,16 16,40 16,80 48,80 80,48 80,16 z M 96,16 96,56 56,96 16,96 16,472 40,496 52,482 460,482 472,496 496,472 496,96 456,96 416,56 416,16 z M 120,24 392,24 408,40 408,96 392,112 120,112 104,96 104,40 z M 36,112 98,112 114,120 398,120 414,112 476,112 484,120 484,456 464,476 48,476 28,456 28,120 z M 58,494 54,498 458,498 454,494 z"
+ style="fill:#7fbeff;fill-opacity:1;stroke:#7fbeff;stroke-width:3;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3711)"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccc" />
+ <path
+ style="fill:#afd7ff;fill-opacity:1;stroke:#bfdfff;stroke-width:4;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3663)"
+ d="M 40,16 16,40 16,84 48,84 84,48 84,16 z M 92,16 92,52 52,92 16,92 16,472 42,498 54,484 458,484 470,498 496,472 496,92 460,92 420,52 420,16 z M 120,24 392,24 408,40 408,96 392,112 120,112 104,96 104,40 z M 36,112 98,112 114,120 398,120 414,112 476,112 484,120 484,456 464,476 48,476 28,456 28,120 z M 58,492 52,498 460,498 454,492 z"
+ id="path3760"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="button_c.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3622"
+ x="-0.029419355"
+ width="1.0588387"
+ y="-0.13028571"
+ height="1.2605714"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="3"
+ id="feGaussianBlur3624" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3763">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.29999999999999999"
+ id="feGaussianBlur3765" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3761">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.80000000000000004"
+ id="feGaussianBlur3763" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="7.0851697"
+ inkscape:cx="221.88072"
+ inkscape:cy="44.528769"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="961"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.5"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.5">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="64,0"
+ id="guide3220" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="192,0"
+ id="guide3224" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ style="fill:#5f1700;fill-opacity:1;stroke:none"
+ d="M 16 8 L 16 56 L 240 56 L 240 8 L 16 8 z "
+ id="path3610" />
+ <path
+ style="fill:#ffffff;fill-opacity:0.12156863000000000;stroke:none;filter:url(#filter3761)"
+ d="M 16,10 16,14 209,14 205,10 16,10 z M 16,18 16,22 240,22 240,18 16,18 z M 16,26 16,30 240,30 240,26 16,26 z M 16,34 16,38 240,38 240,34 16,34 z M 16,42 16,46 240,46 240,42 16,42 z M 47,50 51,54 240,54 240,50 47,50 z"
+ id="path2822" />
+ <path
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0"
+ id="path3761"
+ d="M 16,4 13,7 13,32 4,41 4,48 14,58 45,58 40,53 20,53 16,49 16,10 18,8 203,8 211,16 237,16 235,14 215,14 205,4 z M 211,6 216,11 236,11 240,15 240,54 238,56 53,56 45,48 19,48 21,50 41,50 51,60 240,60 243,57 243,32 252,23 252,16 242,6 z M 10,10 4,16 4,37 10,31 z M 252,27 246,33 246,54 252,48 z"
+ style="fill:#ff5f00;fill-opacity:1;stroke:#ff5f00;stroke-width:0.75;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3622)" />
+ <path
+ style="fill:#ff7f1f;fill-opacity:1;stroke:#ff9f5f;stroke-width:0.50000000000000000;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3763)"
+ d="M 16,4 13,7 13,32 4,41 4,48 14,58 45,58 40,53 20,53 16,49 16,10 18,8 203,8 211,16 237,16 235,14 215,14 205,4 z M 211,6 216,11 236,11 240,15 240,54 238,56 53,56 45,48 19,48 21,50 41,50 51,60 240,60 243,57 243,32 252,23 252,16 242,6 z M 10,10 4,16 4,37 10,31 z M 252,27 246,33 246,54 252,48 z"
+ id="path3595"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="button_f.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3622"
+ x="-0.029419355"
+ width="1.0588387"
+ y="-0.13028571"
+ height="1.2605714"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="3"
+ id="feGaussianBlur3624" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3763">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.29999999999999999"
+ id="feGaussianBlur3765" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3761"
+ x="-0.030305315"
+ width="1.0606106"
+ y="-0.1542816"
+ height="1.3085632">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.80000000000000004"
+ id="feGaussianBlur3763" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="3.3487015"
+ inkscape:cx="182.03744"
+ inkscape:cy="44.528769"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="961"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.5"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.5">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="64,0"
+ id="guide3220" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="192,0"
+ id="guide3224" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ style="fill:#003f7f;fill-opacity:1;stroke:none"
+ d="M 16 8 L 16 56 L 240 56 L 240 8 L 16 8 z "
+ id="path3610" />
+ <path
+ style="fill:#ffffff;fill-opacity:0.12156863000000000;stroke:none;filter:url(#filter3761)"
+ d="M 16,10 16,14 209,14 205,10 16,10 z M 16,18 16,22 240,22 240,18 16,18 z M 16,26 16,30 240,30 240,26 16,26 z M 16,34 16,38 240,38 240,34 16,34 z M 16,42 16,46 240,46 240,42 16,42 z M 47,50 51,54 240,54 240,50 47,50 z"
+ id="path2822" />
+ <path
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0"
+ id="path3761"
+ d="M 16,4 13,7 13,32 4,41 4,48 14,58 45,58 40,53 20,53 16,49 16,10 18,8 203,8 211,16 237,16 235,14 215,14 205,4 z M 211,6 216,11 236,11 240,15 240,54 238,56 53,56 45,48 19,48 21,50 41,50 51,60 240,60 243,57 243,32 252,23 252,16 242,6 z M 10,10 4,16 4,37 10,31 z M 252,27 246,33 246,54 252,48 z"
+ style="fill:#9fcfff;fill-opacity:1;stroke:#9fcfff;stroke-width:0.75;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3622)" />
+ <path
+ style="fill:#dfefff;fill-opacity:1;stroke:#ffffff;stroke-width:0.50000000000000000;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3763)"
+ d="M 16,4 13,7 13,32 4,41 4,48 14,58 45,58 40,53 20,53 16,49 16,10 18,8 203,8 211,16 237,16 235,14 215,14 205,4 z M 211,6 216,11 236,11 240,15 240,54 238,56 53,56 45,48 19,48 21,50 41,50 51,60 240,60 243,57 243,32 252,23 252,16 242,6 z M 10,10 4,16 4,37 10,31 z M 252,27 246,33 246,54 252,48 z"
+ id="path3595"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="button_n.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3622"
+ x="-0.029419355"
+ width="1.0588387"
+ y="-0.13028571"
+ height="1.2605714"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="3"
+ id="feGaussianBlur3624" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3763"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.29999999999999999"
+ id="feGaussianBlur3765" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3761">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.80000000000000004"
+ id="feGaussianBlur3763" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="2.6500196"
+ inkscape:cx="79.315737"
+ inkscape:cy="44.528769"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="961"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.5"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.5">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="64,0"
+ id="guide3220" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="192,0"
+ id="guide3224" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ style="fill:#002f5f;fill-opacity:1;stroke:none"
+ d="M 16,8 16,56 240,56 240,8 16,8 z"
+ id="path3610"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ffffff;fill-opacity:0.12156863000000000;stroke:none;filter:url(#filter3761)"
+ d="M 16,10 16,14 209,14 205,10 16,10 z M 16,18 16,22 240,22 240,18 16,18 z M 16,26 16,30 240,30 240,26 16,26 z M 16,34 16,38 240,38 240,34 16,34 z M 16,42 16,46 240,46 240,42 16,42 z M 47,50 51,54 240,54 240,50 47,50 z"
+ id="path2822"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0"
+ id="path3761"
+ d="M 16,4 13,7 13,32 4,41 4,48 14,58 45,58 40,53 20,53 16,49 16,10 18,8 203,8 211,16 237,16 235,14 215,14 205,4 z M 211,6 216,11 236,11 240,15 240,54 238,56 53,56 45,48 19,48 21,50 41,50 51,60 240,60 243,57 243,32 252,23 252,16 242,6 z M 10,10 4,16 4,37 10,31 z M 252,27 246,33 246,54 252,48 z"
+ style="fill:#7fbfff;fill-opacity:1;stroke:#7fbfff;stroke-width:0.75;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3622)" />
+ <path
+ style="fill:#afd7ff;fill-opacity:1;stroke:#bfdfff;stroke-width:0.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3763)"
+ d="M 16,4 13,7 13,32 4,41 4,48 14,58 45,58 40,53 20,53 16,49 16,10 18,8 203,8 211,16 237,16 235,14 215,14 205,4 z M 211,6 216,11 236,11 240,15 240,54 238,56 53,56 45,48 19,48 21,50 41,50 51,60 240,60 243,57 243,32 252,23 252,16 242,6 z M 10,10 4,16 4,37 10,31 z M 252,27 246,33 246,54 252,48 z"
+ id="path3595"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="64"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="charmapbutton.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3754">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1"
+ id="feGaussianBlur3756" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="5.0725614"
+ inkscape:cx="50.470511"
+ inkscape:cy="23.638862"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="961"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="false"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-64)">
+ <path
+ style="fill:#003f7f;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3754)"
+ d="M 63,63 1,63 1,1 63,1 z"
+ id="path2986"
+ inkscape:connector-curvature="0"
+ transform="translate(0,64)" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="64"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="checkbox_f0.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3768"
+ x="-0.24"
+ width="1.48"
+ y="-0.24"
+ height="1.48">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1"
+ id="feGaussianBlur3770" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3760">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="4"
+ id="feGaussianBlur3762" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="3.9296667"
+ inkscape:cx="19.419478"
+ inkscape:cy="29.342662"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true"
+ spacingx="2px"
+ spacingy="2px" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ style="fill:#ff5f00;stroke:#7fbfff;filter:url(#filter3760);stroke-opacity:1;stroke-width:0.50000000000000000;stroke-miterlimit:4;stroke-dasharray:none"
+ d="M 14,6 6,14 6,50 24,32 10,18 18,10 32,24 50,6 z M 58,14 40,32 54,46 46,54 32,40 14,58 50,58 58,50 z"
+ id="path2988"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccc" />
+ <path
+ style="fill:#ff7f1f;stroke:#ff9f5f;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3768)"
+ d="M 14,6 6,14 6,50 24,32 10,18 18,10 32,24 50,6 z M 58,14 40,32 54,46 46,54 32,40 14,58 50,58 58,50 z"
+ id="path2987"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="64"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="checkbox_c0.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3768"
+ x="-0.24"
+ width="1.48"
+ y="-0.24"
+ height="1.48">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1"
+ id="feGaussianBlur3770" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3760">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="4"
+ id="feGaussianBlur3762" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="3.9296667"
+ inkscape:cx="19.419478"
+ inkscape:cy="29.342662"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true"
+ spacingx="2px"
+ spacingy="2px" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ style="fill:#9fcfff;stroke:#7fbfff;filter:url(#filter3760);stroke-opacity:1;stroke-width:0.50000000000000000;stroke-miterlimit:4;stroke-dasharray:none"
+ d="M 14,6 6,14 6,50 24,32 10,18 18,10 32,24 50,6 z M 58,14 40,32 54,46 46,54 32,40 14,58 50,58 58,50 z"
+ id="path2988"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccc" />
+ <path
+ style="fill:#dfefff;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3768)"
+ d="M 14,6 6,14 6,50 24,32 10,18 18,10 32,24 50,6 z M 58,14 40,32 54,46 46,54 32,40 14,58 50,58 58,50 z"
+ id="path2987"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="64"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="checkbox_f0.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3768"
+ x="-0.24"
+ width="1.48"
+ y="-0.24"
+ height="1.48">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1"
+ id="feGaussianBlur3770" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3760">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="4"
+ id="feGaussianBlur3762" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="3.9296667"
+ inkscape:cx="19.419478"
+ inkscape:cy="29.342662"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true"
+ spacingx="2px"
+ spacingy="2px" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ style="fill:#ff7f3f;stroke:#7fbfff;filter:url(#filter3760);stroke-opacity:1;stroke-width:0.50000000000000000;stroke-miterlimit:4;stroke-dasharray:none"
+ d="M 14,6 6,14 6,50 24,32 10,18 18,10 32,24 50,6 z M 58,14 40,32 54,46 46,54 32,40 14,58 50,58 58,50 z"
+ id="path2988"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccc" />
+ <path
+ style="fill:#ff9f5f;stroke:#ffbf9f;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3768)"
+ d="M 14,6 6,14 6,50 24,32 10,18 18,10 32,24 50,6 z M 58,14 40,32 54,46 46,54 32,40 14,58 50,58 58,50 z"
+ id="path2987"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="64"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="checkbox_n0.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3768"
+ x="-0.24"
+ width="1.48"
+ y="-0.24"
+ height="1.48">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1"
+ id="feGaussianBlur3770" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3760">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="4"
+ id="feGaussianBlur3762" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="7.8593334"
+ inkscape:cx="19.419478"
+ inkscape:cy="29.342662"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true"
+ spacingx="2px"
+ spacingy="2px" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ style="fill:#7fbfff;stroke:#7fbfff;filter:url(#filter3760);stroke-opacity:1;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none"
+ d="M 14,6 6,14 6,50 24,32 10,18 18,10 32,24 50,6 z M 58,14 40,32 54,46 46,54 32,40 14,58 50,58 58,50 z"
+ id="path2988"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccc" />
+ <path
+ style="fill:#afd7ff;stroke:#bfdfff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3768)"
+ d="M 14,6 6,14 6,50 24,32 10,18 18,10 32,24 50,6 z M 58,14 40,32 54,46 46,54 32,40 14,58 50,58 58,50 z"
+ id="path2987"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="128"
+ height="128"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="checkmark.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ id="filter3757"
+ inkscape:collect="always">
+ <feGaussianBlur
+ id="feGaussianBlur3759"
+ stdDeviation="4"
+ inkscape:collect="always" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3836">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.5"
+ id="feGaussianBlur3838" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3844"
+ x="-0.11693735"
+ width="1.2338747"
+ y="-0.11693735"
+ height="1.2338747">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="8"
+ id="feGaussianBlur3846" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.1839448"
+ inkscape:cx="40.936894"
+ inkscape:cy="66.488953"
+ inkscape:document-units="px"
+ inkscape:current-layer="svg2"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true"
+ spacingx="2px"
+ spacingy="2px" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <path
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0"
+ id="path3840"
+ d="M 16,64 48,112 112,16 48,88 z"
+ style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:8;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;filter:url(#filter3844)" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0"
+ id="path3834"
+ d="M 16,64 48,112 112,16 48,88 z"
+ style="fill:#ff5f00;fill-opacity:1;stroke:#ff5f00;stroke-width:4;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1;filter:url(#filter3757);stroke-miterlimit:4;stroke-dasharray:none" />
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1" />
+ <path
+ style="fill:#ff7f1f;fill-opacity:1;stroke:#ff9f5f;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3836)"
+ d="M 16,64 48,112 112,16 48,88 z"
+ id="path2985"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="128"
+ height="128"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="closebutton_c.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3663"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1.5"
+ id="feGaussianBlur3665" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3764">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="8"
+ id="feGaussianBlur3766" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="2"
+ inkscape:cx="31.010564"
+ inkscape:cy="95.055865"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true"
+ spacingx="2px"
+ spacingy="2px" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g3760"
+ style="filter:url(#filter3764)">
+ <path
+ style="fill:none;fill-opacity:0;fill-rule:evenodd;stroke:none"
+ d="M 0 0 L 0 128 L 128 128 L 128 0 L 0 0 z "
+ id="rect3758" />
+ <path
+ style="fill:#ff5f00;fill-opacity:1;stroke:#ff5f00;stroke-width:8;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;"
+ d="M 48,16 48,48 80,80 112,80 112,40 88,16 48,16 z M 70,30 80,40 90,30 98,38 88,48 98,58 90,66 80,56 70,66 62,58 72,48 62,38 70,30 z"
+ id="path3661" />
+ </g>
+ <path
+ style="fill:#ff7f1f;fill-opacity:1;stroke:#ff9f5f;stroke-width:4;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3663)"
+ d="M 44,16 44,48 80,84 112,84 112,40 88,16 44,16 z M 70,32 80,42 90,32 96,38 86,48 96,58 90,64 80,54 70,64 64,58 74,48 64,38 70,32 z"
+ id="path3760" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="128"
+ height="128"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="closebutton_f.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3663"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1.5"
+ id="feGaussianBlur3665" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3776"
+ x="-0.11081794"
+ width="1.2216359"
+ y="-0.11081794"
+ height="1.2216359">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="8"
+ id="feGaussianBlur3778" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.4142136"
+ inkscape:cx="-17.412529"
+ inkscape:cy="67.938116"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true"
+ spacingx="2px"
+ spacingy="2px" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g3772"
+ style="filter:url(#filter3776)">
+ <path
+ style="fill:none;fill-opacity:0;fill-rule:evenodd;stroke:none"
+ d="M 0 0 L 0 128 L 128 128 L 128 0 L 0 0 z "
+ id="rect2990" />
+ <path
+ style="fill:#9fcfff;fill-opacity:1;stroke:#9fcfff;stroke-width:8;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;"
+ d="M 48,16 48,48 80,80 112,80 112,40 88,16 48,16 z M 70,30 80,40 90,30 98,38 88,48 98,58 90,66 80,56 70,66 62,58 72,48 62,38 70,30 z"
+ id="path3661" />
+ </g>
+ <path
+ style="fill:#dfefff;fill-opacity:1;stroke:#ffffff;stroke-width:4;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3663)"
+ d="M 44,16 44,48 80,84 112,84 112,40 88,16 44,16 z M 70,32 80,42 90,32 96,38 86,48 96,58 90,64 80,54 70,64 64,58 74,48 64,38 70,32 z"
+ id="path3760" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="128"
+ height="128"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="closebutton_n.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3663"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1.5"
+ id="feGaussianBlur3665" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3767"
+ x="-0.11398417"
+ width="1.2279683"
+ y="-0.11398417"
+ height="1.2279683">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="8"
+ id="feGaussianBlur3769" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1"
+ inkscape:cx="205.02722"
+ inkscape:cy="46.055865"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true"
+ spacingx="2px"
+ spacingy="2px" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g3763"
+ style="filter:url(#filter3767)">
+ <path
+ style="fill:none;fill-opacity:0;fill-rule:evenodd;stroke:none"
+ d="M 0 0 L 0 128 L 128 128 L 128 0 L 0 0 z "
+ id="rect2989" />
+ <path
+ style="fill:#7fbeff;fill-opacity:1;stroke:#7fbeff;stroke-width:8;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;"
+ d="M 48,16 48,48 80,80 112,80 112,40 88,16 48,16 z M 70,30 80,40 90,30 98,38 88,48 98,58 90,66 80,56 70,66 62,58 72,48 62,38 70,30 z"
+ id="path3661" />
+ </g>
+ <path
+ style="fill:#afd7ff;fill-opacity:1;stroke:#bfdfff;stroke-width:4;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3663)"
+ d="M 44,16 44,48 80,84 112,84 112,40 88,16 44,16 z M 70,32 80,42 90,32 96,38 86,48 96,58 90,64 80,54 70,64 64,58 74,48 64,38 70,32 z"
+ id="path3760" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="64"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="color.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3754">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.29999999999999999"
+ id="feGaussianBlur3756" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="8.9531861"
+ inkscape:cx="48.982026"
+ inkscape:cy="37.106256"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="961"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="false"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ style="fill:#ffffff;stroke:none;filter:url(#filter3754)"
+ d="M 8,16 16,8 56,8 56,56 8,56 z"
+ id="path2984"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccc" />
+ </g>
+</svg>
--- /dev/null
+#!/bin/bash
+#Save created files in this subdirectory:
+dir="created"
+
+#Create subdirectory if not already existing
+if [ ! -d "$dir" ]
+then
+ mkdir "$dir"
+fi
+
+#Export png from svg files (to subdirectory)
+for f in *".svg"
+do
+ inkscape -f "$f" -d 90 -e "${dir}/`basename $f .svg`.png"
+done
+
+#Create bigbuttons
+for f in "bigbutton"*".svg"
+do
+ inkscape -f "$f" -d 180 -e "${dir}/`basename $f .svg`.png"
+done
+
+#Copy identical images
+cd "$dir"
+cp bigbutton_n.png bigbutton_d.png
+cp bigbutton_c.png bigbuttongray_c.png
+cp bigbutton_n.png bigbuttongray_d.png
+cp bigbutton_f.png bigbuttongray_f.png
+cp bigbutton_n.png bigbuttongray_n.png
+cp button_n.png button_d.png
+cp button_c.png buttongray_c.png
+cp button_n.png buttongray_d.png
+cp button_f.png buttongray_f.png
+cp button_n.png buttongray_n.png
+cp checkbox_c0.png checkbox_c1.png
+cp checkbox_c0.png checkbox_n1.png
+cp checkbox_n0.png checkbox_d0.png
+cp checkbox_n1.png checkbox_d1.png
+cp radiobutton_c0.png radiobutton_c1.png
+cp radiobutton_c0.png radiobutton_n1.png
+cp radiobutton_n0.png radiobutton_d0.png
+cp radiobutton_n1.png radiobutton_d1.png
+cp slider_n.png slider_d.png
+cp crosshairbutton_c.png colorbutton_c.png
+cp crosshairbutton_f.png colorbutton_f.png
+
+#Edit and convert files
+gimp -d -f -i \
+-b '(dbca "*gray*" 1 0 0 0.0)' \
+-b '(dbca "*_d*" 0 0 0 50.0)' \
+-b '(all2tga "*.png" 1)' \
+-b '(gimp-quit 0)'
+
+#remove png files
+rm *".png"
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="crosshairbutton_c.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3752">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.80000000000000004"
+ id="feGaussianBlur3754" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="3.9646775"
+ inkscape:cx="-1.4011064"
+ inkscape:cy="39.556222"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="10000"
+ inkscape:window-width="1280"
+ inkscape:window-height="961"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="false"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922"
+ guidetolerance="10000"
+ objecttolerance="10000"
+ inkscape:snap-grids="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ style="fill:#ff7f1f;stroke:none;filter:url(#filter3752)"
+ d="M 1,8 1,14 14,1 8,1 z M 16,1 1,16 1,63 248,63 255,56 255,1 z"
+ id="path2986"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="crosshairbutton_c.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3752">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.80000000000000004"
+ id="feGaussianBlur3754" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#ffffff"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.99116937"
+ inkscape:cx="-1.4011064"
+ inkscape:cy="39.556222"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="10000"
+ inkscape:window-width="1280"
+ inkscape:window-height="961"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="false"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922"
+ guidetolerance="10000"
+ objecttolerance="10000"
+ inkscape:snap-grids="true">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ style="fill:#003f7f;stroke:none;filter:url(#filter3752)"
+ d="M 1,8 1,14 14,1 8,1 z M 16,1 1,16 1,63 248,63 255,56 255,1 z"
+ id="path2986"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="128"
+ height="128"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="cursor.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3623">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1"
+ id="feGaussianBlur3625" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3647"
+ x="-0.25464909"
+ width="1.5092982"
+ y="-0.1979338"
+ height="1.3958676">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="7"
+ id="feGaussianBlur3649" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="4.2315923"
+ inkscape:cx="35.618852"
+ inkscape:cy="70.111475"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true"
+ spacingx="2px"
+ spacingy="2px" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ style="fill:#7fbeff;fill-opacity:1;stroke:#7fbeff;stroke-width:2;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3647)"
+ d="M 32.25 15.375 L 32 69.0625 L 42.75 63.75 L 60.5625 81.71875 L 67.71875 78.15625 L 64.28125 53.09375 L 75.03125 47.78125 L 32.25 15.375 z M 79.5 52.28125 L 70.53125 56.71875 L 73.125 75.5 L 107.09375 76.5625 L 79.5 52.28125 z M 41.84375 70.875 L 32.875 75.3125 L 35.375 112 L 55.1875 84.375 L 41.84375 70.875 z "
+ id="path3637" />
+ <path
+ style="fill:#afd7ff;fill-opacity:1;stroke:#bfdfff;stroke-width:2;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3623)"
+ d="M 32.25 15.375 L 32 69.0625 L 42.75 63.75 L 60.5625 81.71875 L 67.71875 78.15625 L 64.28125 53.09375 L 75.03125 47.78125 L 32.25 15.375 z M 79.5 52.28125 L 70.53125 56.71875 L 73.125 75.5 L 107.09375 76.5625 L 79.5 52.28125 z M 41.84375 70.875 L 32.875 75.3125 L 35.375 112 L 55.1875 84.375 L 41.84375 70.875 z "
+ id="path3760" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="128"
+ height="128"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="cursor_move.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3770">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="7"
+ id="feGaussianBlur3772" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3774">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.96042216"
+ id="feGaussianBlur3776" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.1839448"
+ inkscape:cx="73.768983"
+ inkscape:cy="61.18132"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true"
+ spacingx="2px"
+ spacingy="2px" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ style="fill:#7fbfff;stroke:none;filter:url(#filter3770)"
+ d="M 16,16 24,42 30,36 56,60 60,56 36,30 42,24 z M 72,68 68,72 92,98 86,104 112,112 104,86 98,92 z"
+ id="path3009"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccc" />
+ <path
+ style="fill:#7fbfff;stroke:none;filter:url(#filter3770)"
+ d="M 112,16 86,24 92,30 68,56 72,60 98,36 104,42 z M 56,68 30,92 24,86 16,112 42,104 36,98 60,72 z"
+ id="path3007"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccc" />
+ <path
+ style="fill:#afd7ff;stroke:#bfdfff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3774)"
+ d="M 16,16 24,42 30,36 56,60 60,56 36,30 42,24 z M 72,68 68,72 92,98 86,104 112,112 104,86 98,92 z"
+ id="path2999"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccc" />
+ <path
+ style="fill:#afd7ff;stroke:#bfdfff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3774)"
+ d="M 112,16 86,24 92,30 68,56 72,60 98,36 104,42 z M 56,68 30,92 24,86 16,112 42,104 36,98 60,72 z"
+ id="path2997"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="128"
+ height="128"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="cursor_move.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3770">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="7"
+ id="feGaussianBlur3772" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3774">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.96042216"
+ id="feGaussianBlur3776" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.1839448"
+ inkscape:cx="73.768983"
+ inkscape:cy="61.18132"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true"
+ spacingx="2px"
+ spacingy="2px" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ style="fill:#7fbfff;stroke:none;filter:url(#filter3770)"
+ d="M 16,16 24,42 30,36 56,60 60,56 36,30 42,24 z M 72,68 68,72 92,98 86,104 112,112 104,86 98,92 z"
+ id="path3009"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccc" />
+ <path
+ style="fill:#afd7ff;stroke:#bfdfff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3774)"
+ d="M 16,16 24,42 30,36 56,60 60,56 36,30 42,24 z M 72,68 68,72 92,98 86,104 112,112 104,86 98,92 z"
+ id="path2999"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="128"
+ height="128"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="cursor_resize.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3770">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="7"
+ id="feGaussianBlur3772" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3774">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.96042216"
+ id="feGaussianBlur3776" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.1839448"
+ inkscape:cx="73.768983"
+ inkscape:cy="61.18132"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true"
+ spacingx="2px"
+ spacingy="2px" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ style="fill:#7fbfff;stroke:none;filter:url(#filter3770)"
+ d="M 112,16 86,24 92,30 68,56 72,60 98,36 104,42 z M 56,68 30,92 24,86 16,112 42,104 36,98 60,72 z"
+ id="path3007"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccc" />
+ <path
+ style="fill:#afd7ff;stroke:#bfdfff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3774)"
+ d="M 112,16 86,24 92,30 68,56 72,60 98,36 104,42 z M 56,68 30,92 24,86 16,112 42,104 36,98 60,72 z"
+ id="path2997"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="inputbox_n.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3770">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="3"
+ id="feGaussianBlur3772" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3774">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.29999999999999999"
+ id="feGaussianBlur3776" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3763"
+ x="-0.02390229"
+ width="1.0478046"
+ y="-0.10556845"
+ height="1.2111369">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="3"
+ id="feGaussianBlur3765" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3764"
+ x="-0.021783965"
+ width="1.0435679"
+ y="-0.10693946"
+ height="1.2138789">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.80000000000000004"
+ id="feGaussianBlur3766" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="2.9657648"
+ inkscape:cx="100.61889"
+ inkscape:cy="29.202904"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="961"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.5"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.5">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="64,0"
+ id="guide3220" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="192,0"
+ id="guide3224" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ sodipodi:nodetypes="cccccc"
+ inkscape:connector-curvature="0"
+ id="path2993"
+ d="M 20,8 20,56 232,56 232,24 216,8 z"
+ style="fill:#003f7f;fill-opacity:1;stroke:none;filter:url(#filter3763)" />
+ <path
+ style="fill:#003f7f;fill-opacity:1;stroke:none"
+ d="M 20,8 20,56 232,56 232,24 216,8 z"
+ id="path3610"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccc" />
+ <path
+ style="fill:#ffffff;fill-opacity:0.12156863000000000;stroke:none;filter:url(#filter3764)"
+ d="M 16,10 16,14 222,14 218,10 z M 16,18 16,22 230,22 226,18 z M 16,26 16,30 232,30 232,26 z M 16,34 16,38 232,38 232,34 z M 16,42 16,46 232,46 232,42 z M 20,50 20,54 232,54 232,50 z"
+ id="path2822"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccc" />
+ <path
+ sodipodi:nodetypes="cccccccccccccccccccccc"
+ inkscape:connector-curvature="0"
+ id="path2998"
+ d="M 20,4 8,16 8,23 17,32 17,57 20,60 228,60 232,56 40,56 36,52 24,52 20,48 20,12 24,8 60,8 56,4 z M 8,27 8,49 14,54 14,33 z"
+ style="fill:#9fcfff;stroke:none;filter:url(#filter3770)" />
+ <path
+ style="fill:#dfefff;stroke:#ffffff;stroke-width:0.50000000000000000;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3774);stroke-miterlimit:4;stroke-dasharray:none"
+ d="M 20,4 8,16 8,23 17,32 17,57 20,60 228,60 232,56 40,56 36,52 24,52 20,48 20,12 24,8 60,8 56,4 z M 8,27 8,49 14,54 14,33 z"
+ id="path2991"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="inputbox_n.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3770">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="3"
+ id="feGaussianBlur3772" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3774">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.29999999999999999"
+ id="feGaussianBlur3776" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3763"
+ x="-0.02390229"
+ width="1.0478046"
+ y="-0.10556845"
+ height="1.2111369">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="3"
+ id="feGaussianBlur3765" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3764"
+ x="-0.021783965"
+ width="1.0435679"
+ y="-0.10693946"
+ height="1.2138789">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.80000000000000004"
+ id="feGaussianBlur3766" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="2.8034505"
+ inkscape:cx="100.61889"
+ inkscape:cy="29.202904"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="961"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.5"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.5">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="64,0"
+ id="guide3220" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="192,0"
+ id="guide3224" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ sodipodi:nodetypes="cccccc"
+ inkscape:connector-curvature="0"
+ id="path2993"
+ d="M 20,8 20,56 232,56 232,24 216,8 z"
+ style="fill:#002f5f;fill-opacity:1;stroke:none;filter:url(#filter3763)" />
+ <path
+ style="fill:#002f5f;fill-opacity:1;stroke:none"
+ d="M 20,8 20,56 232,56 232,24 216,8 z"
+ id="path3610"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccc" />
+ <path
+ style="fill:#ffffff;fill-opacity:0.12156863000000000;stroke:none;filter:url(#filter3764)"
+ d="M 16,10 16,14 222,14 218,10 z M 16,18 16,22 230,22 226,18 z M 16,26 16,30 232,30 232,26 z M 16,34 16,38 232,38 232,34 z M 16,42 16,46 232,46 232,42 z M 20,50 20,54 232,54 232,50 z"
+ id="path2822"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccc" />
+ <path
+ sodipodi:nodetypes="cccccccccccccccccccccc"
+ inkscape:connector-curvature="0"
+ id="path2998"
+ d="M 20,4 8,16 8,23 17,32 17,57 20,60 228,60 232,56 40,56 36,52 24,52 20,48 20,12 24,8 60,8 56,4 z M 8,27 8,49 14,54 14,33 z"
+ style="fill:#7fbfff;stroke:none;filter:url(#filter3770)" />
+ <path
+ style="fill:#afd7ff;stroke:#bfdfff;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3774);stroke-miterlimit:4;stroke-dasharray:none"
+ d="M 20,4 8,16 8,23 17,32 17,57 20,60 228,60 232,56 40,56 36,52 24,52 20,48 20,12 24,8 60,8 56,4 z M 8,27 8,49 14,54 14,33 z"
+ id="path2991"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="64"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="radiobutton_c0.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3782">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="4"
+ id="feGaussianBlur3784" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3788">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1"
+ id="feGaussianBlur3790" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="5.87915"
+ inkscape:cx="26.062831"
+ inkscape:cy="21.984351"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true"
+ spacingx="2px"
+ spacingy="2px" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g3778"
+ style="filter:url(#filter3782)">
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none"
+ d="M 0 0 L 0 64 L 64 64 L 64 0 L 0 0 z "
+ id="path3776" />
+ <path
+ id="path2994"
+ d="M 32 16 C 23.163444 16 16 23.163444 16 32 C 16 40.836556 23.163444 48 32 48 C 40.836556 48 48 40.836556 48 32 C 48 23.163444 40.836556 16 32 16 z "
+ style="fill:#ff5f00;fill-opacity:0.37254903000000000;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.24705882000000001;filter:url(#filter3782)" />
+ </g>
+ <path
+ id="path2992"
+ d="M 14 6 L 6 14 L 6 48 L 12.25 41.75 C 10.795864 38.812272 10 35.49994 10 32 C 10 19.849735 19.849736 10 32 10 C 35.49994 10 38.812272 10.795864 41.75 12.25 L 48 6 L 14 6 z M 58 16 L 51.75 22.25 C 53.204136 25.187728 54 28.50006 54 32 C 54 44.150265 44.150264 54 32 54 C 28.50006 54 25.187728 53.204136 22.25 51.75 L 16 58 L 50 58 L 58 50 L 58 16 z "
+ style="fill:#ff5f00;fill-opacity:1;fill-rule:evenodd;stroke:#ff5f00;filter:url(#filter3782);stroke-opacity:1;stroke-width:0.50000000000000000;stroke-miterlimit:4;stroke-dasharray:none" />
+ <path
+ style="fill:#ff7f1f;fill-opacity:0.37254903000000000;fill-rule:evenodd;stroke:#ff9f5f;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.37254903000000000;filter:url(#filter3788)"
+ d="M 32 16 C 23.163444 16 16 23.163444 16 32 C 16 40.836556 23.163444 48 32 48 C 40.836556 48 48 40.836556 48 32 C 48 23.163444 40.836556 16 32 16 z "
+ id="path3777" />
+ <path
+ style="fill:#ff7f1f;stroke:#ff9f5f;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3788)"
+ d="M 14 6 L 6 14 L 6 50 L 12.96875 43.03125 C 11.085966 39.788471 10 36.019735 10 32 C 10 19.849736 19.849735 10 32 10 C 36.019735 10 39.788471 11.085966 43.03125 12.96875 L 50 6 L 14 6 z M 58 14 L 51.03125 20.96875 C 52.914034 24.211529 54 27.980265 54 32 C 54 44.150264 44.150265 54 32 54 C 27.980265 54 24.211529 52.914034 20.96875 51.03125 L 14 58 L 50 58 L 58 50 L 58 14 z "
+ id="path2993" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="64"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="radiobutton_n0.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3782">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="4"
+ id="feGaussianBlur3784" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3788">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1"
+ id="feGaussianBlur3790" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="5.5573881"
+ inkscape:cx="26.062831"
+ inkscape:cy="21.984351"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true"
+ spacingx="2px"
+ spacingy="2px" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g3778"
+ style="filter:url(#filter3782)">
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none"
+ d="M 0 0 L 0 64 L 64 64 L 64 0 L 0 0 z "
+ id="path3776" />
+ <path
+ id="path2994"
+ d="M 32 16 C 23.163444 16 16 23.163444 16 32 C 16 40.836556 23.163444 48 32 48 C 40.836556 48 48 40.836556 48 32 C 48 23.163444 40.836556 16 32 16 z "
+ style="fill:#9fcfff;fill-opacity:0.37254903000000000;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.24705882000000001;filter:url(#filter3782)" />
+ </g>
+ <path
+ id="path2992"
+ d="M 14 6 L 6 14 L 6 48 L 12.25 41.75 C 10.795864 38.812272 10 35.49994 10 32 C 10 19.849735 19.849736 10 32 10 C 35.49994 10 38.812272 10.795864 41.75 12.25 L 48 6 L 14 6 z M 58 16 L 51.75 22.25 C 53.204136 25.187728 54 28.50006 54 32 C 54 44.150265 44.150264 54 32 54 C 28.50006 54 25.187728 53.204136 22.25 51.75 L 16 58 L 50 58 L 58 50 L 58 16 z "
+ style="fill:#9fcfff;fill-opacity:1;fill-rule:evenodd;stroke:#9fcfff;filter:url(#filter3782);stroke-opacity:1;stroke-width:0.50000000000000000;stroke-miterlimit:4;stroke-dasharray:none" />
+ <path
+ style="fill:#dfefff;fill-opacity:0.37254903000000000;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.37254903000000000;filter:url(#filter3788)"
+ d="M 32 16 C 23.163444 16 16 23.163444 16 32 C 16 40.836556 23.163444 48 32 48 C 40.836556 48 48 40.836556 48 32 C 48 23.163444 40.836556 16 32 16 z "
+ id="path3777" />
+ <path
+ style="fill:#dfefff;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3788)"
+ d="M 14 6 L 6 14 L 6 50 L 12.96875 43.03125 C 11.085966 39.788471 10 36.019735 10 32 C 10 19.849736 19.849735 10 32 10 C 36.019735 10 39.788471 11.085966 43.03125 12.96875 L 50 6 L 14 6 z M 58 14 L 51.03125 20.96875 C 52.914034 24.211529 54 27.980265 54 32 C 54 44.150264 44.150265 54 32 54 C 27.980265 54 24.211529 52.914034 20.96875 51.03125 L 14 58 L 50 58 L 58 50 L 58 14 z "
+ id="path2993" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="64"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="radiobutton_c0.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3782">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="4"
+ id="feGaussianBlur3784" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3788">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1"
+ id="feGaussianBlur3790" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="5.5573881"
+ inkscape:cx="26.062831"
+ inkscape:cy="21.984351"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true"
+ spacingx="2px"
+ spacingy="2px" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g3778"
+ style="filter:url(#filter3782)">
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none"
+ d="M 0 0 L 0 64 L 64 64 L 64 0 L 0 0 z "
+ id="path3776" />
+ <path
+ id="path2994"
+ d="M 32 16 C 23.163444 16 16 23.163444 16 32 C 16 40.836556 23.163444 48 32 48 C 40.836556 48 48 40.836556 48 32 C 48 23.163444 40.836556 16 32 16 z "
+ style="fill:#ff7f3f;fill-opacity:0.37254903000000000;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.24705882000000001;filter:url(#filter3782)" />
+ </g>
+ <path
+ id="path2992"
+ d="M 14 6 L 6 14 L 6 48 L 12.25 41.75 C 10.795864 38.812272 10 35.49994 10 32 C 10 19.849735 19.849736 10 32 10 C 35.49994 10 38.812272 10.795864 41.75 12.25 L 48 6 L 14 6 z M 58 16 L 51.75 22.25 C 53.204136 25.187728 54 28.50006 54 32 C 54 44.150265 44.150264 54 32 54 C 28.50006 54 25.187728 53.204136 22.25 51.75 L 16 58 L 50 58 L 58 50 L 58 16 z "
+ style="fill:#ff7f3f;fill-opacity:1;fill-rule:evenodd;stroke:#ff7f3f;filter:url(#filter3782);stroke-opacity:1;stroke-width:0.50000000000000000;stroke-miterlimit:4;stroke-dasharray:none" />
+ <path
+ style="fill:#ff9f5f;fill-opacity:0.37254903000000000;fill-rule:evenodd;stroke:#ffbf9f;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.37254903000000000;filter:url(#filter3788)"
+ d="M 32 16 C 23.163444 16 16 23.163444 16 32 C 16 40.836556 23.163444 48 32 48 C 40.836556 48 48 40.836556 48 32 C 48 23.163444 40.836556 16 32 16 z "
+ id="path3777" />
+ <path
+ style="fill:#ff9f5f;stroke:#ffbf9f;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3788)"
+ d="M 14 6 L 6 14 L 6 50 L 12.96875 43.03125 C 11.085966 39.788471 10 36.019735 10 32 C 10 19.849736 19.849735 10 32 10 C 36.019735 10 39.788471 11.085966 43.03125 12.96875 L 50 6 L 14 6 z M 58 14 L 51.03125 20.96875 C 52.914034 24.211529 54 27.980265 54 32 C 54 44.150264 44.150265 54 32 54 C 27.980265 54 24.211529 52.914034 20.96875 51.03125 L 14 58 L 50 58 L 58 50 L 58 14 z "
+ id="path2993" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="64"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="radiobutton_n0.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3782">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="4"
+ id="feGaussianBlur3784" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3788">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1"
+ id="feGaussianBlur3790" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="5.5573881"
+ inkscape:cx="26.062831"
+ inkscape:cy="21.984351"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true"
+ spacingx="2px"
+ spacingy="2px" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g3778"
+ style="filter:url(#filter3782)">
+ <path
+ style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:none"
+ d="M 0 0 L 0 64 L 64 64 L 64 0 L 0 0 z "
+ id="path3776" />
+ <path
+ id="path2994"
+ d="M 32 16 C 23.163444 16 16 23.163444 16 32 C 16 40.836556 23.163444 48 32 48 C 40.836556 48 48 40.836556 48 32 C 48 23.163444 40.836556 16 32 16 z "
+ style="fill:#7fbfff;fill-opacity:0.37254903000000000;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.24705882000000001;filter:url(#filter3782)" />
+ </g>
+ <path
+ id="path2992"
+ d="M 14 6 L 6 14 L 6 48 L 12.25 41.75 C 10.795864 38.812272 10 35.49994 10 32 C 10 19.849735 19.849736 10 32 10 C 35.49994 10 38.812272 10.795864 41.75 12.25 L 48 6 L 14 6 z M 58 16 L 51.75 22.25 C 53.204136 25.187728 54 28.50006 54 32 C 54 44.150265 44.150264 54 32 54 C 28.50006 54 25.187728 53.204136 22.25 51.75 L 16 58 L 50 58 L 58 50 L 58 16 z "
+ style="fill:#7fbfff;fill-opacity:1;fill-rule:evenodd;stroke:#7fbfff;filter:url(#filter3782);stroke-opacity:1;stroke-width:0.50000000000000000;stroke-miterlimit:4;stroke-dasharray:none" />
+ <path
+ style="fill:#afd7ff;fill-opacity:0.37254903000000000;fill-rule:evenodd;stroke:#bfdfff;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.37254903000000000;filter:url(#filter3788)"
+ d="M 32 16 C 23.163444 16 16 23.163444 16 32 C 16 40.836556 23.163444 48 32 48 C 40.836556 48 48 40.836556 48 32 C 48 23.163444 40.836556 16 32 16 z "
+ id="path3777" />
+ <path
+ style="fill:#afd7ff;stroke:#bfdfff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3788)"
+ d="M 14 6 L 6 14 L 6 50 L 12.96875 43.03125 C 11.085966 39.788471 10 36.019735 10 32 C 10 19.849736 19.849735 10 32 10 C 36.019735 10 39.788471 11.085966 43.03125 12.96875 L 50 6 L 14 6 z M 58 14 L 51.03125 20.96875 C 52.914034 24.211529 54 27.980265 54 32 C 54 44.150264 44.150265 54 32 54 C 27.980265 54 24.211529 52.914034 20.96875 51.03125 L 14 58 L 50 58 L 58 50 L 58 14 z "
+ id="path2993" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="64"
+ height="256"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="scrollbar_f.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3773">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.59999999999999998"
+ id="feGaussianBlur3775" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3770">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="4"
+ id="feGaussianBlur3772" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.9648335"
+ inkscape:cx="123.89846"
+ inkscape:cy="169.95122"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="961"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.5"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.5"
+ objecttolerance="50">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="0,64"
+ id="guide3220" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="0,192"
+ id="guide3224" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g2998"
+ style="filter:url(#filter3770)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path2992"
+ d="M 0,0 64,0 64,256 0,256 z"
+ style="fill:none;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <path
+ id="path2991"
+ d="M 28 7 L 12 23 L 23 34 L 23 222 L 12 233 L 28 249 L 52 249 L 56 245 L 32 223 L 32 205 L 44 194 L 44 62 L 32 51 L 32 33 L 56 11 L 52 7 L 28 7 z M 57 16 L 36 35 L 36 49 L 44 57 L 57 16 z M 12 29 L 12 227 L 19 220 L 19 36 L 12 29 z M 44 199 L 36 207 L 36 221 L 57 240 L 44 199 z "
+ style="fill:#ff5f00;stroke:#ff5f00;stroke-width:0.50000000000000000;stroke-miterlimit:4;stroke-dasharray:none;filter:url(#filter3780)" />
+ </g>
+ <path
+ style="fill:#ff7f1f;stroke:#ff9f5f;stroke-width:0.50000000000000000;stroke-miterlimit:4;stroke-dasharray:none;filter:url(#filter3773)"
+ d="M 28 7 L 12 23 L 23 34 L 23 222 L 12 233 L 28 249 L 52 249 L 56 245 L 32 223 L 32 205 L 44 194 L 44 62 L 32 51 L 32 33 L 56 11 L 52 7 L 28 7 z M 57 16 L 36 35 L 36 49 L 44 57 L 57 16 z M 12 29 L 12 227 L 19 220 L 19 36 L 12 29 z M 44 199 L 36 207 L 36 221 L 57 240 L 44 199 z "
+ id="path2993" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="64"
+ height="256"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="scrollbar_n.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3773">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.59999999999999998"
+ id="feGaussianBlur3775" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3770">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="4"
+ id="feGaussianBlur3772" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.9648335"
+ inkscape:cx="123.89846"
+ inkscape:cy="169.95122"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="961"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.5"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.5"
+ objecttolerance="50">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="0,64"
+ id="guide3220" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="0,192"
+ id="guide3224" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g2998"
+ style="filter:url(#filter3770)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path2992"
+ d="M 0,0 64,0 64,256 0,256 z"
+ style="fill:none;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <path
+ id="path2991"
+ d="M 28 7 L 12 23 L 23 34 L 23 222 L 12 233 L 28 249 L 52 249 L 56 245 L 32 223 L 32 205 L 44 194 L 44 62 L 32 51 L 32 33 L 56 11 L 52 7 L 28 7 z M 57 16 L 36 35 L 36 49 L 44 57 L 57 16 z M 12 29 L 12 227 L 19 220 L 19 36 L 12 29 z M 44 199 L 36 207 L 36 221 L 57 240 L 44 199 z "
+ style="fill:#9fcfff;stroke:#9fcfff;stroke-width:0.50000000000000000;stroke-miterlimit:4;stroke-dasharray:none;filter:url(#filter3780)" />
+ </g>
+ <path
+ style="fill:#dfefff;stroke:#ffffff;stroke-width:0.50000000000000000;stroke-miterlimit:4;stroke-dasharray:none;filter:url(#filter3773)"
+ d="M 28 7 L 12 23 L 23 34 L 23 222 L 12 233 L 28 249 L 52 249 L 56 245 L 32 223 L 32 205 L 44 194 L 44 62 L 32 51 L 32 33 L 56 11 L 52 7 L 28 7 z M 57 16 L 36 35 L 36 49 L 44 57 L 57 16 z M 12 29 L 12 227 L 19 220 L 19 36 L 12 29 z M 44 199 L 36 207 L 36 221 L 57 240 L 44 199 z "
+ id="path2993" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="64"
+ height="256"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="scrollbar_n.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3773">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.59999999999999998"
+ id="feGaussianBlur3775" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3770">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="4"
+ id="feGaussianBlur3772" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.9648335"
+ inkscape:cx="123.89846"
+ inkscape:cy="169.95122"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="961"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.5"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.5"
+ objecttolerance="50">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="0,64"
+ id="guide3220" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="0,192"
+ id="guide3224" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g2998"
+ style="filter:url(#filter3770)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path2992"
+ d="M 0,0 64,0 64,256 0,256 z"
+ style="fill:none;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+ <path
+ id="path2991"
+ d="M 28 7 L 12 23 L 23 34 L 23 222 L 12 233 L 28 249 L 52 249 L 56 245 L 32 223 L 32 205 L 44 194 L 44 62 L 32 51 L 32 33 L 56 11 L 52 7 L 28 7 z M 57 16 L 36 35 L 36 49 L 44 57 L 57 16 z M 12 29 L 12 227 L 19 220 L 19 36 L 12 29 z M 44 199 L 36 207 L 36 221 L 57 240 L 44 199 z "
+ style="fill:#7fbfff;stroke:#7fbfff;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;filter:url(#filter3780)" />
+ </g>
+ <path
+ style="fill:#afd7ff;stroke:#bfdfff;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;filter:url(#filter3773)"
+ d="M 28 7 L 12 23 L 23 34 L 23 222 L 12 233 L 28 249 L 52 249 L 56 245 L 32 223 L 32 205 L 44 194 L 44 62 L 32 51 L 32 33 L 56 11 L 52 7 L 28 7 z M 57 16 L 36 35 L 36 49 L 44 57 L 57 16 z M 12 29 L 12 227 L 19 220 L 19 36 L 12 29 z M 44 199 L 36 207 L 36 221 L 57 240 L 44 199 z "
+ id="path2993" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="64"
+ height="256"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="slider_s.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3769"
+ x="-0.0089095132"
+ width="1.017819"
+ y="-0.13364269"
+ height="1.2672853"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.5"
+ id="feGaussianBlur3771" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3779"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="4"
+ id="feGaussianBlur3781" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.70086263"
+ inkscape:cx="54.115302"
+ inkscape:cy="33.076994"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="961"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.5"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.5">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="0,64"
+ id="guide3220" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="0,192"
+ id="guide3224" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,192)">
+ <g
+ id="g3775"
+ style="filter:url(#filter3779)">
+ <path
+ style="fill:none;stroke:none"
+ d="M 0,-192 0,64 64,64 64,-192 0,-192 z"
+ id="path3773"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#7fbfff;fill-opacity:0.30980392;stroke:#7fbfff;stroke-opacity:0.30980392;filter:url(#filter3769)"
+ d="M 34,-184 24,-172 34,-162 34,-142 40,-136 40,-178 34,-184 z M 24,-168 24,40 31,33 31,13 40,4 40,-132 31,-141 31,-161 24,-168 z M 40,8 34,14 34,34 24,44 34,56 40,50 40,8 z"
+ id="path2993"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ style="fill:#7fbfff;fill-opacity:0.24705882;stroke:#7fbfff;stroke-opacity:0.24705882;filter:url(#filter3766)"
+ d="M 34,-184 24,-172 34,-162 34,-142 40,-136 40,-178 34,-184 z M 24,-168 24,40 31,33 31,13 40,4 40,-132 31,-141 31,-161 24,-168 z M 40,8 34,14 34,34 24,44 34,56 40,50 40,8 z"
+ id="path2995"
+ inkscape:connector-curvature="0" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="64"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="slider_f.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3770"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="4"
+ id="feGaussianBlur3772" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3774"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.29999999999999999"
+ id="feGaussianBlur3776" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="10.506472"
+ inkscape:cx="32.616211"
+ inkscape:cy="31.482594"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="961"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.5"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.5">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ sodipodi:nodetypes="cccccccccccccccccccc"
+ inkscape:connector-curvature="0"
+ id="path2989"
+ d="M 22,12 6,32 22,52 26,52 26,43 30,39 30,25 26,21 26,12 z M 42,12 38,12 38,21 34,25 34,39 38,43 38,52 42,52 58,32 z"
+ style="fill:#ff5f00;stroke:#ff5f00;filter:url(#filter3770);stroke-width:0.50000000000000000;stroke-miterlimit:4;stroke-dasharray:none" />
+ <path
+ style="fill:#ff7f1f;stroke:#ff9f5f;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3774)"
+ d="M 22,12 6,32 22,52 26,52 26,43 30,39 30,25 26,21 26,12 z M 42,12 38,12 38,21 34,25 34,39 38,43 38,52 42,52 58,32 z"
+ id="path3006"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="64"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="slider_n.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3770"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="4"
+ id="feGaussianBlur3772" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3774"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.29999999999999999"
+ id="feGaussianBlur3776" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="10.506472"
+ inkscape:cx="32.616211"
+ inkscape:cy="32.769937"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="961"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.5"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.5">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ sodipodi:nodetypes="cccccccccccccccccccc"
+ inkscape:connector-curvature="0"
+ id="path2989"
+ d="M 22,12 6,32 22,52 26,52 26,43 30,39 30,25 26,21 26,12 z M 42,12 38,12 38,21 34,25 34,39 38,43 38,52 42,52 58,32 z"
+ style="fill:#9fcfff;stroke:#9fcfff;filter:url(#filter3770);stroke-width:0.50000000000000000;stroke-miterlimit:4;stroke-dasharray:none" />
+ <path
+ style="fill:#dfefff;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3774)"
+ d="M 22,12 6,32 22,52 26,52 26,43 30,39 30,25 26,21 26,12 z M 42,12 38,12 38,21 34,25 34,39 38,43 38,52 42,52 58,32 z"
+ id="path3006"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="64"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="slider_n.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3770"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="4"
+ id="feGaussianBlur3772" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3774"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.29999999999999999"
+ id="feGaussianBlur3776" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="10.506472"
+ inkscape:cx="32.616211"
+ inkscape:cy="32.769937"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="961"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.5"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.5">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ sodipodi:nodetypes="cccccccccccccccccccc"
+ inkscape:connector-curvature="0"
+ id="path2989"
+ d="M 22,12 6,32 22,52 26,52 26,43 30,39 30,25 26,21 26,12 z M 42,12 38,12 38,21 34,25 34,39 38,43 38,52 42,52 58,32 z"
+ style="fill:#7fbfff;stroke:#7fbfff;filter:url(#filter3770);stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none" />
+ <path
+ style="fill:#afd7ff;stroke:#bfdfff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3774)"
+ d="M 22,12 6,32 22,52 26,52 26,43 30,39 30,25 26,21 26,12 z M 42,12 38,12 38,21 34,25 34,39 38,43 38,52 42,52 58,32 z"
+ id="path3006"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccc" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="scrollbar_s.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3769"
+ x="-0.0089095128"
+ width="1.017819"
+ y="-0.13364269"
+ height="1.2672854">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.5"
+ id="feGaussianBlur3771" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3779">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="4"
+ id="feGaussianBlur3781" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="0.70086263"
+ inkscape:cx="54.115302"
+ inkscape:cy="33.076994"
+ inkscape:document-units="px"
+ inkscape:current-layer="svg2"
+ showgrid="false"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="961"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.5"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.5">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="64,0"
+ id="guide3220" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="192,0"
+ id="guide3224" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <g
+ id="g3775"
+ style="filter:url(#filter3779)">
+ <path
+ style="fill:none;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 0 0 L 0 64 L 256 64 L 256 0 L 0 0 z "
+ id="path3773" />
+ <path
+ style="fill:#7fbfff;fill-opacity:0.30980392;stroke:#7fbfff;stroke-opacity:0.30980392;filter:url(#filter3769)"
+ d="M 20,24 C 16,27.333333 12,30.666667 8,34 10.217386,35.868172 12.029745,38.714168 14.488344,40 28.325563,40 42.162781,40 56,40 53.782614,38.131828 51.970255,35.285832 49.511656,34 43.007771,34 36.503885,34 30,34 26.666667,30.666667 23.333333,27.333333 20,24 z M 24,24 C 26.550853,26.201183 28.696352,29.380977 31.488344,31 37.992229,31 44.496115,31 51,31 54,34 57,37 60,40 105.33333,40 150.66667,40 196,40 199,37 202,34 205,31 211.66667,31 218.33333,31 225,31 227.33333,28.666667 229.66667,26.333333 232,24 162.66667,24 93.333333,24 24,24 z M 236,24 C 232.45666,27.219327 229.29324,31.355858 225.51166,34 219.00777,34 212.50389,34 206,34 204.48104,35.868172 200.60141,38.714168 200.48834,40 214.32556,40 228.16278,40 242,40 243.5999,37.908266 247.23996,35.723989 247.62484,33.68737 243.7499,30.458247 239.87495,27.229123 236,24 z"
+ id="path2993"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ style="fill:#7fbfff;fill-opacity:0.24705882000000001;stroke:#7fbfff;stroke-opacity:0.24705882000000001;filter:url(#filter3766)"
+ d="M 20 24 L 8 34 L 14 40 L 56 40 L 50 34 L 30 34 L 20 24 z M 24 24 L 31 31 L 51 31 L 60 40 L 196 40 L 205 31 L 225 31 L 232 24 L 24 24 z M 236 24 L 226 34 L 206 34 L 200 40 L 242 40 L 248 34 L 236 24 z "
+ id="path2995" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:xlink="http://www.w3.org/1999/xlink"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="256"
+ height="256"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="tooltip.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="45"
+ inkscape:export-ydpi="45">
+ <defs
+ id="defs4">
+ <linearGradient
+ id="linearGradient3793">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.18431373;"
+ offset="0"
+ id="stop3795" />
+ <stop
+ id="stop3803"
+ offset="0.25"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ <stop
+ id="stop3801"
+ offset="0.75"
+ style="stop-color:#ffffff;stop-opacity:0;" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:0.18431373;"
+ offset="1"
+ id="stop3797" />
+ </linearGradient>
+ <filter
+ inkscape:collect="always"
+ id="filter3779"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="0.5"
+ id="feGaussianBlur3781" />
+ </filter>
+ <filter
+ inkscape:collect="always"
+ id="filter3812"
+ color-interpolation-filters="sRGB">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="5"
+ id="feGaussianBlur3814" />
+ </filter>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3793"
+ id="linearGradient3799"
+ x1="128"
+ y1="256"
+ x2="128"
+ y2="0"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3793"
+ id="linearGradient3003"
+ gradientUnits="userSpaceOnUse"
+ x1="128"
+ y1="256"
+ x2="128"
+ y2="0"
+ gradientTransform="translate(0,280)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3793"
+ id="linearGradient3008"
+ gradientUnits="userSpaceOnUse"
+ x1="128"
+ y1="256"
+ x2="128"
+ y2="0"
+ gradientTransform="translate(0,428)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3793"
+ id="linearGradient3010"
+ gradientUnits="userSpaceOnUse"
+ x1="128"
+ y1="256"
+ x2="128"
+ y2="0" />
+ <filter
+ inkscape:collect="always"
+ id="filter3781">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="1"
+ id="feGaussianBlur3783" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="1.264613"
+ inkscape:cx="80.590853"
+ inkscape:cy="158.51998"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="0,64"
+ id="guide3179" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="64,0"
+ id="guide3183" />
+ <sodipodi:guide
+ orientation="1,0"
+ position="192,0"
+ id="guide3185" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ style="display:inline"
+ transform="translate(0,-256)">
+ <path
+ style="fill:#003f7f;fill-opacity:1;stroke:none"
+ d="M 236,482 224,494 32,494 20,482 20,286 32,274 224,274 236,286 z"
+ id="back"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccc" />
+ <path
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0"
+ id="path3013"
+ transform="translate(0,256)"
+ d="M 24,16 10,30 18,38 18,218 10,226 24,240 232,240 246,226 238,218 238,38 246,30 232,16 z M 32,19 224,19 235,30 235,226 224,237 32,237 21,226 21,30 z M 10,37 10,218 13,215 13,40 z M 246,37 243,40 243,215 246,218 z"
+ style="fill:#9fcfff;fill-opacity:1;stroke:#9fcfff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3812)" />
+ <path
+ style="fill:#dfefff;fill-opacity:1;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter3779)"
+ d="M 24,16 10,30 18,38 18,218 10,226 24,240 232,240 246,226 238,218 238,38 246,30 232,16 z M 32,19 224,19 235,30 235,226 224,237 32,237 21,226 21,30 z M 10,37 10,218 13,215 13,40 z M 246,37 243,40 243,215 246,218 z"
+ id="frame"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccccccccccccccc"
+ transform="translate(0,256)" />
+ <path
+ style="fill:url(#linearGradient3010);fill-opacity:1;stroke:none;filter:url(#filter3781)"
+ d="M 20 24 L 20 28 L 236 28 L 236 24 L 20 24 z M 20 32 L 20 36 L 236 36 L 236 32 L 20 32 z M 20 40 L 20 44 L 236 44 L 236 40 L 20 40 z M 20 48 L 20 52 L 236 52 L 236 48 L 20 48 z M 20 56 L 20 60 L 236 60 L 236 56 L 20 56 z M 20 196 L 20 200 L 236 200 L 236 196 L 20 196 z M 20 204 L 20 208 L 236 208 L 236 204 L 20 204 z M 20 212 L 20 216 L 236 216 L 236 212 L 20 212 z M 20 220 L 20 224 L 236 224 L 236 220 L 20 220 z M 20 228 L 20 232 L 236 232 L 236 228 L 20 228 z "
+ id="path3783"
+ transform="translate(0,256)" />
+ </g>
+</svg>
--- /dev/null
+==========================
+Luminos - Xonotic Skin(s)
+==========================
+
+Released : 2010
+Author : Severin "sev" Meyer
+EMail : sev.ch(at)web.de
+
+Programs used: Inkscape 0.48, Gimp 2.6.8, Blender 2.49a, ImageMagick 6.5.4-8
+
+==========================
+./create scripts (Linux)
+==========================
+
+The ./create shell scripts batch-export, render and
+convert the final images from various sourcefiles.
+
+They use Inkscape, Gimp, Blender and ImageMagick, and require the provided
+Gimp scripts (gimp_files/*.scm) to be present in ~/.gimp*/scripts/.
+
+==========================
+Foreign Sourcefiles
+==========================
+
+All foreign images and Blender materials I used for the
+HUD skin have been released into the Public Domain.
+
+For some of the notify icons, I used the following Blender materials from the
+Blender Open Material Repository, found at http://www.blender-materials.org:
+alien_egg.blend by sypher7
+hard_lava.blend by madnux
+ocean_water.blend by Paratron
+
+The original photography of the tent (notify_camping) can be found here:
+http://commons.wikimedia.org/wiki/File:NEMO_Moki.jpg
+
+The original photography of the trout (notify_melee) can be found here:
+http://commons.wikimedia.org/wiki/File:Brown_Trout_19_10_08.JPG
+
+==========================
+GNU General Public License
+==========================
+
+I release the files, that I created for this project, under the terms of the
+GNU General Public License as published by the Free Software Foundation, either
+version 2 of the License, or any later version. <http://www.gnu.org/licenses/>
+
+All the files that are part of this project are distributed in the hope
+that they will be useful, but WITHOUT ANY WARRANTY; without even the
+implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
--- /dev/null
+#!/bin/bash
+#Save created files in this subdirectory:
+dir="created"
+
+#Create subdirectory if not already existing
+if [ ! -d "$dir" ]
+then
+ mkdir "$dir"
+fi
+
+#Export png from svg files (to subdirectory)
+for f in *".svg"
+do
+ inkscape -f "$f" -d 90 -e "${dir}/`basename $f .svg`.png"
+done
+
+#Cconvert files
+cd "$dir"
+gimp -d -f -i \
+-b '(all2tga "*.png" 1)' \
+-b '(gimp-quit 0)'
+
+#remove png files
+rm *".png"
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="32"
+ height="32"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="scoreboard_bg (Kopie).svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3757">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="2"
+ id="feGaussianBlur3759" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="3.8949652"
+ inkscape:cx="-6.6889564"
+ inkscape:cy="21.660469"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true"
+ spacingx="2px"
+ spacingy="2px" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-32)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ transform="translate(0,32)"
+ inkscape:connector-curvature="0"
+ id="path3755"
+ d="M 4,16 12,28 28,4 12,22 z"
+ style="fill:#dfdfdf;stroke:#dfdfdf;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1;filter:url(#filter3757);stroke-miterlimit:4;stroke-dasharray:none" />
+ <path
+ style="fill:#efefef;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
+ d="M 4,16 12,28 28,4 12,22 z"
+ id="path2985"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc"
+ transform="translate(0,32)" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="64"
+ height="32"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="playercolor_pants.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3789"
+ x="-0.06867437"
+ width="1.1373487"
+ y="-0.24894459"
+ height="1.4978892">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="2"
+ id="feGaussianBlur3791" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="13.921177"
+ inkscape:cx="30.015531"
+ inkscape:cy="13.425901"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true"
+ spacingx="1px"
+ spacingy="1px" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-32)">
+ <path
+ transform="translate(0,32)"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0"
+ id="path3766"
+ d="M 4,15 28,15 34,21 60,21 60,26 15,26 z"
+ style="fill:#dfdfdf;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3789)" />
+ <path
+ transform="translate(0,32)"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0"
+ id="path2996"
+ d="M 4,6 49,6 60,17 36,17 30,11 4,11 z"
+ style="fill:#dfdfdf;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3789)" />
+ <path
+ style="fill:#efefef;fill-opacity:1;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 4,6 49,6 60,17 36,17 30,11 4,11 z"
+ id="path3779"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccc"
+ transform="translate(0,32)" />
+ <path
+ style="fill:#efefef;fill-opacity:1;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 4,15 28,15 34,21 60,21 60,26 15,26 z"
+ id="path3781"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccc"
+ transform="translate(0,32)" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="64"
+ height="32"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="playercolor_shirt.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3789"
+ x="-0.06867437"
+ width="1.1373487"
+ y="-0.24894459"
+ height="1.4978892">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="2"
+ id="feGaussianBlur3791" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="13.921177"
+ inkscape:cx="30.015531"
+ inkscape:cy="13.425901"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true"
+ spacingx="1px"
+ spacingy="1px" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-32)">
+ <path
+ transform="translate(0,32)"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0"
+ id="path2996"
+ d="M 4,6 49,6 60,17 36,17 30,11 4,11 z"
+ style="fill:#dfdfdf;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3789)" />
+ <path
+ style="fill:#efefef;fill-opacity:1;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 4,6 49,6 60,17 36,17 30,11 4,11 z"
+ id="path3779"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccc"
+ transform="translate(0,32)" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="64"
+ height="32"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="playercolor_base.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4">
+ <filter
+ inkscape:collect="always"
+ id="filter3789"
+ x="-0.06867437"
+ width="1.1373487"
+ y="-0.24894459"
+ height="1.4978892">
+ <feGaussianBlur
+ inkscape:collect="always"
+ stdDeviation="2"
+ id="feGaussianBlur3791" />
+ </filter>
+ </defs>
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="13.921177"
+ inkscape:cx="30.015531"
+ inkscape:cy="13.425901"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true"
+ spacingx="1px"
+ spacingy="1px" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title></dc:title>
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1"
+ transform="translate(0,-32)">
+ <path
+ transform="translate(0,32)"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0"
+ id="path3766"
+ d="M 4,15 28,15 34,21 60,21 60,26 15,26 z"
+ style="fill:#dfdfdf;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3789)" />
+ <path
+ style="fill:#efefef;fill-opacity:1;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 4,15 28,15 34,21 60,21 60,26 15,26 z"
+ id="path3781"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccc"
+ transform="translate(0,32)" />
+ </g>
+</svg>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+ width="64"
+ height="64"
+ id="svg2"
+ sodipodi:version="0.32"
+ inkscape:version="0.48.0 r9654"
+ version="1.0"
+ sodipodi:docname="scoreboard_bg.svg"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ inkscape:export-xdpi="90"
+ inkscape:export-ydpi="90">
+ <defs
+ id="defs4" />
+ <sodipodi:namedview
+ id="base"
+ pagecolor="#000000"
+ bordercolor="#666666"
+ borderopacity="1.0"
+ inkscape:pageopacity="0"
+ inkscape:pageshadow="2"
+ inkscape:zoom="11.016625"
+ inkscape:cx="53.728038"
+ inkscape:cy="29.342662"
+ inkscape:document-units="px"
+ inkscape:current-layer="layer1"
+ showgrid="true"
+ inkscape:showpageshadow="false"
+ inkscape:snap-bbox="true"
+ gridtolerance="8"
+ inkscape:window-width="1280"
+ inkscape:window-height="963"
+ inkscape:window-x="0"
+ inkscape:window-y="0"
+ showguides="true"
+ inkscape:guide-bbox="true"
+ guidecolor="#00007f"
+ guideopacity="0.49803922"
+ guidehicolor="#ff0000"
+ guidehiopacity="0.49803922">
+ <inkscape:grid
+ type="xygrid"
+ id="grid2389"
+ visible="true"
+ enabled="true"
+ empspacing="4"
+ color="#003fff"
+ opacity="0.1254902"
+ empcolor="#007eff"
+ empopacity="0.25098039"
+ snapvisiblegridlinesonly="true"
+ spacingx="2px"
+ spacingy="2px" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata7">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <dc:title />
+ </cc:Work>
+ </rdf:RDF>
+ </metadata>
+ <g
+ inkscape:label="Ebene 1"
+ inkscape:groupmode="layer"
+ id="layer1">
+ <path
+ style="fill:#bfbfbf;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1"
+ d="M -8,-8 72,-8 72,72 -8,72 z"
+ id="path2986"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ffffff;fill-opacity:1;stroke:none"
+ d="M -8,4 -8,12 72,12 72,4 z M -8,20 -8,28 72,28 72,20 z M -8,36 -8,44 72,44 72,36 z M -8,52 -8,60 72,60 72,52 z"
+ id="path2989"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccccccccccc" />
+ </g>
+</svg>