Merge branch 'gglnx-master'
This commit is contained in:
commit
0f724d2daf
7 changed files with 1576 additions and 0 deletions
98
ppw15b/__init__.py
Normal file
98
ppw15b/__init__.py
Normal file
|
@ -0,0 +1,98 @@
|
|||
#!/usr/bin/python
|
||||
import subprocess
|
||||
import os.path
|
||||
from renderlib import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'https://frab.sendegate.de/de/ppw15b/public/schedule.xml'
|
||||
|
||||
def easeOutCubic(t, b, c, d):
|
||||
t=float(t)/d-1
|
||||
return c*((t)*t*t + 1) + b
|
||||
|
||||
def introFrames(parameters):
|
||||
# 1 Sekunden stehen bleiben
|
||||
frames = 1*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('logo', 'style', 'opacity', "1"),
|
||||
('flowRoot3405', 'style', 'opacity', "0.0")
|
||||
)
|
||||
|
||||
# 2 Sekunden Fade-in
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('logo', 'style', 'opacity', "1"),
|
||||
('flowRoot3405', 'style', 'opacity', "%.4f" % easeOutCubic(i, 0, 1, frames)),
|
||||
)
|
||||
|
||||
# 5 Sekunden stehen bleiben
|
||||
frames = 5*fps
|
||||
for i in range(0, frames):
|
||||
yield ()
|
||||
|
||||
def outroFrames(parameters):
|
||||
frames = 5*fps
|
||||
for i in range(0, frames):
|
||||
yield ()
|
||||
|
||||
def pauseFrames(parameters):
|
||||
frames = 5*fps
|
||||
for i in range(0, frames):
|
||||
yield ()
|
||||
|
||||
def debug():
|
||||
render(
|
||||
'intro.svg',
|
||||
'../intro.dv',
|
||||
introFrames,
|
||||
{
|
||||
'$title': "Podcasten aus dem Bundestag – die Entstehung eines politischen Formats",
|
||||
'$subtitle': 'Alles über Technische Aufklärung',
|
||||
'$personnames': 'Felix Betzin, Jonas Schönfelder'
|
||||
}
|
||||
)
|
||||
|
||||
render(
|
||||
'outro.svg',
|
||||
'../outro.dv',
|
||||
outroFrames
|
||||
)
|
||||
|
||||
render(
|
||||
'pause.svg',
|
||||
'../pause.dv',
|
||||
pauseFrames
|
||||
)
|
||||
|
||||
def tasks(queue, parameters):
|
||||
# iterate over all events extracted from the schedule xml-export
|
||||
for event in events(scheduleUrl):
|
||||
# HACK: only render event 49
|
||||
#if event['id'] != 49:
|
||||
# continue
|
||||
|
||||
# generate a task description and put it into the queue
|
||||
queue.put(Rendertask(
|
||||
infile = 'intro.svg',
|
||||
outfile = str(event['id']) + ".dv",
|
||||
sequence = introFrames,
|
||||
parameters = {
|
||||
'$title': event['title'],
|
||||
'$subtitle': event['subtitle'],
|
||||
'$personnames': event['personnames']
|
||||
}
|
||||
))
|
||||
|
||||
queue.put(Rendertask(
|
||||
infile = 'outro.svg',
|
||||
outfile = 'outro.dv',
|
||||
sequence = outroFrames
|
||||
))
|
||||
|
||||
queue.put(Rendertask(
|
||||
infile = 'pause.svg',
|
||||
outfile = 'pause.dv',
|
||||
sequence = pauseFrames
|
||||
))
|
BIN
ppw15b/artwork/fonts/Roboto-Bold.ttf
Executable file
BIN
ppw15b/artwork/fonts/Roboto-Bold.ttf
Executable file
Binary file not shown.
BIN
ppw15b/artwork/fonts/Roboto-Italic.ttf
Executable file
BIN
ppw15b/artwork/fonts/Roboto-Italic.ttf
Executable file
Binary file not shown.
BIN
ppw15b/artwork/fonts/Roboto-Light.ttf
Executable file
BIN
ppw15b/artwork/fonts/Roboto-Light.ttf
Executable file
Binary file not shown.
232
ppw15b/artwork/intro.svg
Normal file
232
ppw15b/artwork/intro.svg
Normal file
|
@ -0,0 +1,232 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<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"
|
||||
version="1.1"
|
||||
id="Ebene_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="1024px"
|
||||
height="576px"
|
||||
viewBox="0 0 1024 576"
|
||||
enable-background="new 0 0 1024 576"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="intro.svg"><metadata
|
||||
id="metadata113"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs111" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1384"
|
||||
inkscape:window-height="763"
|
||||
id="namedview109"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.1479719"
|
||||
inkscape:cx="408.63289"
|
||||
inkscape:cy="375.89796"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="23"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Ebene_1" /><g
|
||||
id="logo"><g
|
||||
id="g4"><path
|
||||
d="M170.4,77.7c0,0.5-0.1,0.9-0.2,1.3c-0.1,0.4-0.3,0.7-0.5,1c-0.3,0.3-0.6,0.5-1,0.6c-0.4,0.2-0.9,0.2-1.5,0.2h-8.1v1.9v1.9 h-2.3v-12v-1.9h10.4c0.6,0,1.1,0.1,1.5,0.2c0.4,0.2,0.7,0.4,1,0.6c0.3,0.3,0.4,0.6,0.5,1c0.1,0.4,0.2,0.8,0.2,1.3V77.7z M168.1,73.5c0-0.3-0.1-0.5-0.2-0.6c-0.1-0.1-0.3-0.2-0.5-0.2h-7.6c-0.2,0-0.4,0.1-0.5,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v4.6 c0,0.3,0.1,0.5,0.2,0.6c0.1,0.1,0.3,0.2,0.5,0.2h7.6c0.2,0,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6V73.5z"
|
||||
id="path6" /><path
|
||||
d="M185.5,77.8c0,0.5,0,1-0.1,1.4c-0.1,0.4-0.3,0.7-0.5,0.9c-0.2,0.3-0.5,0.4-0.9,0.6s-0.8,0.2-1.4,0.2h-7.9 c-0.6,0-1-0.1-1.4-0.2c-0.4-0.1-0.7-0.3-0.9-0.6c-0.2-0.3-0.4-0.6-0.5-0.9c-0.1-0.4-0.1-0.8-0.1-1.4v-4c0-0.5,0-1,0.1-1.4 c0.1-0.4,0.3-0.7,0.5-0.9c0.2-0.3,0.5-0.4,0.9-0.6c0.4-0.1,0.8-0.2,1.4-0.2h7.9c0.6,0,1,0.1,1.4,0.2s0.7,0.3,0.9,0.6 c0.2,0.3,0.4,0.6,0.5,0.9c0.1,0.4,0.1,0.8,0.1,1.4V77.8z M183.2,73.5c0-0.3-0.1-0.5-0.2-0.6c-0.1-0.1-0.3-0.2-0.6-0.2h-7.7 c-0.3,0-0.5,0.1-0.6,0.2s-0.2,0.3-0.2,0.6V78c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.6,0.2h7.7c0.3,0,0.5-0.1,0.6-0.2 c0.1-0.1,0.2-0.3,0.2-0.6V73.5z"
|
||||
id="path8" /><path
|
||||
d="M190.1,80.8c-0.6,0-1.1-0.1-1.5-0.2c-0.4-0.1-0.7-0.3-1-0.6c-0.2-0.3-0.4-0.6-0.5-1c-0.1-0.4-0.2-0.8-0.2-1.3v-3.8 c0-1,0.2-1.8,0.7-2.3c0.5-0.5,1.3-0.8,2.5-0.8h8.1v-3.6h2.3v11.8v1.9H190.1z M198.2,73.5c0-0.3-0.1-0.5-0.2-0.6 c-0.1-0.1-0.3-0.2-0.5-0.2h-7.6c-0.2,0-0.4,0.1-0.5,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v4.6c0,0.3,0.1,0.5,0.2,0.6 c0.1,0.1,0.3,0.2,0.5,0.2h7.6c0.2,0,0.4-0.1,0.5-0.2c0.1-0.1,0.2-0.3,0.2-0.6V73.5z"
|
||||
id="path10" /><path
|
||||
d="M202.1,80.8V67.1h2.3v13.7H202.1z"
|
||||
id="path12" /><path
|
||||
d="M219.8,77.8c0,0.5,0,1-0.1,1.4c-0.1,0.4-0.3,0.7-0.5,0.9c-0.2,0.3-0.5,0.4-0.9,0.6c-0.4,0.1-0.8,0.2-1.4,0.2H209 c-0.6,0-1-0.1-1.4-0.2c-0.4-0.1-0.7-0.3-0.9-0.6c-0.2-0.3-0.4-0.6-0.5-0.9c-0.1-0.4-0.1-0.8-0.1-1.4v-4c0-0.5,0-1,0.1-1.4 c0.1-0.4,0.2-0.7,0.5-0.9c0.2-0.3,0.5-0.4,0.9-0.6c0.4-0.1,0.8-0.2,1.4-0.2h7.9c0.6,0,1,0.1,1.4,0.2c0.4,0.1,0.7,0.3,0.9,0.6 c0.2,0.3,0.4,0.6,0.5,0.9c0.1,0.4,0.1,0.8,0.1,1.4V77.8z M217.5,73.5c0-0.3-0.1-0.5-0.2-0.6c-0.1-0.1-0.3-0.2-0.6-0.2h-7.7 c-0.3,0-0.5,0.1-0.6,0.2s-0.2,0.3-0.2,0.6V78c0,0.3,0.1,0.5,0.2,0.6s0.3,0.2,0.6,0.2h7.7c0.3,0,0.5-0.1,0.6-0.2 c0.1-0.1,0.2-0.3,0.2-0.6V73.5z"
|
||||
id="path14" /><path
|
||||
d="M229.1,80.8L229.1,80.8h-2.6h-0.1l-6.2-10.1h2.6l4.9,8l4.9-8h2.6L229.1,80.8z"
|
||||
id="path16" /><path
|
||||
d="M238,76.9v0.9c0,0.4,0.1,0.6,0.3,0.8c0.2,0.2,0.5,0.2,0.9,0.2h8.2v2h-8.7c-0.6,0-1-0.1-1.4-0.2c-0.4-0.1-0.7-0.3-0.9-0.5 c-0.2-0.2-0.4-0.6-0.5-0.9c-0.1-0.4-0.1-0.8-0.1-1.4v-4c0-0.5,0-1,0.1-1.4c0.1-0.4,0.2-0.7,0.4-0.9c0.2-0.3,0.5-0.4,0.9-0.6 c0.4-0.1,0.9-0.2,1.5-0.2h7.7c0.6,0,1.1,0.1,1.5,0.2c0.4,0.1,0.7,0.3,0.9,0.5c0.2,0.2,0.4,0.6,0.4,0.9c0.1,0.4,0.1,0.9,0.1,1.4 v3.1H238z M247.2,73.5c0-0.3-0.1-0.5-0.1-0.6c-0.1-0.1-0.3-0.2-0.6-0.2h-7.7c-0.3,0-0.5,0.1-0.6,0.2c-0.1,0.1-0.2,0.3-0.2,0.6v1.4 h9.1V73.5z"
|
||||
id="path18" /></g><g
|
||||
id="sub_signet"><g
|
||||
id="g21"><g
|
||||
id="g23"><path
|
||||
fill-rule="evenodd"
|
||||
clip-rule="evenodd"
|
||||
fill="#7EB51F"
|
||||
d="M123,52.6H95.2c-1.4,0-2.8,0.3-4,0.8h1.2 c5.6,0,10.1,4.5,10.1,10.1v56.7c0,5.6-4.5,10.1-10.1,10.1h-1.2c1.2,0.5,2.6,0.8,4,0.8H123c5.7,0,10.4-4.6,10.4-10.4V63 C133.4,57.3,128.7,52.6,123,52.6z"
|
||||
id="path25" /></g></g><g
|
||||
id="g27"><path
|
||||
fill-rule="evenodd"
|
||||
clip-rule="evenodd"
|
||||
fill="none"
|
||||
stroke="#FFFFFF"
|
||||
stroke-width="2.4433"
|
||||
stroke-miterlimit="10"
|
||||
d=" M116.5,88.6c0.3,0.8,1.2,3.4,1.2,3.4l-6.2,2.3c0,0-1-2.6-1.2-3.4l0,0c-0.6-1.7,0.2-3.6,1.9-4.2l0,0 C113.9,86.1,115.8,86.9,116.5,88.6L116.5,88.6z"
|
||||
id="path29" /><path
|
||||
fill-rule="evenodd"
|
||||
clip-rule="evenodd"
|
||||
fill="none"
|
||||
stroke="#FFFFFF"
|
||||
stroke-width="2.4433"
|
||||
stroke-miterlimit="10"
|
||||
d=" M114,100.9c-0.3-0.8-2.4-6.6-2.4-6.6l6.2-2.3c0,0,2.1,5.8,2.4,6.6l0,0c0.6,1.7-0.2,3.6-1.9,4.2l0,0 C116.5,103.5,114.6,102.6,114,100.9L114,100.9z"
|
||||
id="path31" /><path
|
||||
fill="none"
|
||||
stroke="#FFFFFF"
|
||||
stroke-width="2.4433"
|
||||
stroke-miterlimit="10"
|
||||
d="M121.1,98.8c2.1-0.8,3.2-3.2,2.5-5.3l0,0"
|
||||
id="path33" /><ellipse
|
||||
transform="matrix(0.9391 -0.3436 0.3436 0.9391 -22.7178 47.0119)"
|
||||
fill="none"
|
||||
stroke="#FFFFFF"
|
||||
stroke-width="2.0272"
|
||||
stroke-miterlimit="10"
|
||||
cx="121.3"
|
||||
cy="87.6"
|
||||
rx="1.7"
|
||||
ry="7"
|
||||
id="ellipse35" /></g></g><g
|
||||
id="podlove_signet"><g
|
||||
id="g38"><path
|
||||
fill="#181716"
|
||||
d="M93.2,57c3.3,0,6,2.7,6,6v57.9c0,3.3-2.7,6-6,6H65.3c-3.3,0-6-2.7-6-6V63c0-3.3,2.7-6,6-6H93.2 M93.2,52.6H65.3C59.6,52.6,55,57.3,55,63v57.9c0,5.7,4.6,10.4,10.4,10.4h27.8c5.7,0,10.4-4.6,10.4-10.4V63 C103.5,57.3,98.9,52.6,93.2,52.6L93.2,52.6z"
|
||||
id="path40" /></g><g
|
||||
id="g42"><path
|
||||
fill="#181716"
|
||||
d="M79.2,96.8c6.2,0,11.3,5,11.3,11.3c0,6.2-5,11.3-11.3,11.3c-6.2,0-11.3-5-11.3-11.3 C67.9,101.8,73,96.8,79.2,96.8 M79.2,92.4c-8.6,0-15.7,7-15.7,15.7c0,8.6,7,15.7,15.7,15.7c8.6,0,15.7-7,15.7-15.7 C94.9,99.4,87.9,92.4,79.2,92.4L79.2,92.4z"
|
||||
id="path44" /></g><path
|
||||
fill-rule="evenodd"
|
||||
clip-rule="evenodd"
|
||||
fill="none"
|
||||
stroke="#181716"
|
||||
stroke-width="4.398"
|
||||
stroke-miterlimit="10"
|
||||
d=" M90.6,75.2L79.1,86.7L67.6,75.2c-1.3-1.3-2.1-3.1-2.1-5.1c0-4,3.3-7.3,7.3-7.3c2.7,0,5,1.4,6.3,3.6c1.3-2.1,3.6-3.6,6.3-3.6 c4,0,7.3,3.3,7.3,7.3C92.7,72.1,91.9,73.9,90.6,75.2z"
|
||||
id="path46" /><path
|
||||
fill-rule="evenodd"
|
||||
clip-rule="evenodd"
|
||||
fill="#181716"
|
||||
d="M79.2,104c2.2,0,4,1.8,4,4c0,2.2-1.8,4-4,4c-2.2,0-4-1.8-4-4 C75.2,105.8,77,104,79.2,104z"
|
||||
id="path48" /></g><g
|
||||
id="g50"><path
|
||||
fill="#181716"
|
||||
d="M183.2,108v13.9h-2.7V88.4H192c3.5,0,6.2,0.9,8.2,2.7c1.9,1.8,2.9,4.2,2.9,7.1c0,3-1,5.4-2.9,7.1 c-1.9,1.8-4.7,2.7-8.2,2.7H183.2z M183.2,105.6h8.8c2.8,0,4.8-0.7,6.2-2.1c1.4-1.4,2.1-3.2,2.1-5.3c0-2.2-0.7-3.9-2.1-5.4 c-1.4-1.4-3.5-2.1-6.2-2.1h-8.8V105.6z"
|
||||
id="path52" /><path
|
||||
fill="#181716"
|
||||
d="M202.6,109.1c0-3.7,1-6.7,3-9c2-2.4,4.7-3.5,8-3.5c3.3,0,6,1.2,8,3.5c2,2.4,3,5.4,3,9v0.8c0,3.7-1,6.7-3,9 c-2,2.3-4.7,3.5-8,3.5c-3.3,0-6-1.2-8-3.5c-2-2.3-3-5.4-3-9V109.1z M205.3,109.9c0,2.9,0.7,5.3,2.2,7.3c1.5,2,3.5,2.9,6.1,2.9 c2.6,0,4.6-1,6-2.9c1.5-2,2.2-4.4,2.2-7.3v-0.8c0-2.8-0.7-5.2-2.2-7.2c-1.5-2-3.5-3-6.1-3c-2.6,0-4.6,1-6.1,3s-2.2,4.4-2.2,7.2 V109.9z"
|
||||
id="path54" /><path
|
||||
fill="#181716"
|
||||
d="M226.7,109.7c0-4,0.8-7.2,2.5-9.6c1.7-2.4,4-3.6,7-3.6c1.7,0,3.2,0.4,4.5,1.1c1.3,0.7,2.3,1.8,3.2,3.1V86 h2.7v36h-2.4l-0.2-3.6c-0.8,1.3-1.9,2.3-3.2,3c-1.3,0.7-2.8,1.1-4.6,1.1c-3,0-5.3-1.1-7-3.3s-2.5-5.2-2.5-8.9V109.7z M229.5,110.2 c0,3,0.6,5.4,1.8,7.2c1.2,1.8,3,2.7,5.5,2.7c1.8,0,3.3-0.4,4.5-1.2s2.1-1.9,2.8-3.3v-11.8c-0.6-1.5-1.5-2.6-2.7-3.5 c-1.2-0.9-2.7-1.4-4.5-1.4c-2.4,0-4.3,1-5.5,3c-1.2,2-1.8,4.6-1.8,7.8V110.2z"
|
||||
id="path56" /><path
|
||||
fill="#181716"
|
||||
d="M259.8,120.1c1.8,0,3.4-0.5,4.8-1.6c1.4-1,2.1-2.5,2.1-4.3h2.4l0,0.1c0.1,2.3-0.8,4.2-2.8,5.8 c-1.9,1.6-4.1,2.3-6.7,2.3c-3.4,0-6-1.2-7.9-3.5c-1.9-2.3-2.8-5.3-2.8-9v-1c0-3.6,0.9-6.6,2.8-8.9c1.9-2.3,4.5-3.5,7.8-3.5 c2.7,0,5,0.8,6.8,2.4c1.8,1.6,2.7,3.7,2.6,6.4l0,0.1h-2.5c0-2-0.7-3.6-2-4.8c-1.3-1.2-3-1.8-4.9-1.8c-2.7,0-4.7,1-5.9,2.9 c-1.3,1.9-1.9,4.3-1.9,7.2v1c0,2.9,0.6,5.4,1.9,7.3C255.1,119.1,257,120.1,259.8,120.1z"
|
||||
id="path58" /><path
|
||||
fill="#181716"
|
||||
d="M288.2,121.9c-0.2-0.8-0.3-1.6-0.4-2.2c-0.1-0.6-0.1-1.2-0.1-1.9c-0.9,1.3-2.2,2.4-3.7,3.2 c-1.5,0.9-3.3,1.3-5.2,1.3c-2.4,0-4.3-0.6-5.7-1.9c-1.3-1.3-2-3-2-5.2c0-2.3,1-4.1,3-5.5c2-1.4,4.7-2.1,8.1-2.1h5.5v-3.1 c0-1.8-0.6-3.2-1.7-4.2c-1.1-1-2.7-1.5-4.8-1.5c-1.9,0-3.5,0.5-4.8,1.5c-1.3,1-1.9,2.2-1.9,3.5l-2.5,0l0-0.1 c-0.1-1.9,0.8-3.5,2.5-5c1.8-1.5,4.1-2.2,6.8-2.2c2.7,0,5,0.7,6.6,2.1c1.7,1.4,2.5,3.4,2.5,6v12.3c0,0.9,0,1.7,0.1,2.6 c0.1,0.8,0.3,1.7,0.5,2.5H288.2z M279.1,120c2,0,3.7-0.5,5.3-1.4c1.5-0.9,2.6-2.1,3.3-3.6v-5.2h-5.6c-2.5,0-4.5,0.5-6,1.6 c-1.5,1.1-2.2,2.4-2.2,4c0,1.4,0.5,2.5,1.4,3.3C276.2,119.6,277.5,120,279.1,120z"
|
||||
id="path60" /><path
|
||||
fill="#181716"
|
||||
d="M308.2,115.6c0-1.2-0.5-2.2-1.4-3.1c-1-0.9-2.7-1.6-5.2-2.1c-3-0.6-5.2-1.5-6.6-2.6 c-1.4-1.1-2.1-2.6-2.1-4.5c0-1.9,0.8-3.5,2.4-4.8c1.6-1.3,3.7-2,6.4-2c2.8,0,5,0.7,6.7,2.1c1.6,1.4,2.4,3.1,2.4,5.2l0,0.1H308 c0-1.4-0.6-2.6-1.7-3.6c-1.2-1-2.7-1.5-4.7-1.5c-2,0-3.5,0.4-4.5,1.3c-1,0.9-1.5,1.9-1.5,3c0,1.1,0.4,2.1,1.3,2.8 c0.9,0.7,2.6,1.4,5.2,2c3,0.7,5.2,1.6,6.7,2.7c1.5,1.1,2.2,2.7,2.2,4.7c0,2.1-0.8,3.8-2.5,5.1c-1.7,1.3-3.9,1.9-6.7,1.9 c-3,0-5.4-0.7-7.1-2.2c-1.7-1.4-2.5-3.2-2.5-5.2l0-0.1h2.5c0.1,1.8,0.8,3.1,2.2,3.9c1.4,0.8,3,1.2,4.8,1.2c2,0,3.6-0.4,4.7-1.3 C307.6,117.9,308.2,116.8,308.2,115.6z"
|
||||
id="path62" /><path
|
||||
fill="#181716"
|
||||
d="M319,90.6V97h5.5v2.3H319v16.2c0,1.6,0.3,2.8,0.9,3.5c0.6,0.7,1.4,1,2.4,1c0.4,0,0.9,0,1.3-0.1 c0.4,0,0.9-0.1,1.5-0.2l0.4,2.1c-0.5,0.2-1,0.4-1.7,0.5c-0.7,0.1-1.3,0.2-2,0.2c-1.8,0-3.1-0.6-4.1-1.7c-1-1.1-1.5-2.9-1.5-5.3 V99.3h-4.3V97h4.3v-6.4H319z"
|
||||
id="path64" /><path
|
||||
fill="#181716"
|
||||
d="M336.2,122.4c-3.1,0-5.7-1.2-7.8-3.5c-2.1-2.3-3.1-5.2-3.1-8.8v-1.3c0-3.6,1-6.5,3.1-8.9 c2.1-2.4,4.5-3.5,7.5-3.5c3.1,0,5.5,1,7.2,2.9c1.8,1.9,2.6,4.5,2.6,7.7v2.4h-17.6v0.7c0,2.8,0.7,5.2,2.2,7 c1.5,1.9,3.4,2.8,5.9,2.8c1.7,0,3.2-0.2,4.4-0.7c1.2-0.5,2.3-1.2,3.1-2.1l1.2,1.9c-0.9,1-2.1,1.8-3.6,2.4 C339.9,122.1,338.2,122.4,336.2,122.4z M335.8,98.9c-2,0-3.8,0.8-5.1,2.3c-1.4,1.6-2.2,3.5-2.4,5.8l0,0.1h14.6v-0.7 c0-2.2-0.6-4-1.9-5.4C339.7,99.6,338,98.9,335.8,98.9z"
|
||||
id="path66" /><path
|
||||
fill="#181716"
|
||||
d="M360,99.4l-2.1-0.1c-1.7,0-3.2,0.5-4.3,1.5c-1.1,1-1.9,2.3-2.4,4v17.2h-2.8V97h2.4l0.3,4.1v0.3 c0.7-1.5,1.7-2.7,2.9-3.6c1.2-0.9,2.7-1.3,4.3-1.3c0.4,0,0.7,0,1,0.1c0.3,0.1,0.6,0.1,0.8,0.2L360,99.4z"
|
||||
id="path68" /><path
|
||||
fill="#7EB51F"
|
||||
d="M395.5,110.4h0.1l4.4-22h7.5l-7.7,33.6h-7.3l-5.6-20.7h-0.1l-5.6,20.7h-7.3l-7.7-33.6h7.6l4.4,22h0.1 l5.9-22h5.4L395.5,110.4z"
|
||||
id="path70" /><path
|
||||
fill="#7EB51F"
|
||||
d="M406.9,109.2c0-3.7,1.1-6.8,3.2-9.2c2.1-2.4,5.1-3.5,8.9-3.5c3.8,0,6.8,1.2,8.9,3.5 c2.1,2.4,3.2,5.4,3.2,9.2v0.5c0,3.8-1.1,6.8-3.2,9.2c-2.1,2.4-5.1,3.5-8.9,3.5c-3.8,0-6.8-1.2-8.9-3.5c-2.1-2.4-3.2-5.4-3.2-9.2 V109.2z M414.7,109.7c0,2.1,0.3,3.7,1,4.9c0.7,1.2,1.8,1.8,3.3,1.8c1.5,0,2.6-0.6,3.3-1.8c0.7-1.2,1-2.8,1-4.9v-0.5 c0-2-0.3-3.7-1-4.9c-0.7-1.2-1.8-1.8-3.3-1.8c-1.5,0-2.6,0.6-3.3,1.8c-0.7,1.2-1,2.8-1,4.9V109.7z"
|
||||
id="path72" /><path
|
||||
fill="#7EB51F"
|
||||
d="M447.1,103.9l-2.8,0c-0.9,0-1.6,0.1-2.2,0.4c-0.6,0.3-1,0.7-1.3,1.3v16.4H433V97h7.3l0.3,3.7 c0.5-1.3,1.2-2.3,2.1-3c0.9-0.7,1.9-1.1,3-1.1c0.4,0,0.7,0,1.1,0.1c0.4,0.1,0.7,0.1,1,0.2L447.1,103.9z"
|
||||
id="path74" /><path
|
||||
fill="#7EB51F"
|
||||
d="M458.2,112h-1.3v9.9h-7.8V86h7.8v20.2h1l5.3-9.1h8.9l-7.7,11.3l9,13.7h-8.9L458.2,112z"
|
||||
id="path76" /><path
|
||||
fill="#7EB51F"
|
||||
d="M486.4,114.9c0-0.6-0.3-1.2-1-1.6c-0.7-0.5-2-0.9-3.8-1.3c-2.9-0.6-5.1-1.5-6.6-2.7 c-1.5-1.2-2.2-2.8-2.2-4.9c0-2.2,0.9-4.1,2.8-5.6c1.8-1.5,4.3-2.3,7.5-2.3c3.3,0,6,0.7,7.9,2.2c2,1.5,2.9,3.4,2.8,5.7l0,0.1h-7.6 c0-1-0.2-1.7-0.7-2.2c-0.5-0.5-1.3-0.8-2.4-0.8c-0.8,0-1.5,0.2-2.1,0.7c-0.6,0.4-0.8,1-0.8,1.7c0,0.7,0.3,1.2,1,1.7 c0.6,0.5,1.9,0.9,3.9,1.2c3,0.6,5.3,1.5,6.8,2.7c1.5,1.2,2.2,2.9,2.2,5.1c0,2.2-1,4.1-3,5.5c-2,1.5-4.6,2.2-7.9,2.2 c-3.4,0-6.1-0.9-8.1-2.6c-2-1.7-2.9-3.6-2.8-5.8l0-0.1h7.1c0,1.2,0.4,2,1.1,2.6c0.7,0.5,1.7,0.8,2.9,0.8c1,0,1.8-0.2,2.4-0.6 C486.2,116.3,486.4,115.7,486.4,114.9z"
|
||||
id="path78" /><path
|
||||
fill="#7EB51F"
|
||||
d="M503.7,100.1c0.8-1.1,1.7-2,2.8-2.6c1.1-0.6,2.3-0.9,3.6-0.9c2.6,0,4.6,0.9,6.1,2.7 c1.5,1.8,2.2,4.6,2.2,8.4v14.3h-7.8v-14.4c0-1.9-0.3-3.2-0.9-3.9c-0.6-0.7-1.5-1.1-2.6-1.1c-0.8,0-1.4,0.1-2,0.3 c-0.6,0.2-1,0.5-1.4,0.9v18.1h-7.8V86h7.8V100.1z"
|
||||
id="path80" /><path
|
||||
fill="#7EB51F"
|
||||
d="M520.2,109.2c0-3.7,1.1-6.8,3.2-9.2c2.1-2.4,5.1-3.5,8.9-3.5c3.8,0,6.8,1.2,8.9,3.5 c2.1,2.4,3.2,5.4,3.2,9.2v0.5c0,3.8-1.1,6.8-3.2,9.2c-2.1,2.4-5.1,3.5-8.9,3.5c-3.8,0-6.8-1.2-8.9-3.5c-2.1-2.4-3.2-5.4-3.2-9.2 V109.2z M528,109.7c0,2.1,0.3,3.7,1,4.9c0.7,1.2,1.8,1.8,3.3,1.8c1.5,0,2.6-0.6,3.3-1.8c0.7-1.2,1-2.8,1-4.9v-0.5 c0-2-0.3-3.7-1-4.9c-0.7-1.2-1.8-1.8-3.3-1.8c-1.5,0-2.6,0.6-3.3,1.8c-0.7,1.2-1,2.8-1,4.9V109.7z"
|
||||
id="path82" /><path
|
||||
fill="#7EB51F"
|
||||
d="M569.5,110c0,3.7-0.8,6.8-2.5,9c-1.7,2.3-4.1,3.4-7.1,3.4c-1.2,0-2.3-0.2-3.2-0.7c-0.9-0.5-1.7-1.1-2.4-2 v11.8h-7.8V97h7.3l0.3,2.7c0.7-1,1.5-1.8,2.5-2.4c1-0.6,2.1-0.8,3.3-0.8c3.1,0,5.5,1.2,7.2,3.6c1.7,2.4,2.5,5.5,2.5,9.4V110z M561.7,109.5c0-2.1-0.3-3.8-0.9-5.1c-0.6-1.3-1.6-1.9-3-1.9c-0.9,0-1.6,0.2-2.2,0.5c-0.6,0.3-1.1,0.8-1.4,1.4v10.4 c0.4,0.5,0.9,0.9,1.5,1.2c0.6,0.3,1.4,0.4,2.2,0.4c1.4,0,2.3-0.6,2.9-1.7c0.6-1.1,0.9-2.7,0.9-4.7V109.5z"
|
||||
id="path84" /></g><g
|
||||
id="g86"><circle
|
||||
fill-rule="evenodd"
|
||||
clip-rule="evenodd"
|
||||
cx="568.3"
|
||||
cy="74.1"
|
||||
r="16.4"
|
||||
id="circle88" /><g
|
||||
id="g90"><path
|
||||
fill="#FFFFFF"
|
||||
d="M560.7,80.9h-1.1v-12l-3.3,0.4v-0.8l4.4-0.8V80.9z"
|
||||
id="path92" /><path
|
||||
fill="#FFFFFF"
|
||||
d="M562.6,74.9l0.7-7.1h6.3v1h-5.4l-0.5,4.6c0.3-0.3,0.7-0.5,1.1-0.7c0.4-0.2,0.9-0.3,1.6-0.3 c1.1,0,2,0.4,2.7,1.1c0.7,0.8,1,1.8,1,3.1c0,1.3-0.3,2.4-1,3.2c-0.7,0.8-1.6,1.2-3,1.2c-1.1,0-2-0.3-2.7-0.9 c-0.7-0.6-1.1-1.5-1-2.7l0-0.1h1c0,0.9,0.2,1.5,0.7,2c0.5,0.5,1.2,0.7,2,0.7c1,0,1.7-0.3,2.2-0.9c0.5-0.6,0.7-1.4,0.7-2.5 c0-1-0.2-1.7-0.7-2.3c-0.5-0.6-1.2-0.9-2-0.9c-0.8,0-1.5,0.1-1.9,0.4c-0.4,0.3-0.8,0.7-1,1.2L562.6,74.9z"
|
||||
id="path94" /><path
|
||||
fill="#FFFFFF"
|
||||
d="M579.2,76.2c0,1.4-0.3,2.6-1,3.5c-0.7,0.9-1.6,1.3-2.7,1.3c-0.7,0-1.3-0.1-1.8-0.4 c-0.5-0.3-0.9-0.7-1.2-1.2l-0.1,1.5h-0.9V66.9h1.1v5.8c0.3-0.5,0.7-1,1.2-1.3c0.5-0.3,1.1-0.4,1.8-0.4c1.2,0,2.1,0.5,2.7,1.4 c0.7,0.9,1,2.2,1,3.7V76.2z M578.1,76.1c0-1.2-0.2-2.2-0.7-3c-0.5-0.8-1.2-1.2-2.1-1.2c-0.7,0-1.3,0.2-1.8,0.6 c-0.5,0.4-0.8,0.8-1,1.4v4.4c0.2,0.6,0.6,1,1.1,1.3c0.5,0.3,1.1,0.5,1.8,0.5c0.9,0,1.6-0.3,2.1-1c0.5-0.7,0.7-1.6,0.7-2.8V76.1z"
|
||||
id="path96" /></g></g></g><rect
|
||||
y="176"
|
||||
width="1024"
|
||||
height="400"
|
||||
id="rect98"
|
||||
fill="#7EB51F" /><rect
|
||||
x="51.4"
|
||||
y="215.7"
|
||||
fill="none"
|
||||
width="891.8"
|
||||
height="291.1"
|
||||
id="rect100" /><rect
|
||||
style="fill:#7eb51f;fill-opacity:1"
|
||||
id="rect3395"
|
||||
width="901.76801"
|
||||
height="283.34241"
|
||||
x="57.900421"
|
||||
y="213.81447" /><flowRoot
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Roboto;-inkscape-font-specification:Roboto"
|
||||
id="flowRoot3405"
|
||||
transform="translate(0,6)"><flowRegion
|
||||
id="flowRegion3407"><use
|
||||
x="0"
|
||||
y="0"
|
||||
xlink:href="#rect3395"
|
||||
id="use3409"
|
||||
width="100%"
|
||||
height="100%" /></flowRegion><flowPara
|
||||
id="flowPara3411"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:57.5px;line-height:89.99999762%;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';letter-spacing:-2px;fill:#ffffff">$title</flowPara><flowPara
|
||||
id="flowPara3413"
|
||||
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:18.75px;line-height:89.99999762%;font-family:Roboto;-inkscape-font-specification:'Roboto Italic';letter-spacing:-2px;fill:none">.................</flowPara><flowPara
|
||||
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:45px;line-height:89.99999762%;font-family:Roboto;-inkscape-font-specification:'Roboto Italic';letter-spacing:-2px;fill:#ffffff"
|
||||
id="flowPara3390">$subtitle</flowPara><flowPara
|
||||
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:31.25px;line-height:89.99999762%;font-family:Roboto;-inkscape-font-specification:'Roboto Italic';letter-spacing:-2px;fill:none"
|
||||
id="flowPara3392">...............</flowPara><flowPara
|
||||
id="flowPara3415"
|
||||
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:37.5px;line-height:89.99999762%;font-family:Roboto;-inkscape-font-specification:'Roboto Light';letter-spacing:-2px">$personnames</flowPara></flowRoot></svg>
|
After Width: | Height: | Size: 18 KiB |
1011
ppw15b/artwork/outro.svg
Normal file
1011
ppw15b/artwork/outro.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 90 KiB |
235
ppw15b/artwork/pause.svg
Normal file
235
ppw15b/artwork/pause.svg
Normal file
|
@ -0,0 +1,235 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Ebene_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
width="1024px"
|
||||
height="576px"
|
||||
viewBox="0 0 1024 576"
|
||||
enable-background="new 0 0 1024 576"
|
||||
xml:space="preserve"
|
||||
inkscape:version="0.91 r13725"
|
||||
sodipodi:docname="pause.svg"><metadata
|
||||
id="metadata113"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs111" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1384"
|
||||
inkscape:window-height="763"
|
||||
id="namedview109"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.8117387"
|
||||
inkscape:cx="687.38536"
|
||||
inkscape:cy="236.52173"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="23"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Ebene_1" /><g
|
||||
id="logo"
|
||||
transform="matrix(1.744236,0,0,1.744236,-40.932981,-49.146815)"><g
|
||||
id="g4"><path
|
||||
d="m 170.4,77.7 c 0,0.5 -0.1,0.9 -0.2,1.3 -0.1,0.4 -0.3,0.7 -0.5,1 -0.3,0.3 -0.6,0.5 -1,0.6 -0.4,0.2 -0.9,0.2 -1.5,0.2 l -8.1,0 0,1.9 0,1.9 -2.3,0 0,-12 0,-1.9 10.4,0 c 0.6,0 1.1,0.1 1.5,0.2 0.4,0.2 0.7,0.4 1,0.6 0.3,0.3 0.4,0.6 0.5,1 0.1,0.4 0.2,0.8 0.2,1.3 l 0,3.9 z m -2.3,-4.2 c 0,-0.3 -0.1,-0.5 -0.2,-0.6 -0.1,-0.1 -0.3,-0.2 -0.5,-0.2 l -7.6,0 c -0.2,0 -0.4,0.1 -0.5,0.2 -0.1,0.1 -0.2,0.3 -0.2,0.6 l 0,4.6 c 0,0.3 0.1,0.5 0.2,0.6 0.1,0.1 0.3,0.2 0.5,0.2 l 7.6,0 c 0.2,0 0.4,-0.1 0.5,-0.2 0.1,-0.1 0.2,-0.3 0.2,-0.6 l 0,-4.6 z"
|
||||
id="path6"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 185.5,77.8 c 0,0.5 0,1 -0.1,1.4 -0.1,0.4 -0.3,0.7 -0.5,0.9 -0.2,0.3 -0.5,0.4 -0.9,0.6 -0.4,0.2 -0.8,0.2 -1.4,0.2 l -7.9,0 c -0.6,0 -1,-0.1 -1.4,-0.2 -0.4,-0.1 -0.7,-0.3 -0.9,-0.6 -0.2,-0.3 -0.4,-0.6 -0.5,-0.9 -0.1,-0.4 -0.1,-0.8 -0.1,-1.4 l 0,-4 c 0,-0.5 0,-1 0.1,-1.4 0.1,-0.4 0.3,-0.7 0.5,-0.9 0.2,-0.3 0.5,-0.4 0.9,-0.6 0.4,-0.1 0.8,-0.2 1.4,-0.2 l 7.9,0 c 0.6,0 1,0.1 1.4,0.2 0.4,0.1 0.7,0.3 0.9,0.6 0.2,0.3 0.4,0.6 0.5,0.9 0.1,0.4 0.1,0.8 0.1,1.4 l 0,4 z m -2.3,-4.3 c 0,-0.3 -0.1,-0.5 -0.2,-0.6 -0.1,-0.1 -0.3,-0.2 -0.6,-0.2 l -7.7,0 c -0.3,0 -0.5,0.1 -0.6,0.2 -0.1,0.1 -0.2,0.3 -0.2,0.6 l 0,4.5 c 0,0.3 0.1,0.5 0.2,0.6 0.1,0.1 0.3,0.2 0.6,0.2 l 7.7,0 c 0.3,0 0.5,-0.1 0.6,-0.2 0.1,-0.1 0.2,-0.3 0.2,-0.6 l 0,-4.5 z"
|
||||
id="path8"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 190.1,80.8 c -0.6,0 -1.1,-0.1 -1.5,-0.2 -0.4,-0.1 -0.7,-0.3 -1,-0.6 -0.2,-0.3 -0.4,-0.6 -0.5,-1 -0.1,-0.4 -0.2,-0.8 -0.2,-1.3 l 0,-3.8 c 0,-1 0.2,-1.8 0.7,-2.3 0.5,-0.5 1.3,-0.8 2.5,-0.8 l 8.1,0 0,-3.6 2.3,0 0,11.8 0,1.9 -10.4,0 z m 8.1,-7.3 c 0,-0.3 -0.1,-0.5 -0.2,-0.6 -0.1,-0.1 -0.3,-0.2 -0.5,-0.2 l -7.6,0 c -0.2,0 -0.4,0.1 -0.5,0.2 -0.1,0.1 -0.2,0.3 -0.2,0.6 l 0,4.6 c 0,0.3 0.1,0.5 0.2,0.6 0.1,0.1 0.3,0.2 0.5,0.2 l 7.6,0 c 0.2,0 0.4,-0.1 0.5,-0.2 0.1,-0.1 0.2,-0.3 0.2,-0.6 l 0,-4.6 z"
|
||||
id="path10"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 202.1,80.8 0,-13.7 2.3,0 0,13.7 -2.3,0 z"
|
||||
id="path12"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 219.8,77.8 c 0,0.5 0,1 -0.1,1.4 -0.1,0.4 -0.3,0.7 -0.5,0.9 -0.2,0.3 -0.5,0.4 -0.9,0.6 -0.4,0.1 -0.8,0.2 -1.4,0.2 l -7.9,0 c -0.6,0 -1,-0.1 -1.4,-0.2 -0.4,-0.1 -0.7,-0.3 -0.9,-0.6 -0.2,-0.3 -0.4,-0.6 -0.5,-0.9 -0.1,-0.4 -0.1,-0.8 -0.1,-1.4 l 0,-4 c 0,-0.5 0,-1 0.1,-1.4 0.1,-0.4 0.2,-0.7 0.5,-0.9 0.2,-0.3 0.5,-0.4 0.9,-0.6 0.4,-0.1 0.8,-0.2 1.4,-0.2 l 7.9,0 c 0.6,0 1,0.1 1.4,0.2 0.4,0.1 0.7,0.3 0.9,0.6 0.2,0.3 0.4,0.6 0.5,0.9 0.1,0.4 0.1,0.8 0.1,1.4 l 0,4 z m -2.3,-4.3 c 0,-0.3 -0.1,-0.5 -0.2,-0.6 -0.1,-0.1 -0.3,-0.2 -0.6,-0.2 l -7.7,0 c -0.3,0 -0.5,0.1 -0.6,0.2 -0.1,0.1 -0.2,0.3 -0.2,0.6 l 0,4.5 c 0,0.3 0.1,0.5 0.2,0.6 0.1,0.1 0.3,0.2 0.6,0.2 l 7.7,0 c 0.3,0 0.5,-0.1 0.6,-0.2 0.1,-0.1 0.2,-0.3 0.2,-0.6 l 0,-4.5 z"
|
||||
id="path14"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 229.1,80.8 0,0 -2.6,0 -0.1,0 -6.2,-10.1 2.6,0 4.9,8 4.9,-8 2.6,0 -6.1,10.1 z"
|
||||
id="path16"
|
||||
inkscape:connector-curvature="0" /><path
|
||||
d="m 238,76.9 0,0.9 c 0,0.4 0.1,0.6 0.3,0.8 0.2,0.2 0.5,0.2 0.9,0.2 l 8.2,0 0,2 -8.7,0 c -0.6,0 -1,-0.1 -1.4,-0.2 -0.4,-0.1 -0.7,-0.3 -0.9,-0.5 -0.2,-0.2 -0.4,-0.6 -0.5,-0.9 -0.1,-0.4 -0.1,-0.8 -0.1,-1.4 l 0,-4 c 0,-0.5 0,-1 0.1,-1.4 0.1,-0.4 0.2,-0.7 0.4,-0.9 0.2,-0.3 0.5,-0.4 0.9,-0.6 0.4,-0.1 0.9,-0.2 1.5,-0.2 l 7.7,0 c 0.6,0 1.1,0.1 1.5,0.2 0.4,0.1 0.7,0.3 0.9,0.5 0.2,0.2 0.4,0.6 0.4,0.9 0.1,0.4 0.1,0.9 0.1,1.4 l 0,3.1 -11.3,0 z m 9.2,-3.4 c 0,-0.3 -0.1,-0.5 -0.1,-0.6 -0.1,-0.1 -0.3,-0.2 -0.6,-0.2 l -7.7,0 c -0.3,0 -0.5,0.1 -0.6,0.2 -0.1,0.1 -0.2,0.3 -0.2,0.6 l 0,1.4 9.1,0 0,-1.4 z"
|
||||
id="path18"
|
||||
inkscape:connector-curvature="0" /></g><g
|
||||
id="sub_signet"><g
|
||||
id="g21"><g
|
||||
id="g23"><path
|
||||
d="m 123,52.6 -27.8,0 c -1.4,0 -2.8,0.3 -4,0.8 l 1.2,0 c 5.6,0 10.1,4.5 10.1,10.1 l 0,56.7 c 0,5.6 -4.5,10.1 -10.1,10.1 l -1.2,0 c 1.2,0.5 2.6,0.8 4,0.8 l 27.8,0 c 5.7,0 10.4,-4.6 10.4,-10.4 l 0,-57.7 c 0,-5.7 -4.7,-10.4 -10.4,-10.4 z"
|
||||
id="path25"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:#7eb51f;fill-rule:evenodd" /></g></g><g
|
||||
id="g27"><path
|
||||
stroke-miterlimit="10"
|
||||
d="m 116.5,88.6 c 0.3,0.8 1.2,3.4 1.2,3.4 l -6.2,2.3 c 0,0 -1,-2.6 -1.2,-3.4 l 0,0 c -0.6,-1.7 0.2,-3.6 1.9,-4.2 l 0,0 c 1.7,-0.6 3.6,0.2 4.3,1.9 l 0,0 z"
|
||||
id="path29"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.44330001;stroke-miterlimit:10" /><path
|
||||
stroke-miterlimit="10"
|
||||
d="m 114,100.9 c -0.3,-0.8 -2.4,-6.6 -2.4,-6.6 l 6.2,-2.3 c 0,0 2.1,5.8 2.4,6.6 l 0,0 c 0.6,1.7 -0.2,3.6 -1.9,4.2 l 0,0 c -1.8,0.7 -3.7,-0.2 -4.3,-1.9 l 0,0 z"
|
||||
id="path31"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:2.44330001;stroke-miterlimit:10" /><path
|
||||
stroke-miterlimit="10"
|
||||
d="m 121.1,98.8 c 2.1,-0.8 3.2,-3.2 2.5,-5.3 l 0,0"
|
||||
id="path33"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2.44330001;stroke-miterlimit:10" /><ellipse
|
||||
transform="matrix(0.9391,-0.3436,0.3436,0.9391,-22.7178,47.0119)"
|
||||
stroke-miterlimit="10"
|
||||
cx="121.3"
|
||||
cy="87.599998"
|
||||
rx="1.7"
|
||||
ry="7"
|
||||
id="ellipse35"
|
||||
style="fill:none;stroke:#ffffff;stroke-width:2.02719998;stroke-miterlimit:10" /></g></g><g
|
||||
id="podlove_signet"><g
|
||||
id="g38"><path
|
||||
d="m 93.2,57 c 3.3,0 6,2.7 6,6 l 0,57.9 c 0,3.3 -2.7,6 -6,6 l -27.9,0 c -3.3,0 -6,-2.7 -6,-6 l 0,-57.9 c 0,-3.3 2.7,-6 6,-6 l 27.9,0 m 0,-4.4 -27.9,0 C 59.6,52.6 55,57.3 55,63 l 0,57.9 c 0,5.7 4.6,10.4 10.4,10.4 l 27.8,0 c 5.7,0 10.4,-4.6 10.4,-10.4 l 0,-57.9 C 103.5,57.3 98.9,52.6 93.2,52.6 l 0,0 z"
|
||||
id="path40"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#181716" /></g><g
|
||||
id="g42"><path
|
||||
d="m 79.2,96.8 c 6.2,0 11.3,5 11.3,11.3 0,6.2 -5,11.3 -11.3,11.3 -6.2,0 -11.3,-5 -11.3,-11.3 0,-6.3 5.1,-11.3 11.3,-11.3 m 0,-4.4 c -8.6,0 -15.7,7 -15.7,15.7 0,8.6 7,15.7 15.7,15.7 8.6,0 15.7,-7 15.7,-15.7 0,-8.7 -7,-15.7 -15.7,-15.7 l 0,0 z"
|
||||
id="path44"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#181716" /></g><path
|
||||
stroke-miterlimit="10"
|
||||
d="M 90.6,75.2 79.1,86.7 67.6,75.2 c -1.3,-1.3 -2.1,-3.1 -2.1,-5.1 0,-4 3.3,-7.3 7.3,-7.3 2.7,0 5,1.4 6.3,3.6 1.3,-2.1 3.6,-3.6 6.3,-3.6 4,0 7.3,3.3 7.3,7.3 0,2 -0.8,3.8 -2.1,5.1 z"
|
||||
id="path46"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:none;fill-rule:evenodd;stroke:#181716;stroke-width:4.39799976;stroke-miterlimit:10" /><path
|
||||
d="m 79.2,104 c 2.2,0 4,1.8 4,4 0,2.2 -1.8,4 -4,4 -2.2,0 -4,-1.8 -4,-4 0,-2.2 1.8,-4 4,-4 z"
|
||||
id="path48"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:#181716;fill-rule:evenodd" /></g><g
|
||||
id="g50"><path
|
||||
d="m 183.2,108 0,13.9 -2.7,0 0,-33.5 11.5,0 c 3.5,0 6.2,0.9 8.2,2.7 1.9,1.8 2.9,4.2 2.9,7.1 0,3 -1,5.4 -2.9,7.1 -1.9,1.8 -4.7,2.7 -8.2,2.7 l -8.8,0 z m 0,-2.4 8.8,0 c 2.8,0 4.8,-0.7 6.2,-2.1 1.4,-1.4 2.1,-3.2 2.1,-5.3 0,-2.2 -0.7,-3.9 -2.1,-5.4 -1.4,-1.4 -3.5,-2.1 -6.2,-2.1 l -8.8,0 0,14.9 z"
|
||||
id="path52"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#181716" /><path
|
||||
d="m 202.6,109.1 c 0,-3.7 1,-6.7 3,-9 2,-2.4 4.7,-3.5 8,-3.5 3.3,0 6,1.2 8,3.5 2,2.4 3,5.4 3,9 l 0,0.8 c 0,3.7 -1,6.7 -3,9 -2,2.3 -4.7,3.5 -8,3.5 -3.3,0 -6,-1.2 -8,-3.5 -2,-2.3 -3,-5.4 -3,-9 l 0,-0.8 z m 2.7,0.8 c 0,2.9 0.7,5.3 2.2,7.3 1.5,2 3.5,2.9 6.1,2.9 2.6,0 4.6,-1 6,-2.9 1.5,-2 2.2,-4.4 2.2,-7.3 l 0,-0.8 c 0,-2.8 -0.7,-5.2 -2.2,-7.2 -1.5,-2 -3.5,-3 -6.1,-3 -2.6,0 -4.6,1 -6.1,3 -1.5,2 -2.2,4.4 -2.2,7.2 l 0,0.8 z"
|
||||
id="path54"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#181716" /><path
|
||||
d="m 226.7,109.7 c 0,-4 0.8,-7.2 2.5,-9.6 1.7,-2.4 4,-3.6 7,-3.6 1.7,0 3.2,0.4 4.5,1.1 1.3,0.7 2.3,1.8 3.2,3.1 l 0,-14.7 2.7,0 0,36 -2.4,0 -0.2,-3.6 c -0.8,1.3 -1.9,2.3 -3.2,3 -1.3,0.7 -2.8,1.1 -4.6,1.1 -3,0 -5.3,-1.1 -7,-3.3 -1.7,-2.2 -2.5,-5.2 -2.5,-8.9 l 0,-0.6 z m 2.8,0.5 c 0,3 0.6,5.4 1.8,7.2 1.2,1.8 3,2.7 5.5,2.7 1.8,0 3.3,-0.4 4.5,-1.2 1.2,-0.8 2.1,-1.9 2.8,-3.3 l 0,-11.8 c -0.6,-1.5 -1.5,-2.6 -2.7,-3.5 -1.2,-0.9 -2.7,-1.4 -4.5,-1.4 -2.4,0 -4.3,1 -5.5,3 -1.2,2 -1.8,4.6 -1.8,7.8 l 0,0.5 z"
|
||||
id="path56"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#181716" /><path
|
||||
d="m 259.8,120.1 c 1.8,0 3.4,-0.5 4.8,-1.6 1.4,-1 2.1,-2.5 2.1,-4.3 l 2.4,0 0,0.1 c 0.1,2.3 -0.8,4.2 -2.8,5.8 -1.9,1.6 -4.1,2.3 -6.7,2.3 -3.4,0 -6,-1.2 -7.9,-3.5 -1.9,-2.3 -2.8,-5.3 -2.8,-9 l 0,-1 c 0,-3.6 0.9,-6.6 2.8,-8.9 1.9,-2.3 4.5,-3.5 7.8,-3.5 2.7,0 5,0.8 6.8,2.4 1.8,1.6 2.7,3.7 2.6,6.4 l 0,0.1 -2.5,0 c 0,-2 -0.7,-3.6 -2,-4.8 -1.3,-1.2 -3,-1.8 -4.9,-1.8 -2.7,0 -4.7,1 -5.9,2.9 -1.3,1.9 -1.9,4.3 -1.9,7.2 l 0,1 c 0,2.9 0.6,5.4 1.9,7.3 1.5,1.9 3.4,2.9 6.2,2.9 z"
|
||||
id="path58"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#181716" /><path
|
||||
d="m 288.2,121.9 c -0.2,-0.8 -0.3,-1.6 -0.4,-2.2 -0.1,-0.6 -0.1,-1.2 -0.1,-1.9 -0.9,1.3 -2.2,2.4 -3.7,3.2 -1.5,0.9 -3.3,1.3 -5.2,1.3 -2.4,0 -4.3,-0.6 -5.7,-1.9 -1.3,-1.3 -2,-3 -2,-5.2 0,-2.3 1,-4.1 3,-5.5 2,-1.4 4.7,-2.1 8.1,-2.1 l 5.5,0 0,-3.1 c 0,-1.8 -0.6,-3.2 -1.7,-4.2 -1.1,-1 -2.7,-1.5 -4.8,-1.5 -1.9,0 -3.5,0.5 -4.8,1.5 -1.3,1 -1.9,2.2 -1.9,3.5 l -2.5,0 0,-0.1 c -0.1,-1.9 0.8,-3.5 2.5,-5 1.8,-1.5 4.1,-2.2 6.8,-2.2 2.7,0 5,0.7 6.6,2.1 1.7,1.4 2.5,3.4 2.5,6 l 0,12.3 c 0,0.9 0,1.7 0.1,2.6 0.1,0.8 0.3,1.7 0.5,2.5 l -2.8,0 z m -9.1,-1.9 c 2,0 3.7,-0.5 5.3,-1.4 1.5,-0.9 2.6,-2.1 3.3,-3.6 l 0,-5.2 -5.6,0 c -2.5,0 -4.5,0.5 -6,1.6 -1.5,1.1 -2.2,2.4 -2.2,4 0,1.4 0.5,2.5 1.4,3.3 0.9,0.9 2.2,1.3 3.8,1.3 z"
|
||||
id="path60"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#181716" /><path
|
||||
d="m 308.2,115.6 c 0,-1.2 -0.5,-2.2 -1.4,-3.1 -1,-0.9 -2.7,-1.6 -5.2,-2.1 -3,-0.6 -5.2,-1.5 -6.6,-2.6 -1.4,-1.1 -2.1,-2.6 -2.1,-4.5 0,-1.9 0.8,-3.5 2.4,-4.8 1.6,-1.3 3.7,-2 6.4,-2 2.8,0 5,0.7 6.7,2.1 1.6,1.4 2.4,3.1 2.4,5.2 l 0,0.1 -2.8,0 c 0,-1.4 -0.6,-2.6 -1.7,-3.6 -1.2,-1 -2.7,-1.5 -4.7,-1.5 -2,0 -3.5,0.4 -4.5,1.3 -1,0.9 -1.5,1.9 -1.5,3 0,1.1 0.4,2.1 1.3,2.8 0.9,0.7 2.6,1.4 5.2,2 3,0.7 5.2,1.6 6.7,2.7 1.5,1.1 2.2,2.7 2.2,4.7 0,2.1 -0.8,3.8 -2.5,5.1 -1.7,1.3 -3.9,1.9 -6.7,1.9 -3,0 -5.4,-0.7 -7.1,-2.2 -1.7,-1.4 -2.5,-3.2 -2.5,-5.2 l 0,-0.1 2.5,0 c 0.1,1.8 0.8,3.1 2.2,3.9 1.4,0.8 3,1.2 4.8,1.2 2,0 3.6,-0.4 4.7,-1.3 1.2,-0.7 1.8,-1.8 1.8,-3 z"
|
||||
id="path62"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#181716" /><path
|
||||
d="m 319,90.6 0,6.4 5.5,0 0,2.3 -5.5,0 0,16.2 c 0,1.6 0.3,2.8 0.9,3.5 0.6,0.7 1.4,1 2.4,1 0.4,0 0.9,0 1.3,-0.1 0.4,0 0.9,-0.1 1.5,-0.2 l 0.4,2.1 c -0.5,0.2 -1,0.4 -1.7,0.5 -0.7,0.1 -1.3,0.2 -2,0.2 -1.8,0 -3.1,-0.6 -4.1,-1.7 -1,-1.1 -1.5,-2.9 -1.5,-5.3 l 0,-16.2 -4.3,0 0,-2.3 4.3,0 0,-6.4 2.8,0 z"
|
||||
id="path64"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#181716" /><path
|
||||
d="m 336.2,122.4 c -3.1,0 -5.7,-1.2 -7.8,-3.5 -2.1,-2.3 -3.1,-5.2 -3.1,-8.8 l 0,-1.3 c 0,-3.6 1,-6.5 3.1,-8.9 2.1,-2.4 4.5,-3.5 7.5,-3.5 3.1,0 5.5,1 7.2,2.9 1.8,1.9 2.6,4.5 2.6,7.7 l 0,2.4 -17.6,0 0,0.7 c 0,2.8 0.7,5.2 2.2,7 1.5,1.9 3.4,2.8 5.9,2.8 1.7,0 3.2,-0.2 4.4,-0.7 1.2,-0.5 2.3,-1.2 3.1,-2.1 l 1.2,1.9 c -0.9,1 -2.1,1.8 -3.6,2.4 -1.4,0.7 -3.1,1 -5.1,1 z m -0.4,-23.5 c -2,0 -3.8,0.8 -5.1,2.3 -1.4,1.6 -2.2,3.5 -2.4,5.8 l 0,0.1 14.6,0 0,-0.7 c 0,-2.2 -0.6,-4 -1.9,-5.4 -1.3,-1.4 -3,-2.1 -5.2,-2.1 z"
|
||||
id="path66"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#181716" /><path
|
||||
d="m 360,99.4 -2.1,-0.1 c -1.7,0 -3.2,0.5 -4.3,1.5 -1.1,1 -1.9,2.3 -2.4,4 l 0,17.2 -2.8,0 0,-25 2.4,0 0.3,4.1 0,0.3 c 0.7,-1.5 1.7,-2.7 2.9,-3.6 1.2,-0.9 2.7,-1.3 4.3,-1.3 0.4,0 0.7,0 1,0.1 0.3,0.1 0.6,0.1 0.8,0.2 l -0.1,2.6 z"
|
||||
id="path68"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#181716" /><path
|
||||
d="m 395.5,110.4 0.1,0 4.4,-22 7.5,0 -7.7,33.6 -7.3,0 -5.6,-20.7 -0.1,0 -5.6,20.7 -7.3,0 -7.7,-33.6 7.6,0 4.4,22 0.1,0 5.9,-22 5.4,0 5.9,22 z"
|
||||
id="path70"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#7eb51f" /><path
|
||||
d="m 406.9,109.2 c 0,-3.7 1.1,-6.8 3.2,-9.2 2.1,-2.4 5.1,-3.5 8.9,-3.5 3.8,0 6.8,1.2 8.9,3.5 2.1,2.4 3.2,5.4 3.2,9.2 l 0,0.5 c 0,3.8 -1.1,6.8 -3.2,9.2 -2.1,2.4 -5.1,3.5 -8.9,3.5 -3.8,0 -6.8,-1.2 -8.9,-3.5 -2.1,-2.4 -3.2,-5.4 -3.2,-9.2 l 0,-0.5 z m 7.8,0.5 c 0,2.1 0.3,3.7 1,4.9 0.7,1.2 1.8,1.8 3.3,1.8 1.5,0 2.6,-0.6 3.3,-1.8 0.7,-1.2 1,-2.8 1,-4.9 l 0,-0.5 c 0,-2 -0.3,-3.7 -1,-4.9 -0.7,-1.2 -1.8,-1.8 -3.3,-1.8 -1.5,0 -2.6,0.6 -3.3,1.8 -0.7,1.2 -1,2.8 -1,4.9 l 0,0.5 z"
|
||||
id="path72"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#7eb51f" /><path
|
||||
d="m 447.1,103.9 -2.8,0 c -0.9,0 -1.6,0.1 -2.2,0.4 -0.6,0.3 -1,0.7 -1.3,1.3 l 0,16.4 -7.8,0 0,-25 7.3,0 0.3,3.7 c 0.5,-1.3 1.2,-2.3 2.1,-3 0.9,-0.7 1.9,-1.1 3,-1.1 0.4,0 0.7,0 1.1,0.1 0.4,0.1 0.7,0.1 1,0.2 l -0.7,7 z"
|
||||
id="path74"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#7eb51f" /><path
|
||||
d="m 458.2,112 -1.3,0 0,9.9 -7.8,0 0,-35.9 7.8,0 0,20.2 1,0 5.3,-9.1 8.9,0 -7.7,11.3 9,13.7 -8.9,0 -6.3,-10.1 z"
|
||||
id="path76"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#7eb51f" /><path
|
||||
d="m 486.4,114.9 c 0,-0.6 -0.3,-1.2 -1,-1.6 -0.7,-0.5 -2,-0.9 -3.8,-1.3 -2.9,-0.6 -5.1,-1.5 -6.6,-2.7 -1.5,-1.2 -2.2,-2.8 -2.2,-4.9 0,-2.2 0.9,-4.1 2.8,-5.6 1.8,-1.5 4.3,-2.3 7.5,-2.3 3.3,0 6,0.7 7.9,2.2 2,1.5 2.9,3.4 2.8,5.7 l 0,0.1 -7.6,0 c 0,-1 -0.2,-1.7 -0.7,-2.2 -0.5,-0.5 -1.3,-0.8 -2.4,-0.8 -0.8,0 -1.5,0.2 -2.1,0.7 -0.6,0.4 -0.8,1 -0.8,1.7 0,0.7 0.3,1.2 1,1.7 0.6,0.5 1.9,0.9 3.9,1.2 3,0.6 5.3,1.5 6.8,2.7 1.5,1.2 2.2,2.9 2.2,5.1 0,2.2 -1,4.1 -3,5.5 -2,1.5 -4.6,2.2 -7.9,2.2 -3.4,0 -6.1,-0.9 -8.1,-2.6 -2,-1.7 -2.9,-3.6 -2.8,-5.8 l 0,-0.1 7.1,0 c 0,1.2 0.4,2 1.1,2.6 0.7,0.5 1.7,0.8 2.9,0.8 1,0 1.8,-0.2 2.4,-0.6 0.4,-0.3 0.6,-0.9 0.6,-1.7 z"
|
||||
id="path78"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#7eb51f" /><path
|
||||
d="m 503.7,100.1 c 0.8,-1.1 1.7,-2 2.8,-2.6 1.1,-0.6 2.3,-0.9 3.6,-0.9 2.6,0 4.6,0.9 6.1,2.7 1.5,1.8 2.2,4.6 2.2,8.4 l 0,14.3 -7.8,0 0,-14.4 c 0,-1.9 -0.3,-3.2 -0.9,-3.9 -0.6,-0.7 -1.5,-1.1 -2.6,-1.1 -0.8,0 -1.4,0.1 -2,0.3 -0.6,0.2 -1,0.5 -1.4,0.9 l 0,18.1 -7.8,0 0,-35.9 7.8,0 0,14.1 z"
|
||||
id="path80"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#7eb51f" /><path
|
||||
d="m 520.2,109.2 c 0,-3.7 1.1,-6.8 3.2,-9.2 2.1,-2.4 5.1,-3.5 8.9,-3.5 3.8,0 6.8,1.2 8.9,3.5 2.1,2.4 3.2,5.4 3.2,9.2 l 0,0.5 c 0,3.8 -1.1,6.8 -3.2,9.2 -2.1,2.4 -5.1,3.5 -8.9,3.5 -3.8,0 -6.8,-1.2 -8.9,-3.5 -2.1,-2.4 -3.2,-5.4 -3.2,-9.2 l 0,-0.5 z m 7.8,0.5 c 0,2.1 0.3,3.7 1,4.9 0.7,1.2 1.8,1.8 3.3,1.8 1.5,0 2.6,-0.6 3.3,-1.8 0.7,-1.2 1,-2.8 1,-4.9 l 0,-0.5 c 0,-2 -0.3,-3.7 -1,-4.9 -0.7,-1.2 -1.8,-1.8 -3.3,-1.8 -1.5,0 -2.6,0.6 -3.3,1.8 -0.7,1.2 -1,2.8 -1,4.9 l 0,0.5 z"
|
||||
id="path82"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#7eb51f" /><path
|
||||
d="m 569.5,110 c 0,3.7 -0.8,6.8 -2.5,9 -1.7,2.3 -4.1,3.4 -7.1,3.4 -1.2,0 -2.3,-0.2 -3.2,-0.7 -0.9,-0.5 -1.7,-1.1 -2.4,-2 l 0,11.8 -7.8,0 0,-34.5 7.3,0 0.3,2.7 c 0.7,-1 1.5,-1.8 2.5,-2.4 1,-0.6 2.1,-0.8 3.3,-0.8 3.1,0 5.5,1.2 7.2,3.6 1.7,2.4 2.5,5.5 2.5,9.4 l 0,0.5 z m -7.8,-0.5 c 0,-2.1 -0.3,-3.8 -0.9,-5.1 -0.6,-1.3 -1.6,-1.9 -3,-1.9 -0.9,0 -1.6,0.2 -2.2,0.5 -0.6,0.3 -1.1,0.8 -1.4,1.4 l 0,10.4 c 0.4,0.5 0.9,0.9 1.5,1.2 0.6,0.3 1.4,0.4 2.2,0.4 1.4,0 2.3,-0.6 2.9,-1.7 0.6,-1.1 0.9,-2.7 0.9,-4.7 l 0,-0.5 z"
|
||||
id="path84"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#7eb51f" /></g><g
|
||||
id="g86"><circle
|
||||
cx="568.29999"
|
||||
cy="74.099998"
|
||||
r="16.4"
|
||||
id="circle88"
|
||||
style="clip-rule:evenodd;fill-rule:evenodd" /><g
|
||||
id="g90"><path
|
||||
d="m 560.7,80.9 -1.1,0 0,-12 -3.3,0.4 0,-0.8 4.4,-0.8 0,13.2 z"
|
||||
id="path92"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff" /><path
|
||||
d="m 562.6,74.9 0.7,-7.1 6.3,0 0,1 -5.4,0 -0.5,4.6 c 0.3,-0.3 0.7,-0.5 1.1,-0.7 0.4,-0.2 0.9,-0.3 1.6,-0.3 1.1,0 2,0.4 2.7,1.1 0.7,0.8 1,1.8 1,3.1 0,1.3 -0.3,2.4 -1,3.2 -0.7,0.8 -1.6,1.2 -3,1.2 -1.1,0 -2,-0.3 -2.7,-0.9 -0.7,-0.6 -1.1,-1.5 -1,-2.7 l 0,-0.1 1,0 c 0,0.9 0.2,1.5 0.7,2 0.5,0.5 1.2,0.7 2,0.7 1,0 1.7,-0.3 2.2,-0.9 0.5,-0.6 0.7,-1.4 0.7,-2.5 0,-1 -0.2,-1.7 -0.7,-2.3 -0.5,-0.6 -1.2,-0.9 -2,-0.9 -0.8,0 -1.5,0.1 -1.9,0.4 -0.4,0.3 -0.8,0.7 -1,1.2 l -0.8,-0.1 z"
|
||||
id="path94"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff" /><path
|
||||
d="m 579.2,76.2 c 0,1.4 -0.3,2.6 -1,3.5 -0.7,0.9 -1.6,1.3 -2.7,1.3 -0.7,0 -1.3,-0.1 -1.8,-0.4 -0.5,-0.3 -0.9,-0.7 -1.2,-1.2 l -0.1,1.5 -0.9,0 0,-14 1.1,0 0,5.8 c 0.3,-0.5 0.7,-1 1.2,-1.3 0.5,-0.3 1.1,-0.4 1.8,-0.4 1.2,0 2.1,0.5 2.7,1.4 0.7,0.9 1,2.2 1,3.7 l 0,0.1 z m -1.1,-0.1 c 0,-1.2 -0.2,-2.2 -0.7,-3 -0.5,-0.8 -1.2,-1.2 -2.1,-1.2 -0.7,0 -1.3,0.2 -1.8,0.6 -0.5,0.4 -0.8,0.8 -1,1.4 l 0,4.4 c 0.2,0.6 0.6,1 1.1,1.3 0.5,0.3 1.1,0.5 1.8,0.5 0.9,0 1.6,-0.3 2.1,-1 0.5,-0.7 0.7,-1.6 0.7,-2.8 l 0,-0.2 z"
|
||||
id="path96"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ffffff" /></g></g></g><rect
|
||||
y="241.30257"
|
||||
width="1024"
|
||||
height="334.69739"
|
||||
id="rect98"
|
||||
x="0"
|
||||
style="fill:#7eb51f" /><rect
|
||||
x="51.4"
|
||||
y="215.7"
|
||||
fill="none"
|
||||
width="891.8"
|
||||
height="291.1"
|
||||
id="rect100" /><flowRoot
|
||||
xml:space="preserve"
|
||||
id="flowRoot3392-8-7"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.72106552px;line-height:125%;font-family:Roboto;-inkscape-font-specification:Roboto;letter-spacing:0px;word-spacing:0px;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
transform="translate(53.819203,293.82637)"><flowRegion
|
||||
id="flowRegion3394-4-7"><rect
|
||||
id="rect3396-8-4"
|
||||
width="925.30225"
|
||||
height="246.16641"
|
||||
x="-0.090736479"
|
||||
y="-7.2665358"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:26.72106552px;font-family:Roboto;-inkscape-font-specification:Roboto;fill:#ffffff" /></flowRegion><flowPara
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:Roboto;-inkscape-font-specification:'Roboto Bold';fill:#ffffff;font-size:100px"
|
||||
id="flowPara3572">Pause...</flowPara><flowPara
|
||||
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:Roboto;-inkscape-font-specification:'Roboto Italic';fill:#ffffff;font-size:60px"
|
||||
id="flowPara3429">Geht gleich weiter!</flowPara></flowRoot></svg>
|
After Width: | Height: | Size: 20 KiB |
Loading…
Add table
Reference in a new issue