occon18 initial commit
178
occon18/__init__.py
Normal file
|
@ -0,0 +1,178 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
from renderlib import *
|
||||
from easing import *
|
||||
|
||||
# URL to Schedule-XML
|
||||
scheduleUrl = 'https://cfp.owncloud.com/occon18/schedule/export?exporter=core-frab-xml'
|
||||
|
||||
def introFrames(args):
|
||||
#fade in logo
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('logo', 'style', 'opacity', easeInQuad(i, 0, 1.5, frames)),
|
||||
('confname', 'style', 'opacity', easeInQuad(i, 0, 1.25, frames)),
|
||||
('confdate', 'style', 'opacity', easeInQuad(i, 0, 1, frames)),
|
||||
('title', 'style', 'opacity', 0),
|
||||
('subtitle', 'style', 'opacity', 0),
|
||||
('persons', 'style', 'opacity', 0),
|
||||
('id', 'style', 'opacity', 0),
|
||||
)
|
||||
#fade in title, subtitle, person and id
|
||||
frames = 4*fps
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('logo', 'style', 'opacity', 1),
|
||||
('confname', 'style', 'opacity', 1),
|
||||
('confdate', 'style', 'opacity', 1),
|
||||
('title', 'style', 'opacity', easeInQuad(i, 0, 1, frames)),
|
||||
('subtitle', 'style', 'opacity', easeInQuad(i, 0, 1, frames)),
|
||||
('persons', 'style', 'opacity', easeInQuad(i, 0, 1, frames)),
|
||||
('id', 'style', 'opacity', easeInQuad(i, 0, 1, frames)),
|
||||
)
|
||||
#show whole image
|
||||
frames = 2*fps
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('title', 'style', 'opacity', 1),
|
||||
('subtitle', 'style', 'opacity', 1),
|
||||
('persons', 'style', 'opacity', 1),
|
||||
('id', 'style', 'opacity', 1),
|
||||
)
|
||||
|
||||
def backgroundFrames(parameters):
|
||||
# 80 Sekunden
|
||||
|
||||
frames = 40*fps
|
||||
for i in range(0, frames):
|
||||
xshift = (i+1) * 300/frames
|
||||
yshift = ((i+1) * (150/frames))
|
||||
yield(
|
||||
('movingbg', 'attr', 'transform', 'translate(%.4f, %.4f)' % (xshift, yshift)),
|
||||
)
|
||||
|
||||
frames = 40*fps
|
||||
for i in range(0, frames):
|
||||
xshift = 300 - ((i+1) * (300/frames))
|
||||
yshift = 150 - ((i+1) * (150/frames))
|
||||
yield(
|
||||
('movingbg', 'attr', 'transform', 'translate(%.4f, %.4f)' % (xshift, yshift)),
|
||||
)
|
||||
|
||||
def outroFrames(args):
|
||||
#fadein outro graphics
|
||||
frames = 3*fps
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('pillgroup', 'style', 'opacity', easeInQuad(i, 0.01, 1, frames)),
|
||||
('logotext', 'style', 'opacity', easeInQuad(i, 0.01, 1, frames)),
|
||||
('c3voclogo', 'style', 'opacity', easeInQuad(i, 0.01, 1, frames)),
|
||||
('c3voctext', 'style', 'opacity', easeInQuad(i, 0.01, 1, frames)),
|
||||
('bysalogo', 'style', 'opacity', easeInQuad(i, 0.01, 1, frames)),
|
||||
('bysatext', 'style', 'opacity', easeInQuad(i, 0.01, 1, frames)),
|
||||
)
|
||||
frames = 3*fps
|
||||
for i in range(0, frames):
|
||||
yield(
|
||||
('pillgroup', 'style', 'opacity', 1),
|
||||
('logotext', 'style', 'opacity', 1),
|
||||
('c3voclogo', 'style', 'opacity', 1),
|
||||
('c3voctext', 'style', 'opacity', 1),
|
||||
('bysalogo', 'style', 'opacity', 1),
|
||||
('bysatext', 'style', 'opacity', 1),
|
||||
)
|
||||
|
||||
def pauseFrames(args):
|
||||
#fade logo + pause
|
||||
frames = int(2*fps)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('logo', 'style', 'opacity', easeInQuad(i, 0.1, 1, frames)),
|
||||
('pause', 'style', 'opacity', easeInQuad(i, 1, -0.9, frames)),
|
||||
)
|
||||
for i in range(0, frames):
|
||||
yield (
|
||||
('logo', 'style', 'opacity', easeInQuad(i, 1, -0.9, frames)),
|
||||
('pause', 'style', 'opacity', easeInQuad(i, 0.1, 1, frames)),
|
||||
)
|
||||
|
||||
def debug():
|
||||
render('intro.svg',
|
||||
'../intro.ts',
|
||||
introFrames,
|
||||
{
|
||||
'$id': '23',
|
||||
'$title': 'Performance testing of OwnCloud using VirtualBox and Apache JMeter',
|
||||
'$subtitle': 'Foo Bar Foo Bar Foo Bar Foo Bar Foo Bar Foo Bar Foo Bar Foo Bar',
|
||||
'$persons': 'Jean-Marie de Boer, Jean-Marie de Boer, Jean-Marie de Boer'
|
||||
}
|
||||
)
|
||||
|
||||
# render('outro.svg',
|
||||
# '../outro.ts',
|
||||
# outroFrames
|
||||
# )
|
||||
|
||||
render(
|
||||
'background.svg',
|
||||
'../background.ts',
|
||||
backgroundFrames
|
||||
)
|
||||
|
||||
render('pause.svg',
|
||||
'../pause.ts',
|
||||
pauseFrames
|
||||
)
|
||||
|
||||
|
||||
def tasks(queue, args, idlist, skiplist):
|
||||
# iterate over all events extracted from the schedule xml-export
|
||||
for event in events(scheduleUrl):
|
||||
if event['room'] not in ('Chirurgie (Saal 1.04)', 'Kreißsaal (Saal 1.11)'):
|
||||
print("skipping room %s (%s [%s])" % (event['room'], event['title'], event['id']))
|
||||
continue
|
||||
if not (idlist==[]):
|
||||
if 000000 in idlist:
|
||||
print("skipping id (%s [%s])" % (event['title'], event['id']))
|
||||
continue
|
||||
if int(event['id']) not in idlist:
|
||||
print("skipping id (%s [%s])" % (event['title'], event['id']))
|
||||
continue
|
||||
|
||||
# generate a task description and put them into the queue
|
||||
queue.put(Rendertask(
|
||||
infile = 'intro.svg',
|
||||
outfile = str(event['id'])+".ts",
|
||||
sequence = introFrames,
|
||||
parameters = {
|
||||
'$id': event['id'],
|
||||
'$title': event['title'],
|
||||
'$subtitle': event['subtitle'],
|
||||
'$persons': event['personnames']
|
||||
}
|
||||
))
|
||||
|
||||
# place a task for the outro into the queue
|
||||
if not "out" in skiplist:
|
||||
queue.put(Rendertask(
|
||||
infile = 'outro.svg',
|
||||
outfile = 'outro.ts',
|
||||
sequence = outroFrames
|
||||
))
|
||||
|
||||
# place the pause-sequence into the queue
|
||||
if not "pause" in skiplist:
|
||||
queue.put(Rendertask(
|
||||
infile = 'pause.svg',
|
||||
outfile = 'pause.ts',
|
||||
sequence = pauseFrames
|
||||
))
|
||||
|
||||
# place the background-sequence into the queue
|
||||
if not "bg" in skiplist:
|
||||
queue.put(Rendertask(
|
||||
infile = 'background.svg',
|
||||
outfile = 'background.ts',
|
||||
sequence = backgroundFrames
|
||||
))
|
168
occon18/artwork/background.svg
Normal file
After Width: | Height: | Size: 14 KiB |
365
occon18/artwork/intro.svg
Normal file
|
@ -0,0 +1,365 @@
|
|||
<?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="1920"
|
||||
height="1080"
|
||||
viewBox="0 0 1920 1080"
|
||||
id="svg2"
|
||||
version="1.1"
|
||||
inkscape:version="0.92.2 5c3e80d, 2017-08-06"
|
||||
sodipodi:docname="intro.svg">
|
||||
<defs
|
||||
id="defs4" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.35613138"
|
||||
inkscape:cx="881.60932"
|
||||
inkscape:cy="570.27793"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer2"
|
||||
showgrid="false"
|
||||
units="px"
|
||||
inkscape:window-width="1596"
|
||||
inkscape:window-height="852"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="26"
|
||||
inkscape:window-maximized="0"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true">
|
||||
<sodipodi:guide
|
||||
position="21.429,710"
|
||||
orientation="0,1"
|
||||
id="guide6027"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="-50,340"
|
||||
orientation="0,1"
|
||||
id="guide6053"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)"
|
||||
inkscape:locked="false" />
|
||||
<sodipodi:guide
|
||||
position="1050,1056.6196"
|
||||
orientation="1,0"
|
||||
id="guide6055"
|
||||
inkscape:label=""
|
||||
inkscape:color="rgb(0,0,255)"
|
||||
inkscape:locked="false" />
|
||||
</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:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Background">
|
||||
<rect
|
||||
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#1d2d44;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:23.29999924;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
|
||||
id="background"
|
||||
width="1920"
|
||||
height="1080"
|
||||
x="0"
|
||||
y="0" />
|
||||
<flowRoot
|
||||
xml:space="preserve"
|
||||
id="title"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0.01%;font-family:'Alte Haas Grotesk';-inkscape-font-specification:'Alte Haas Grotesk';letter-spacing:0px;word-spacing:0px;fill:#f6f7f6;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
transform="matrix(0.99999414,0,0,0.99999414,-132.39476,-502.6769)"><flowRegion
|
||||
id="flowRegion6021"
|
||||
style="fill:#f6f7f6;fill-opacity:1"><rect
|
||||
id="rect6023"
|
||||
width="1002.3"
|
||||
height="344.10919"
|
||||
x="180"
|
||||
y="528.57141"
|
||||
style="fill:#f6f7f6;fill-opacity:1" /></flowRegion><flowPara
|
||||
id="flowPara6025"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:53.33333206px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';fill:#f6f7f6;fill-opacity:1">$title</flowPara></flowRoot> <flowRoot
|
||||
xml:space="preserve"
|
||||
id="subtitle"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0.01%;font-family:'Alte Haas Grotesk';-inkscape-font-specification:'Alte Haas Grotesk';letter-spacing:0px;word-spacing:0px;fill:#f6f7f6;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
transform="translate(-132.14844,-146.98193)"><flowRegion
|
||||
id="flowRegion6021-5"
|
||||
style="fill:#f6f7f6;fill-opacity:1"><rect
|
||||
id="rect6023-0"
|
||||
width="1004.86"
|
||||
height="358.41086"
|
||||
x="180"
|
||||
y="528.57141"
|
||||
style="fill:#f6f7f6;fill-opacity:1" /></flowRegion><flowPara
|
||||
id="flowPara6025-8"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;fill:#f6f7f6;fill-opacity:1">$subtitle</flowPara></flowRoot> <flowRoot
|
||||
xml:space="preserve"
|
||||
id="persons"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0.01%;font-family:'Alte Haas Grotesk';-inkscape-font-specification:'Alte Haas Grotesk';letter-spacing:0px;word-spacing:0px;fill:#f6f7f6;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
transform="translate(-132.86458,227.6693)"><flowRegion
|
||||
id="flowRegion6021-5-5"
|
||||
style="fill:#f6f7f6;fill-opacity:1"><rect
|
||||
id="rect6023-0-6"
|
||||
width="1004.9"
|
||||
height="299.82205"
|
||||
x="180"
|
||||
y="528.57141"
|
||||
style="fill:#f6f7f6;fill-opacity:1" /></flowRegion><flowPara
|
||||
id="flowPara6025-8-5"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:53.33333206px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;fill:#f6f7f6;fill-opacity:1">$persons</flowPara></flowRoot> <flowRoot
|
||||
xml:space="preserve"
|
||||
id="id"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:0.01%;font-family:'Alte Haas Grotesk';-inkscape-font-specification:'Alte Haas Grotesk';letter-spacing:0px;word-spacing:0px;fill:#f6f7f6;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
transform="translate(667.85156,433.05211)"><flowRegion
|
||||
id="flowRegion6021-5-5-3"
|
||||
style="fill:#f6f7f6;fill-opacity:1"><rect
|
||||
id="rect6023-0-6-7"
|
||||
width="194.87685"
|
||||
height="106.53619"
|
||||
x="180"
|
||||
y="528.57141"
|
||||
style="fill:#f6f7f6;fill-opacity:1" /></flowRegion><flowPara
|
||||
id="flowPara6025-8-5-6"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:40px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:sans-serif;fill:#f6f7f6;fill-opacity:1">$id</flowPara></flowRoot> <g
|
||||
transform="matrix(0.5705275,0,0,0.57052806,936.32541,-41.982105)"
|
||||
id="logo"
|
||||
style="fill:#f6f7f6;fill-opacity:1">
|
||||
<g
|
||||
id="Typo"
|
||||
style="fill:#f6f7f6;fill-opacity:1">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2726"
|
||||
d="m 1581.3,844.8 h -25.1 c -43.7,0 -79.3,-37.2 -79.3,-83 0,-45.8 35.6,-83 79.3,-83 h 63.1 V 551.5 h 16.9 v 135.7 c 0,3.6 0.7,75.8 0,101.4 -0.4,14.1 -7.1,28.5 -18.3,39.5 -10.6,10.4 -24.3,16.7 -36.6,16.7 z m -25.1,-149.1 c -34.4,0 -62.4,29.6 -62.4,66.1 0,36.5 28,66.1 62.4,66.1 h 25.1 c 16.3,0 37.4,-18.7 38,-39.7 0.6,-20.3 0.2,-72 0.1,-92.4 z"
|
||||
class="st0"
|
||||
style="fill:#f6f7f6;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2728"
|
||||
d="m 1365.1,844.8 c -43.7,0 -79.3,-37.2 -79.3,-83 v -75.3 h 16.9 v 75.3 c 0,36.4 28,66.1 62.4,66.1 34.4,0 62.4,-29.6 62.4,-66.1 v -75.3 h 16.9 v 75.3 c 0,45.7 -35.6,83 -79.3,83 z"
|
||||
class="st0"
|
||||
style="fill:#f6f7f6;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2730"
|
||||
d="M 1039.3,788.3 V 622.1 c -5.8,-3.1 -11.5,-6.5 -16.9,-10.3 v 176.5 c 0,31.1 24.3,56.4 54.2,56.4 v -16.9 c -20.6,0 -37.3,-17.7 -37.3,-39.5 z"
|
||||
class="st0"
|
||||
style="fill:#f6f7f6;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2732"
|
||||
d="m 872.5,716.7 c 0,-32 13.1,-60.9 34,-81.1 -5.2,-2.4 -10.2,-5.5 -14.8,-9.1 -22.3,23.1 -36.1,55 -36.1,90.2 0,70.2 54.8,127.3 122.1,127.3 v -16.9 c -58,0 -105.2,-49.5 -105.2,-110.4 z"
|
||||
class="st0"
|
||||
style="fill:#f6f7f6;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2734"
|
||||
d="m 1176.9,844.8 c -43.7,0 -79.3,-37.2 -79.3,-83 0,-45.8 35.6,-83 79.3,-83 43.7,0 79.3,37.2 79.3,83 0,45.8 -35.5,83 -79.3,83 z m 0,-149.1 c -34.4,0 -62.4,29.6 -62.4,66.1 0,36.5 28,66.1 62.4,66.1 34.4,0 62.4,-29.6 62.4,-66.1 0,-36.5 -28,-66.1 -62.4,-66.1 z"
|
||||
class="st0"
|
||||
style="fill:#f6f7f6;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2736"
|
||||
d="m 822.4,835.5 h -16.9 v -75.3 c 0,-36.4 -28,-66.1 -62.4,-66.1 -34.4,0 -62.4,29.6 -62.4,66.1 v 75.3 h -16.9 v -75.3 c 0,-45.8 35.6,-83 79.3,-83 43.7,0 79.3,37.2 79.3,83 z"
|
||||
class="st0"
|
||||
style="fill:#f6f7f6;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2738"
|
||||
d="m 573.3,844.8 c -19.2,0 -36.1,-10.5 -45.7,-26.2 -9.6,15.7 -26.5,26.2 -45.7,26.2 -29.9,0 -54.2,-25.3 -54.2,-56.4 V 686.5 h 16.9 v 101.8 c 0,21.8 16.7,39.5 37.3,39.5 20.6,0 37.3,-17.7 37.3,-39.5 V 686.5 h 16.9 v 101.8 c 0,21.8 16.7,39.5 37.3,39.5 20.6,0 37.3,-17.7 37.3,-39.5 V 686.5 h 16.9 v 101.8 c 0,31.1 -24.4,56.5 -54.3,56.5 z"
|
||||
class="st0"
|
||||
style="fill:#f6f7f6;fill-opacity:1" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2740"
|
||||
d="m 313.6,844.8 c -43.7,0 -79.3,-37.2 -79.3,-83 0,-45.8 35.6,-83 79.3,-83 43.7,0 79.3,37.2 79.3,83 0,45.8 -35.6,83 -79.3,83 z m 0,-149.1 c -34.4,0 -62.4,29.6 -62.4,66.1 0,36.5 28,66.1 62.4,66.1 34.4,0 62.4,-29.6 62.4,-66.1 0,-36.5 -28,-66.1 -62.4,-66.1 z"
|
||||
class="st0"
|
||||
style="fill:#f6f7f6;fill-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 1078.6,149.8 c -63.9,0 -115.5,53.1 -115.5,118.8 0,27.1 8.8,52 23.6,72 32.1,-38.2 79.4,-62.4 132.3,-62.4 25.9,0 50.4,5.9 72.5,16.3 1.8,-8.3 2.7,-17 2.7,-25.9 -0.1,-65.7 -51.7,-118.8 -115.6,-118.8 z m -150.9,54.9 c -33.3,0 -60,27.7 -60,62 0,11.1 2.8,21.5 7.7,30.5 20.1,-11.6 43.3,-18.4 67.9,-18.4 2.4,0 4.7,0.1 7,0.2 -0.3,-3.5 -0.5,-6.9 -0.5,-10.5 0,-19.1 4,-37.2 11.1,-53.6 -9.4,-6.5 -20.8,-10.2 -33.2,-10.2 z m 285,42.7 c -2.5,0 -4.8,0.3 -7.2,0.5 1,6.8 1.8,13.6 1.8,20.7 0,11 -1.4,21.7 -3.9,31.9 29.2,16.6 53.4,41.4 69.3,71.5 16.5,-8.9 35,-14.5 54.6,-15.8 -5.1,-60.9 -54.1,-108.8 -114.6,-108.8 z m -93.8,44.2 c -89.4,0 -161.7,74.4 -161.7,166.3 0,92 72.3,166.3 161.7,166.3 89.4,0 161.7,-74.4 161.7,-166.3 0,-91.9 -72.3,-166.3 -161.7,-166.3 z m -175.5,0.7 c -69.4,0 -125.5,57.7 -125.5,129.1 0,42 19.5,79.2 49.6,102.7 12.7,-25.2 38.2,-42.4 67.7,-42.4 3.6,0 7,0.4 10.4,0.9 -1.1,-8.1 -1.6,-16.3 -1.6,-24.7 0,-40 12.7,-77 34.2,-106.9 -12.9,-16.6 -22.1,-36.5 -26,-58.2 -2.9,-0.2 -5.9,-0.5 -8.8,-0.5 z m 393.2,76.9 c -21.1,0 -40.8,5.5 -58.2,14.9 9.9,22.5 15.4,47.5 15.4,73.8 0,49.3 -19.3,94 -50.5,126.5 23,26.2 56.3,42.6 93.3,42.6 69.4,0 125.5,-57.7 125.5,-129.1 0,-71.4 -56.2,-128.7 -125.5,-128.7 z m -530.9,17 c -63.9,0 -115.7,52.9 -115.7,118.6 0,65.7 51.8,119 115.7,119 24.3,0 46.8,-7.8 65.5,-21 -7.7,-12.3 -12.2,-27 -12.2,-42.6 0,-8.1 1.2,-15.9 3.4,-23.3 -34.8,-25.9 -57.5,-68 -57.5,-115.5 0,-12.1 1.5,-23.7 4.3,-34.9 -1.3,-0.1 -2.4,-0.3 -3.5,-0.3 z m 679.2,102 c -3.4,0 -6.7,0.4 -10,0.9 0.2,3 0.2,5.8 0.2,8.9 0,37.9 -14.5,72.3 -38.1,97.8 11.6,13.8 28.6,22.6 47.8,22.6 35,0 63.4,-29 63.4,-65 0.1,-36 -28.3,-65.2 -63.3,-65.2 z m -549.7,7 c -35,0 -63.2,29 -63.2,65 0,36 28.2,65.2 63.2,65.2 26.8,0 49.6,-17.2 58.9,-41.5 -22.6,-23.7 -38.8,-53.8 -46,-87.4 -4.2,-0.8 -8.4,-1.3 -12.9,-1.3 z"
|
||||
class="st0"
|
||||
id="Cloud"
|
||||
style="fill:#f6f7f6;fill-opacity:1" />
|
||||
</g>
|
||||
<flowRoot
|
||||
xml:space="preserve"
|
||||
id="confname"
|
||||
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
transform="matrix(0.99313023,0,0,0.99313023,-80.609908,-86.697601)"><flowRegion
|
||||
id="flowRegion4015"><rect
|
||||
id="rect4017"
|
||||
width="823.30499"
|
||||
height="64.661926"
|
||||
x="1155.574"
|
||||
y="575.67737" /></flowRegion><flowPara
|
||||
id="flowPara4019"
|
||||
style="font-size:66.66666412px;fill:#f6f7f6;fill-opacity:1">ownCloud conference 2018</flowPara></flowRoot> <flowRoot
|
||||
xml:space="preserve"
|
||||
id="confdate"
|
||||
style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
transform="matrix(1.8449467,0,0,1.8449467,-1063.9321,-520.28206)"><flowRegion
|
||||
id="flowRegion4015-6"><rect
|
||||
id="rect4017-6"
|
||||
width="444.13516"
|
||||
height="59.809845"
|
||||
x="1155.574"
|
||||
y="575.67737" /></flowRegion><flowPara
|
||||
id="flowPara4019-8"
|
||||
style="font-size:26.85112762px;fill:#f6f7f6;fill-opacity:1">September 18 - 21, 2018, Nuremberg</flowPara></flowRoot> </g>
|
||||
<g
|
||||
inkscape:label="Icons"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer-icons"
|
||||
transform="translate(0,27.637839)"
|
||||
style="display:none"
|
||||
sodipodi:insensitive="true">
|
||||
<g
|
||||
id="eat"
|
||||
inkscape:label="#g5170">
|
||||
<g
|
||||
transform="matrix(1,0,0,-1,960.005,512.34716)"
|
||||
id="eat-inner">
|
||||
<g
|
||||
id="g12"
|
||||
style="fill:#ffffff;fill-opacity:1">
|
||||
<path
|
||||
d="m -257.918,69.037 c 0,19.059 14.072,38.346 40.969,38.346 l 258.72,-0.004 c 5.373,19.998 23.656,34.338 45.991,34.338 l 157.858,-0.002 c 6.787,0 12.288,-5.502 12.288,-12.287 0,-6.785 -5.501,-12.289 -12.288,-12.289 l -157.864,0.004 c -15.114,0 -23.023,-11.09 -23.023,-22.05 l -0.002,-12.29 -281.674,0.005 c -12.099,0 -16.391,-7.419 -16.391,-13.771 -0.001,-6.352 4.292,-13.775 16.391,-13.775 l 281.68,-0.005 0,-12.285 c 0,-11.681 11.353,-21.087 20.754,-21.087 l 160.128,-0.002 c 6.787,0 12.289,-5.502 12.289,-12.289 0,-6.784 -5.502,-12.287 -12.289,-12.287 L 85.49,-2.69 c -17.998,0 -37.725,13.216 -43.592,33.372 l -258.842,0.004 c -26.903,0.007 -40.974,19.294 -40.974,38.351 z"
|
||||
id="path14"
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g16"
|
||||
style="fill:#ffffff;fill-opacity:1">
|
||||
<path
|
||||
d="m -256.946,-103.484 c 0,18.684 14.065,38.551 40.129,38.551 l 153.709,-0.003 0,27.818 264.646,-0.003 c 36.996,-0.002 56.352,-26.321 56.352,-52.316 -0.002,-25.992 -19.358,-52.311 -56.354,-52.31 l -418.354,0.006 c -26.345,0 -40.13,19.243 -40.128,38.257 z m 218.413,41.793 -10e-4,-27.822 -178.28,0.004 c -11.479,0 -15.55,-7.526 -15.55,-13.975 0,-6.621 4.08,-13.682 15.55,-13.682 l 418.35,-0.006 c 21.953,-0.001 31.783,13.932 31.783,27.734 0,13.808 -9.83,27.742 -31.781,27.742 l -240.071,0.005 z"
|
||||
id="path18"
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<path
|
||||
d="m 78.087,90.25 c 0,6.787 5.502,12.285 12.285,12.285 l 155.248,-0.002 c 6.787,0 12.288,-5.499 12.287,-12.285 0,-6.787 -5.5,-12.289 -12.289,-12.289 L 90.371,77.962 c -6.782,0 -12.284,5.501 -12.284,12.288 z"
|
||||
id="path20"
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 78.087,48.113 c 0,6.783 5.502,12.287 12.284,12.287 l 155.247,-0.004 c 6.789,0 12.289,-5.502 12.289,-12.286 0,-6.787 -5.502,-12.288 -12.289,-12.288 L 90.371,35.824 c -6.782,0 -12.286,5.502 -12.284,12.289 z"
|
||||
id="path22-2"
|
||||
style="fill:#ffffff;fill-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="code"
|
||||
inkscape:label="#g5164">
|
||||
<g
|
||||
style="font-size:medium;font-family:ProstoSans-Bold;opacity:1;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||
transform="translate(717.25155,401.37325)"
|
||||
id="code-inner">
|
||||
<path
|
||||
id="path4138"
|
||||
style="font-size:268.90231323px;font-family:ProstoSans-Bold;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||
d="m 316.67032,64.180481 0,-23.896593 168.32655,61.054482 0,21.79579 -168.32655,61.05448 0,-23.89659 135.23896,-47.92448 -135.23896,-48.187089 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4136"
|
||||
style="font-size:268.90231323px;font-family:ProstoSans-Bold;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||
d="m 265.59465,0.50000127 22.32099,0 -68.27598,220.97782873 -22.32099,0 68.27598,-220.97782873 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
id="path4134"
|
||||
style="font-size:268.90231323px;font-family:ProstoSans-Bold;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||
d="m 168.82658,64.180481 -135.501558,48.187089 135.501558,47.92448 0,23.89659 -168.32654699,-61.05448 0,-21.79579 168.32654699,-61.054482 0,23.896593 z"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="sleep"
|
||||
inkscape:label="#g5158">
|
||||
<g
|
||||
transform="translate(392.14286,238.57143)"
|
||||
id="sleep-inner">
|
||||
<path
|
||||
d="m 363.61614,205.17623 c 0,-10.968 8.891,-19.858 19.858,-19.858 10.967,0 19.858,8.891 19.858,19.858 0,10.967 -8.891,19.858 -19.858,19.858 -10.967,0 -19.858,-8.89 -19.858,-19.858 z"
|
||||
id="path12"
|
||||
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:37.36399841;stroke-linecap:round;stroke-opacity:1"
|
||||
inkscape:connector-curvature="0" />
|
||||
<line
|
||||
x1="452.92215"
|
||||
y1="241.75023"
|
||||
x2="770.66412"
|
||||
y2="241.75023"
|
||||
id="line10"
|
||||
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:50;stroke-linecap:round;stroke-opacity:1" />
|
||||
<polyline
|
||||
points=" 264.811,-132.373 264.811,-42.348 -264.759,-42.348 -264.759,-132.373 -264.759,132.41 "
|
||||
id="polyline8"
|
||||
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:37.36399841;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
|
||||
transform="matrix(1,0,0,-1,567.83114,273.80923)" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="repeat"
|
||||
inkscape:label="#g5149">
|
||||
<g
|
||||
id="repeat-inner">
|
||||
<path
|
||||
d="m 1087.366,384.80213 -353.43398,0 c -31.336,0 -56.692,25.357 -56.692,56.693 l 0,141.73303 c 0,31.336 25.357,56.693 56.693,56.693"
|
||||
id="path12-3"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:40;stroke-opacity:1" />
|
||||
<g
|
||||
id="g14"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||
transform="matrix(1,0,0,-1,960.01198,512.19516)">
|
||||
<polygon
|
||||
points="112.765,176.973 199.117,127.119 112.765,77.256 "
|
||||
id="polygon16"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
d="m 832.63502,639.92216 353.43398,0 c 31.336,0 56.691,-25.357 56.691,-56.693 l 0,-141.73203 c 0,-31.336 -25.357,-56.693 -56.693,-56.693"
|
||||
id="path22"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:40;stroke-opacity:1"
|
||||
sodipodi:nodetypes="csccc" />
|
||||
<g
|
||||
id="g24"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1"
|
||||
transform="matrix(1,0,0,-1,960.01198,512.19516)">
|
||||
<polygon
|
||||
points="-112.787,-177.307 -199.14,-127.453 -112.787,-77.59 "
|
||||
id="polygon26"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Text"
|
||||
style="display:inline;" />
|
||||
</svg>
|
After Width: | Height: | Size: 20 KiB |
584
occon18/artwork/pause.svg
Normal file
After Width: | Height: | Size: 49 KiB |
29
occon18/artwork/raw/OpenSUSE_official-logo-color.svg
Normal file
|
@ -0,0 +1,29 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Generator: Adobe Illustrator 15.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<svg version="1.1" id="svg4578" sodipodi:version="0.32" inkscape:version="0.45+devel" sodipodi:docname="official-logo-color" inkscape:output_extension="org.inkscape.output.svg.inkscape" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://web.resource.org/cc/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="248.4px" height="157.156px" viewBox="72.8 75.424 248.4 157.156" enable-background="new 72.8 75.424 248.4 157.156" xml:space="preserve">
|
||||
<sodipodi:namedview inkscape:window-y="276" inkscape:window-x="458" inkscape:window-height="738" inkscape:window-width="774" inkscape:showpageshadow="false" inkscape:current-layer="layer1" inkscape:document-units="px" inkscape:pageshadow="2" inkscape:pageopacity="0.0" width="400px" height="300px" id="base" objecttolerance="10" guidetolerance="10" gridtolerance="10000" borderopacity="1" inkscape:cy="91.428571" bordercolor="#d6d6d6" inkscape:cx="169.28571" pagecolor="#ffffff" inkscape:zoom="1" borderlayer="true">
|
||||
</sodipodi:namedview>
|
||||
<g id="layer1" inkscape:groupmode="layer" inkscape:label="Layer 1">
|
||||
<g id="XMLID_1_">
|
||||
<g>
|
||||
<path fill="#73BA25" d="M318.55,190.72c0,0.19-0.16,0.351-0.359,0.351h-0.16c-0.19,0-0.351-0.16-0.351-0.351v-2.979H316v2.979 c0,0.19-0.17,0.351-0.37,0.351h-0.149c-0.19,0-0.351-0.16-0.351-0.351v-2.979h-1.26c-0.18,0-0.33-0.13-0.33-0.33v-0.17 c0-0.2,0.15-0.32,0.33-0.32h4.41c0.17,0,0.29,0.061,0.35,0.16l0.83,1.25l0.83-1.25c0.07-0.09,0.17-0.16,0.35-0.16h0.561v3.83 c0,0.18-0.17,0.35-0.37,0.35l-0.05-0.029h-0.16c-0.19,0-0.351-0.16-0.351-0.351v-2.5l-0.55,0.84c-0.06,0.08-0.17,0.12-0.27,0.12 h-0.061c-0.1,0-0.22-0.04-0.279-0.12l-0.561-0.84V190.72z"/>
|
||||
<path fill="#73BA25" d="M312.65,218.62v0.81c0,1.78-1.351,3.08-3.221,3.08H285.1c-1.77,0-3.09-1.33-3.09-3.08v-30.52 c0-1.76,1.37-3.08,3.15-3.08l0.01,0.03h23.25c1.87,0,3.23,1.29,3.23,3.069v0.811c0,1.779-1.36,3.069-3.23,3.069 c0,0-18.02,0-18.91,0c0,0.801,0,7.2,0,7.99c0.891,0,14.59,0,14.59,0c1.87,0,3.23,1.311,3.23,3.09v0.801 c0,1.79-1.36,3.079-3.23,3.079c0,0-13.699,0-14.59,0c0,0.801,0,6.99,0,7.78c0.891,0,19.92,0,19.92,0 C311.31,215.55,312.65,216.86,312.65,218.62z"/>
|
||||
<path fill="#FFFFFF" d="M290.56,91.38c7.69,0.27,13.721,6.75,13.46,14.43c-0.14,3.72-1.699,7.16-4.42,9.7 c-2.72,2.55-6.26,3.87-10,3.74c-7.68-0.28-13.699-6.75-13.449-14.43c0.13-3.72,1.689-7.17,4.42-9.71 C283.29,92.57,286.84,91.25,290.56,91.38z M300.37,105.52c0.18-5.47-4.101-10.07-9.57-10.26c-2.649-0.1-5.17,0.84-7.1,2.65 c-1.931,1.8-3.061,4.25-3.141,6.9c-0.18,5.47,4.101,10.07,9.561,10.27c2.66,0.08,5.18-0.86,7.12-2.66 C299.17,110.61,300.29,108.16,300.37,105.52z"/>
|
||||
<path fill="#73BA25" d="M290.8,95.26c5.47,0.19,9.75,4.79,9.57,10.26c-0.08,2.64-1.2,5.09-3.13,6.9 c-1.94,1.8-4.46,2.74-7.12,2.66c-5.46-0.2-9.74-4.8-9.561-10.27c0.08-2.65,1.21-5.1,3.141-6.9 C285.63,96.1,288.15,95.16,290.8,95.26z M296.82,103.17c0-1.63-1.971-2.94-4.4-2.94s-4.39,1.31-4.39,2.94 c0,1.61,1.96,2.93,4.39,2.93S296.82,104.78,296.82,103.17z"/>
|
||||
<path fill="#FFFFFF" d="M292.42,100.23c2.43,0,4.4,1.31,4.4,2.94c0,1.61-1.971,2.93-4.4,2.93s-4.39-1.32-4.39-2.93 C288.03,101.54,289.99,100.23,292.42,100.23z"/>
|
||||
<path fill="#73BA25" d="M275.6,208.41v4.89c0,5.601-3.34,9.21-8.55,9.21h-19.87c-1.87,0-3.22-1.31-3.22-3.08v-0.81 c0-1.771,1.35-3.07,3.22-3.07h18.851c2.05,0,2.109-2.81,2.109-3.12v-2.93c0-0.96-0.38-2.09-2.109-2.09H252.22 c-3.93,0-8.189-3.22-8.189-8.41v-4.53c0-3.54,3.34-8.64,9.359-8.64v0.04h16.221c1.89,0,3.29,1.33,3.29,3.07v0.81 c0,1.76-1.391,3.08-3.221,3.08h-15.06c-1.98,0-3.11,0.97-3.11,2.67v2.69c0,1.1,0.92,2.609,2.971,2.609h13.6 C271.83,200.8,275.6,203.16,275.6,208.41z"/>
|
||||
<path fill="#73BA25" d="M234.31,185.83c1.811,0,3.221,1.42,3.221,3.229v24.03c0,5.59-4.391,9.641-10.45,9.641h-11.23 c-6.06,0-10.449-4.051-10.449-9.641v-24.03c0-1.81,1.43-3.229,3.22-3.229h1.02c1.801,0,3.23,1.45,3.23,3.229V212.2 c0,1.85,1.49,3.34,3.33,3.34h10.51c1.83,0,3.33-1.49,3.33-3.34V189.06c0-1.779,1.45-3.229,3.229-3.229h0.021H234.31z"/>
|
||||
<path fill="#73BA25" d="M198.95,208.41v4.89c0,5.601-3.36,9.21-8.55,9.21h-19.88c-1.88,0-3.23-1.31-3.23-3.08v-0.81 c0-1.771,1.36-3.07,3.23-3.07h18.85c2.04,0,2.09-2.81,2.09-3.12v-2.93c0-0.96-0.36-2.09-2.09-2.09h-13.81 c-3.95,0-8.19-3.22-8.19-8.41v-4.53c0-3.54,3.33-8.64,9.36-8.64l0.02,0.04h16.23c1.88,0,3.29,1.33,3.29,3.07v0.81 c0,1.76-1.39,3.08-3.23,3.08h-15.06c-1.99,0-3.12,0.97-3.12,2.67v2.69c0,1.1,0.92,2.609,2.97,2.609h13.59 C195.17,200.8,198.95,203.16,198.95,208.41z"/>
|
||||
<path fill="#73BA25" d="M312.8,124.64l1.021-0.19c0.279,0.22,0.239,0.67,0.149,1.07c-0.189,0.93-0.64,2.62-0.95,3.42l-0.26,0.66 c-0.359,0.98-0.72,1.91-1.41,2.47c-1.899,1.73-4.939,3.11-9.699,5.19c-7.36,3.22-19.29,5.25-30.37,5.18 c-3.971-0.09-7.811-0.53-11.181-0.91c-10.319-1.18-17.779-2.02-19.33,7.36c-1.96,11.76,9.101,26.04,9.211,26.169l-0.011,0.391 l-0.359,0.09c0,0-17.63-8.12-18.061-8.36l-0.56-0.399l-0.45-0.431c-1.33-1.279-4-4.149-9.42-10.43 c-10.51-12.15-22.81-13.75-32.29-11.44c-2.31,0.55-5.25,2.24-7.16,4.14c-4.95,4.88-4.39,14.71-4.11,18.29 c0.33,4.05,0.54,4.35,0.63,4.68l-0.06,0.41l-0.35,0.04l-0.2-0.14l-14.46-7.07l-0.55-2.36c-0.37-1.56-0.8-3.29-1.62-5.46 c-5.17-13.63-16.79-23.88-29.59-26.09c-8.65-1.49-24.42-1.66-32.77,14.1c-3.49,6.58-3.28,15.15,0.55,22.37 c3.9,7.391,10.87,12.13,19.12,13.04c8.18,0.891,14.33-1,17.78-5.47c3.48-4.51,4.13-10.65,1.66-15.65 c-2.65-5.369-6.65-8.22-12.21-8.689c-4.23-0.38-7.37,1.38-8.5,3.18c-0.33,0.561-0.93,1.601-0.94,3.08v0.05 c0,4.03,3.69,5.13,4.44,5.181c0.23,0,1.34-0.03,2.81-0.4l0.71-0.229l0.49-0.171l0.36-0.069c2.68-0.49,5.26,1.09,6.01,3.7 c0.13,0.479,0.2,0.96,0.2,1.439c0,1.73-0.88,3.34-2.34,4.32l0.06-0.021l-0.16,0.09l-0.24,0.15c-0.77,0.49-1.48,0.76-2.23,0.99 c-2.1,0.689-3.96,1.01-5.83,1.01c-6.38-0.01-15.27-5.5-15.39-15.81c-0.06-5.82,2.86-11.12,8-14.53 c5.92-3.91,16.15-5.24,25.64,0.58c11.68,7.15,14.73,21.149,11.68,30.7c-4.43,13.83-16.89,21.22-33.34,19.75 c-11.65-1.04-22.47-7.19-28.91-16.45c-2.86-4.101-4.98-8.67-6.12-13.23c-2.63-10.43,0.03-21.51,2.01-26.42 c6.3-15.61,18.36-29.04,35.81-39.93l1.1-0.69C157.93,74.08,184.2,75,203.43,75.67c22.681,0.79,46.87,8.61,50.21,9.72 c0.011-0.75,0.141-7.51,0.141-7.51l0.1-0.23l0.26-0.07c1.521,0.21,34.11,5.05,47.841,13.05c1.699,1,2.539,2.04,3.59,3.12 c3.79,3.92,8.81,20.25,9.34,23.62l-0.2,0.34c-0.2,0.07-0.67,0.42-1.3,0.84c-3.2,2.24-10.69,7.48-20.29,6.62 c-8.63-0.76-19.9-5.71-33.49-14.66c0.601,1.41,3.43,8.11,3.91,9.24l0.18,0.22c1.971,1.02,20.851,10.64,30.221,10.45 C301.5,130.27,309.57,126.58,312.8,124.64z M304.02,105.81c0.261-7.68-5.77-14.16-13.46-14.43c-3.72-0.13-7.27,1.19-9.989,3.73 c-2.73,2.54-4.29,5.99-4.42,9.71c-0.25,7.68,5.77,14.15,13.449,14.43c3.74,0.13,7.28-1.19,10-3.74 C302.32,112.97,303.88,109.53,304.02,105.81z"/>
|
||||
<path fill="#73BA25" d="M149.12,201.6c1.3-0.619,2.92-1.38,5.06-1.38h0.66c3.74,0,6.16,2.23,6.16,5.66V220.9 c0,0.909-0.74,1.649-1.63,1.649h-0.64c-0.91,0-1.63-0.74-1.63-1.649v-14.48c0-1.36-1.11-2.47-2.46-2.47h-5.43 c-1.36,0-2.46,1.109-2.46,2.47v14.48c0,0.909-0.74,1.649-1.63,1.649h-0.64c-0.91,0-1.63-0.74-1.63-1.649V201.76 c0-0.819,0.55-1.399,1.31-1.399h0.63c0.6,0,1.04,0.26,1.28,0.77l0.45,0.82c0.19,0.34,0.29,0.359,0.54,0.359 C147.62,202.31,148.31,201.97,149.12,201.6z"/>
|
||||
<path fill="#73BA25" d="M138.35,205.67v4.43c0,1.891-1.1,3.011-2.92,3.011c0,0-10.86,0-11.37,0c0,0.46,0,3.34,0,3.34 c0,1.649,0.93,2.51,2.7,2.51h6.3c0.94,0,1.63,0.65,1.63,1.54v0.5c0,0.9-0.69,1.55-1.63,1.55h-7.68c-2.84,0-5.24-2.52-5.24-5.479 V205.64c0-2.92,2.47-5.279,5.51-5.279l0.01,0.02h7.17C135.87,200.38,138.35,202.76,138.35,205.67z M134.41,209.71 c0-0.46,0-3.55,0-3.55c0-1.24-0.96-2.2-2.19-2.2h-5.98c-1.24,0-2.19,0.98-2.19,2.2c0,0,0,3.09,0,3.55 C124.53,209.71,133.93,209.71,134.41,209.71z"/>
|
||||
<path fill="#73BA25" d="M100.34,216.48c0,0.939,0.52,1.75,1.29,2.17l-0.92,2.029c-0.17,0-0.36,0.301-0.36,0.58v9.69 c0,0.89-0.73,1.63-1.63,1.63h-0.64c-0.92,0-1.63-0.73-1.63-1.63v-29.19c0-0.779,0.58-1.399,1.27-1.399h0.73 c0.62,0,1.12,0.479,1.23,0.729l0.48,0.95c0.12,0.17,0.33,0.27,0.55,0.27l0.91,1.96c-0.77,0.41-1.28,1.221-1.28,2.171V216.48z"/>
|
||||
<path fill="#73BA25" d="M108.46,200.23c3.75,0,6.16,2.229,6.16,5.659v11.141c0,3.489-2.36,5.649-6.16,5.649h-0.67 c-2.15,0-3.77-0.739-5.06-1.33c-0.8-0.369-1.48-0.67-2.02-0.67l0.92-2.029c0.35,0.189,0.75,0.3,1.17,0.3h5.43 c1.37,0,2.46-1.11,2.46-2.47v-10.04c0-1.381-1.08-2.46-2.46-2.46h-5.43c-0.43,0-0.83,0.109-1.18,0.289l-0.91-1.96 c0.54,0,1.22-0.319,2-0.699c1.31-0.62,2.92-1.391,5.07-1.391v0.011H108.46z"/>
|
||||
<path fill="#73BA25" d="M90.9,205.64v11.521c0,2.96-2.4,5.37-5.34,5.37h-7.44c-2.93,0-5.32-2.41-5.32-5.37V205.64 c0-2.92,2.47-5.279,5.51-5.279h7.08C88.43,200.36,90.9,202.73,90.9,205.64z M86.98,216.71v-10.5c0-1.22-1.03-2.25-2.24-2.25h-5.8 c-1.23,0-2.24,1.01-2.24,2.25v10.5c0,1.26,0.96,2.24,2.19,2.24h5.85C85.98,218.95,86.98,217.94,86.98,216.71z"/>
|
||||
</g>
|
||||
<g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 9.2 KiB |
BIN
occon18/artwork/raw/boxcryptor-logo.png
Normal file
After Width: | Height: | Size: 3.8 KiB |
74
occon18/artwork/raw/by-sa.svg
Normal file
|
@ -0,0 +1,74 @@
|
|||
<?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://web.resource.org/cc/" 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="120" height="42" id="svg2759" sodipodi:version="0.32" inkscape:version="0.45+devel" version="1.0" sodipodi:docname="by-sa.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape">
|
||||
<defs id="defs2761"/>
|
||||
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#8b8b8b" borderopacity="1" gridtolerance="10000" guidetolerance="10" objecttolerance="10" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="1" inkscape:cx="179" inkscape:cy="89.569904" inkscape:document-units="px" inkscape:current-layer="layer1" width="120px" height="42px" inkscape:showpageshadow="false" inkscape:window-width="1198" inkscape:window-height="624" inkscape:window-x="488" inkscape:window-y="401"/>
|
||||
<metadata id="metadata2764">
|
||||
<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="Layer 1" inkscape:groupmode="layer" id="layer1">
|
||||
<g transform="matrix(0.9937807,0,0,0.9936694,-177.69409,-74.436409)" id="g287" inkscape:export-filename="/mnt/hgfs/Bov/Documents/Work/2007/cc/identity/srr buttons/big/by-sa.png" inkscape:export-xdpi="300.23013" inkscape:export-ydpi="300.23013">
|
||||
<path id="path3817_2_" nodetypes="ccccccc" d="M 182.23532,75.39014 L 296.29928,75.59326 C 297.89303,75.59326 299.31686,75.35644 299.31686,78.77344 L 299.17721,116.34033 L 179.3569,116.34033 L 179.3569,78.63379 C 179.3569,76.94922 179.51999,75.39014 182.23532,75.39014 z" style="fill:#aab2ab"/>
|
||||
|
||||
<g id="g5908_2_" transform="matrix(0.872921,0,0,0.872921,50.12536,143.2144)">
|
||||
|
||||
<path id="path5906_2_" cx="296.35416" ry="22.939548" cy="264.3577" type="arc" rx="22.939548" d="M 187.20944,-55.6792 C 187.21502,-46.99896 180.18158,-39.95825 171.50134,-39.95212 C 162.82113,-39.94708 155.77929,-46.97998 155.77426,-55.66016 C 155.77426,-55.66687 155.77426,-55.67249 155.77426,-55.6792 C 155.76922,-64.36054 162.80209,-71.40125 171.48233,-71.40631 C 180.16367,-71.41193 187.20441,-64.37842 187.20944,-55.69824 C 187.20944,-55.69263 187.20944,-55.68591 187.20944,-55.6792 z" style="fill:#ffffff"/>
|
||||
|
||||
<g id="g5706_2_" transform="translate(-289.6157,99.0653)">
|
||||
<path id="path5708_2_" d="M 473.88455,-167.54724 C 477.36996,-164.06128 479.11294,-159.79333 479.11294,-154.74451 C 479.11294,-149.69513 477.40014,-145.47303 473.9746,-142.07715 C 470.33929,-138.50055 466.04281,-136.71283 461.08513,-136.71283 C 456.18736,-136.71283 451.96526,-138.48544 448.42003,-142.03238 C 444.87419,-145.57819 443.10158,-149.81537 443.10158,-154.74451 C 443.10158,-159.6731 444.87419,-163.94049 448.42003,-167.54724 C 451.87523,-171.03375 456.09728,-172.77618 461.08513,-172.77618 C 466.13342,-172.77618 470.39914,-171.03375 473.88455,-167.54724 z M 450.76657,-165.20239 C 447.81982,-162.22601 446.34701,-158.7395 446.34701,-154.74005 C 446.34701,-150.7417 447.80529,-147.28485 450.72125,-144.36938 C 453.63778,-141.45288 457.10974,-139.99462 461.1383,-139.99462 C 465.16683,-139.99462 468.66848,-141.46743 471.64486,-144.41363 C 474.47076,-147.14947 475.88427,-150.59069 475.88427,-154.74005 C 475.88427,-158.85809 474.44781,-162.35297 471.57659,-165.22479 C 468.70595,-168.09546 465.22671,-169.53131 461.1383,-169.53131 C 457.04993,-169.53131 453.59192,-168.08813 450.76657,-165.20239 z M 458.52106,-156.49927 C 458.07074,-157.4809 457.39673,-157.9715 456.49781,-157.9715 C 454.90867,-157.9715 454.11439,-156.90198 454.11439,-154.763 C 454.11439,-152.62341 454.90867,-151.55389 456.49781,-151.55389 C 457.54719,-151.55389 458.29676,-152.07519 458.74647,-153.11901 L 460.94923,-151.94598 C 459.8993,-150.0805 458.32417,-149.14697 456.22374,-149.14697 C 454.60384,-149.14697 453.30611,-149.64367 452.33168,-150.63653 C 451.35561,-151.62994 450.86894,-152.99926 450.86894,-154.7445 C 450.86894,-156.46008 451.37123,-157.82159 452.37642,-158.83013 C 453.38161,-159.83806 454.63347,-160.34264 456.13423,-160.34264 C 458.35435,-160.34264 459.94407,-159.46776 460.90504,-157.71978 L 458.52106,-156.49927 z M 468.8844,-156.49927 C 468.43353,-157.4809 467.77292,-157.9715 466.90201,-157.9715 C 465.28095,-157.9715 464.46988,-156.90198 464.46988,-154.763 C 464.46988,-152.62341 465.28095,-151.55389 466.90201,-151.55389 C 467.95304,-151.55389 468.68918,-152.07519 469.10925,-153.11901 L 471.36126,-151.94598 C 470.31301,-150.0805 468.74007,-149.14697 466.64358,-149.14697 C 465.02587,-149.14697 463.73095,-149.64367 462.75711,-150.63653 C 461.78494,-151.62994 461.29773,-152.99926 461.29773,-154.7445 C 461.29773,-156.46008 461.79221,-157.82159 462.78061,-158.83013 C 463.76843,-159.83806 465.02588,-160.34264 466.55408,-160.34264 C 468.77027,-160.34264 470.35776,-159.46776 471.3154,-157.71978 L 468.8844,-156.49927 z"/>
|
||||
|
||||
</g>
|
||||
|
||||
</g>
|
||||
|
||||
<path d="M 297.29639,74.91064 L 181.06688,74.91064 C 179.8203,74.91064 178.80614,75.92529 178.80614,77.17187 L 178.80614,116.66748 C 178.80614,116.94922 179.03466,117.17822 179.31639,117.17822 L 299.04639,117.17822 C 299.32813,117.17822 299.55713,116.94922 299.55713,116.66748 L 299.55713,77.17188 C 299.55713,75.92529 298.54297,74.91064 297.29639,74.91064 z M 181.06688,75.93213 L 297.29639,75.93213 C 297.97998,75.93213 298.53565,76.48828 298.53565,77.17188 C 298.53565,77.17188 298.53565,93.09131 298.53565,104.59034 L 215.4619,104.59034 C 212.41698,110.09571 206.55077,113.83399 199.81835,113.83399 C 193.083,113.83399 187.21825,110.09913 184.1748,104.59034 L 179.82666,104.59034 C 179.82666,93.09132 179.82666,77.17188 179.82666,77.17188 C 179.82664,76.48828 180.38329,75.93213 181.06688,75.93213 z" id="path294"/>
|
||||
|
||||
<g enable-background="new " id="g296">
|
||||
<path d="M 265.60986,112.8833 C 265.68994,113.03906 265.79736,113.16504 265.93115,113.26172 C 266.06494,113.35791 266.22119,113.42969 266.40088,113.47608 C 266.58154,113.52296 266.76807,113.54639 266.96045,113.54639 C 267.09033,113.54639 267.22998,113.53565 267.3794,113.51368 C 267.52784,113.4922 267.66749,113.44972 267.79835,113.3877 C 267.92823,113.32569 268.03761,113.23975 268.12355,113.13086 C 268.21144,113.02197 268.25441,112.88379 268.25441,112.71533 C 268.25441,112.53515 268.19679,112.38916 268.08156,112.27685 C 267.9673,112.16455 267.81594,112.07177 267.62941,111.99658 C 267.44386,111.92236 267.23195,111.85693 266.9966,111.80078 C 266.76027,111.74463 266.52101,111.68262 266.27883,111.61377 C 266.02981,111.55176 265.78762,111.47559 265.55129,111.38525 C 265.31594,111.29541 265.10402,111.17822 264.9175,111.03515 C 264.73098,110.89208 264.58059,110.71337 264.46535,110.49853 C 264.35109,110.28369 264.29347,110.02392 264.29347,109.71923 C 264.29347,109.37646 264.36671,109.07958 264.51222,108.82763 C 264.6587,108.57568 264.85011,108.36572 265.08644,108.19726 C 265.32179,108.02929 265.58937,107.90478 265.8882,107.82372 C 266.18605,107.74315 266.48488,107.70263 266.78273,107.70263 C 267.13136,107.70263 267.46535,107.74169 267.78566,107.81982 C 268.105,107.89746 268.39015,108.02392 268.6382,108.19824 C 268.88722,108.37256 269.08449,108.59521 269.23097,108.86621 C 269.37648,109.13721 269.44972,109.46582 269.44972,109.85156 L 268.02784,109.85156 C 268.01514,109.65234 267.97315,109.4873 267.90284,109.35693 C 267.83155,109.22607 267.73682,109.12353 267.61964,109.04834 C 267.50148,108.97412 267.36671,108.9209 267.21534,108.89014 C 267.063,108.85889 266.89796,108.84326 266.71827,108.84326 C 266.60108,108.84326 266.48292,108.85596 266.36573,108.88037 C 266.24757,108.90576 266.14112,108.94922 266.04542,109.01123 C 265.94874,109.07373 265.86964,109.15137 265.80812,109.24463 C 265.7466,109.33838 265.71535,109.45654 265.71535,109.59961 C 265.71535,109.73047 265.73976,109.83643 265.78957,109.91699 C 265.83937,109.99804 265.93801,110.07275 266.08352,110.14111 C 266.22903,110.20947 266.43118,110.27832 266.68899,110.34668 C 266.9468,110.41504 267.28372,110.50244 267.70071,110.60791 C 267.82473,110.63281 267.99661,110.67822 268.21731,110.74365 C 268.43801,110.80908 268.65676,110.91308 268.87454,111.05615 C 269.09231,111.1997 269.27981,111.39111 269.43899,111.63037 C 269.59719,111.87012 269.67629,112.17676 269.67629,112.55029 C 269.67629,112.85547 269.61672,113.13867 269.49856,113.3999 C 269.3804,113.66162 269.20461,113.8872 268.97122,114.07666 C 268.73782,114.26709 268.44876,114.41455 268.10403,114.52051 C 267.75833,114.62647 267.35794,114.6792 266.90481,114.6792 C 266.53762,114.6792 266.18118,114.63379 265.83547,114.54346 C 265.49074,114.45313 265.18508,114.31104 264.92043,114.11768 C 264.65676,113.92432 264.4468,113.67774 264.29055,113.37891 C 264.13528,113.07959 264.06106,112.7251 264.06692,112.31397 L 265.4888,112.31397 C 265.48877,112.53809 265.52881,112.72803 265.60986,112.8833 z" id="path298" style="fill:#ffffff"/>
|
||||
|
||||
<path d="M 273.8667,107.8667 L 276.35986,114.53076 L 274.8374,114.53076 L 274.33349,113.04638 L 271.84033,113.04638 L 271.31787,114.53076 L 269.84326,114.53076 L 272.36377,107.8667 L 273.8667,107.8667 z M 273.95068,111.95264 L 273.11084,109.50928 L 273.09229,109.50928 L 272.22315,111.95264 L 273.95068,111.95264 z" id="path300" style="fill:#ffffff"/>
|
||||
|
||||
</g>
|
||||
|
||||
<g enable-background="new " id="g302">
|
||||
<path d="M 239.17821,107.8667 C 239.49559,107.8667 239.78563,107.89502 240.04735,107.95068 C 240.30907,108.00683 240.53368,108.09863 240.72118,108.22607 C 240.9077,108.35351 241.05321,108.52295 241.15575,108.73437 C 241.25829,108.94579 241.31005,109.20703 241.31005,109.51806 C 241.31005,109.854 241.23388,110.13329 241.08056,110.35742 C 240.92822,110.58154 240.70165,110.76465 240.40283,110.90771 C 240.81494,111.02587 241.12256,111.23291 241.32568,111.5288 C 241.5288,111.82469 241.63037,112.18114 241.63037,112.59814 C 241.63037,112.93408 241.56494,113.22509 241.43408,113.47119 C 241.30322,113.7168 241.12646,113.91748 240.90576,114.07324 C 240.68408,114.229 240.43115,114.34424 240.14795,114.41845 C 239.86377,114.49365 239.57275,114.53075 239.27295,114.53075 L 236.03662,114.53075 L 236.03662,107.86669 L 239.17821,107.86669 L 239.17821,107.8667 z M 238.99071,110.56201 C 239.25243,110.56201 239.46727,110.5 239.63622,110.37597 C 239.80419,110.25146 239.88817,110.05029 239.88817,109.77099 C 239.88817,109.61572 239.85985,109.48828 239.80419,109.38915 C 239.74755,109.28954 239.67333,109.21239 239.57958,109.15624 C 239.48583,109.10058 239.37841,109.06151 239.25731,109.04003 C 239.13524,109.01806 239.00926,109.00732 238.8784,109.00732 L 237.50535,109.00732 L 237.50535,110.56201 L 238.99071,110.56201 z M 239.07664,113.39014 C 239.22019,113.39014 239.35691,113.37647 239.48777,113.34815 C 239.61863,113.32032 239.73484,113.27344 239.83445,113.2085 C 239.93406,113.14307 240.01316,113.0542 240.07273,112.94239 C 240.1323,112.83058 240.1616,112.68751 240.1616,112.51319 C 240.1616,112.17139 240.06492,111.92725 239.87156,111.78126 C 239.6782,111.63527 239.42234,111.56202 239.10496,111.56202 L 237.50535,111.56202 L 237.50535,113.39014 L 239.07664,113.39014 z" id="path304" style="fill:#ffffff"/>
|
||||
|
||||
<path d="M 241.88914,107.8667 L 243.53269,107.8667 L 245.09324,110.49854 L 246.64402,107.8667 L 248.27781,107.8667 L 245.80418,111.97315 L 245.80418,114.53077 L 244.33543,114.53077 L 244.33543,111.93604 L 241.88914,107.8667 z" id="path306" style="fill:#ffffff"/>
|
||||
|
||||
</g>
|
||||
|
||||
<g id="g6316_1_" transform="matrix(0.624995,0,0,0.624995,391.2294,176.9332)">
|
||||
|
||||
<path id="path6318_1_" cx="475.97119" ry="29.209877" cy="252.08646" type="arc" rx="29.209877" d="M -175.0083,-139.1153 C -175.00204,-129.7035 -182.62555,-122.06751 -192.03812,-122.06049 C -201.44913,-122.05341 -209.08512,-129.67774 -209.09293,-139.09028 C -209.09293,-139.09809 -209.09293,-139.10749 -209.09293,-139.1153 C -209.09919,-148.52784 -201.47413,-156.1623 -192.06311,-156.17011 C -182.65054,-156.17713 -175.01456,-148.55207 -175.0083,-139.14026 C -175.0083,-139.13092 -175.0083,-139.1239 -175.0083,-139.1153 z" style="fill:#ffffff"/>
|
||||
|
||||
<g id="g6320_1_" transform="translate(-23.9521,-89.72962)">
|
||||
<path id="path6322_1_" d="M -168.2204,-68.05536 C -173.39234,-68.05536 -177.76892,-66.25067 -181.35175,-62.64203 C -185.02836,-58.90759 -186.86588,-54.48883 -186.86588,-49.38568 C -186.86588,-44.28253 -185.02836,-39.89416 -181.35175,-36.22308 C -177.67673,-32.55114 -173.29859,-30.71521 -168.2204,-30.71521 C -163.07974,-30.71521 -158.62503,-32.56677 -154.85312,-36.26996 C -151.30307,-39.78558 -149.52652,-44.15827 -149.52652,-49.38568 C -149.52652,-54.6123 -151.33432,-59.03265 -154.94843,-62.64203 C -158.5625,-66.25067 -162.98599,-68.05536 -168.2204,-68.05536 z M -168.17352,-64.69519 C -163.936,-64.69519 -160.33752,-63.20221 -157.37655,-60.21466 C -154.38748,-57.25836 -152.89214,-53.64899 -152.89214,-49.38568 C -152.89214,-45.09186 -154.35466,-41.52856 -157.28438,-38.69653 C -160.36876,-35.64727 -163.99849,-34.12304 -168.17351,-34.12304 C -172.34856,-34.12304 -175.94701,-35.63244 -178.96892,-38.64965 C -181.9908,-41.66918 -183.50176,-45.24657 -183.50176,-49.38567 C -183.50176,-53.52398 -181.97518,-57.13414 -178.92205,-60.21465 C -175.9939,-63.20221 -172.41107,-64.69519 -168.17352,-64.69519 z"/>
|
||||
|
||||
<path id="path6324_1_" d="M -176.49548,-52.02087 C -175.75171,-56.71856 -172.44387,-59.22949 -168.30008,-59.22949 C -162.33911,-59.22949 -158.70783,-54.90448 -158.70783,-49.1372 C -158.70783,-43.50982 -162.57194,-39.13793 -168.39383,-39.13793 C -172.39856,-39.13793 -175.98297,-41.60277 -176.63611,-46.43877 L -171.93292,-46.43877 C -171.7923,-43.92778 -170.1626,-43.04418 -167.83447,-43.04418 C -165.1813,-43.04418 -163.4563,-45.50908 -163.4563,-49.27709 C -163.4563,-53.22942 -164.94693,-55.32244 -167.74228,-55.32244 C -169.79074,-55.32244 -171.55948,-54.57787 -171.93292,-52.02087 L -170.56418,-52.02789 L -174.26734,-48.32629 L -177.96894,-52.02789 L -176.49548,-52.02087 z"/>
|
||||
|
||||
</g>
|
||||
|
||||
</g>
|
||||
|
||||
<g id="g313">
|
||||
<circle cx="242.56226" cy="90.224609" r="10.8064" id="circle315" sodipodi:cx="242.56226" sodipodi:cy="90.224609" sodipodi:rx="10.8064" sodipodi:ry="10.8064" style="fill:#ffffff"/>
|
||||
|
||||
<g id="g317">
|
||||
<path d="M 245.68994,87.09766 C 245.68994,86.68116 245.35205,86.34424 244.93603,86.34424 L 240.16357,86.34424 C 239.74755,86.34424 239.40966,86.68115 239.40966,87.09766 L 239.40966,91.87061 L 240.74071,91.87061 L 240.74071,97.52295 L 244.3579,97.52295 L 244.3579,91.87061 L 245.68993,91.87061 L 245.68993,87.09766 L 245.68994,87.09766 z" id="path319"/>
|
||||
|
||||
<circle cx="242.5498" cy="84.083008" r="1.63232" id="circle321" sodipodi:cx="242.5498" sodipodi:cy="84.083008" sodipodi:rx="1.63232" sodipodi:ry="1.63232"/>
|
||||
|
||||
</g>
|
||||
|
||||
<path clip-rule="evenodd" d="M 242.53467,78.31836 C 239.30322,78.31836 236.56641,79.4458 234.32715,81.70215 C 232.0293,84.03516 230.88086,86.79736 230.88086,89.98633 C 230.88086,93.1753 232.0293,95.91846 234.32715,98.21338 C 236.625,100.50781 239.36133,101.65527 242.53467,101.65527 C 245.74756,101.65527 248.53272,100.49853 250.88819,98.18359 C 253.10889,95.98681 254.21827,93.2539 254.21827,89.98632 C 254.21827,86.71874 253.08936,83.95751 250.83057,81.70214 C 248.57178,79.4458 245.80615,78.31836 242.53467,78.31836 z M 242.56396,80.41797 C 245.2124,80.41797 247.46142,81.35156 249.31103,83.21875 C 251.18115,85.06592 252.11572,87.32227 252.11572,89.98633 C 252.11572,92.66992 251.20068,94.89746 249.36963,96.66699 C 247.4419,98.57275 245.17334,99.52539 242.56397,99.52539 C 239.9546,99.52539 237.70557,98.58252 235.81739,96.6958 C 233.92774,94.80957 232.98389,92.57324 232.98389,89.98633 C 232.98389,87.3999 233.93799,85.14404 235.84619,83.21875 C 237.67676,81.35156 239.9165,80.41797 242.56396,80.41797 z" id="path323" style="fill-rule:evenodd"/>
|
||||
|
||||
</g>
|
||||
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 16 KiB |
40
occon18/artwork/raw/kopano-logo-regular.svg
Normal file
|
@ -0,0 +1,40 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1437.9 334.7" style="enable-background:new 0 0 1437.9 334.7;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#414042;}
|
||||
.st1{fill:#00B3F0;}
|
||||
</style>
|
||||
<g id="Layer_1">
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M512.2,333.7h-37V145.5c0-14.7,2.8-28.9,8.3-42.3c5.5-13.4,13.5-25.5,24-35.9c10.2-10.2,22.1-18.2,35.5-23.8 c13.4-5.6,27.6-8.5,42.4-8.5c14.7,0,29,2.9,42.4,8.5c13.4,5.6,25.3,13.6,35.5,23.8c10.4,10.4,18.5,22.5,24,35.9 c5.5,13.4,8.3,27.6,8.3,42.3c0,14.4-2.8,28.6-8.3,41.9c-5.5,13.4-13.6,25.5-24,35.9c-10.2,10.2-22.1,18.2-35.5,23.8 c-13.4,5.6-27.6,8.5-42.4,8.5c-14.7,0-29-2.9-42.4-8.5c-11.4-4.8-21.7-11.3-30.7-19.3V333.7z M585.3,72c-10,0-19.6,1.9-28.4,5.7 c-8.9,3.8-16.7,9.1-23.3,15.7c-6.6,6.6-11.9,14.5-15.7,23.4c-3.8,9-5.8,18.6-5.8,28.6c0,10,1.9,19.6,5.7,28.4 c3.8,8.9,9.1,16.7,15.7,23.3c6.6,6.6,14.4,11.9,23.3,15.7c8.8,3.8,18.4,5.7,28.4,5.7c10,0,19.6-1.9,28.4-5.7 c8.9-3.8,16.7-9.1,23.3-15.7c6.6-6.6,11.8-14.4,15.7-23.3c3.8-8.8,5.7-18.4,5.7-28.4c0-10-1.9-19.7-5.8-28.6 c-3.8-9-9.1-16.9-15.7-23.4c-6.6-6.6-14.4-11.8-23.3-15.7C604.9,74,595.3,72,585.3,72z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M832.7,255.6c-14.7,0-29-2.9-42.4-8.5c-13.4-5.6-25.3-13.6-35.5-23.8c-10.4-10.4-18.5-22.5-24-35.9 c-5.5-13.4-8.3-27.5-8.3-41.9c0-14.7,2.8-28.9,8.3-42.3c5.5-13.4,13.6-25.5,24-35.9c10.2-10.2,22.1-18.2,35.5-23.8 c13.4-5.6,27.6-8.5,42.4-8.5c14.7,0,29,2.9,42.4,8.5c13.4,5.6,25.3,13.6,35.5,23.8c10.4,10.4,18.5,22.5,24,35.9 c5.5,13.4,8.3,27.6,8.3,42.3v101.2h-37v-20c-2.8,2.9-5.8,5.6-8.8,7.9c-6.5,5-13.4,9.1-20.5,12.2c-7.1,3.1-14.5,5.3-22.1,6.7 C846.9,254.9,839.7,255.6,832.7,255.6z M832.7,72c-10,0-19.6,1.9-28.4,5.7c-8.9,3.8-16.7,9.1-23.3,15.7 c-6.6,6.6-11.8,14.4-15.7,23.4c-3.8,9-5.8,18.6-5.8,28.6s1.9,19.6,5.7,28.4c3.8,8.9,9.1,16.7,15.7,23.3 c6.6,6.6,14.4,11.9,23.3,15.7c8.8,3.8,18.4,5.7,28.4,5.7c10,0,19.6-1.9,28.4-5.7c8.9-3.8,16.7-9.1,23.3-15.7 c6.6-6.6,11.9-14.4,15.7-23.3c3.8-8.8,5.7-18.4,5.7-28.4c0-10-1.9-19.7-5.8-28.6c-3.8-9-9.1-16.9-15.7-23.4 c-6.6-6.6-14.4-11.8-23.3-15.7C852.3,74,842.8,72,832.7,72z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M1321.4,255.7c-14.7,0-28.9-2.9-42.2-8.5c-13.2-5.6-25.2-13.6-35.6-23.7c-10.2-10.5-18.2-22.6-23.8-35.9 c-5.6-13.4-8.5-27.5-8.5-42c0-14.7,2.8-29,8.5-42.4c5.6-13.4,13.6-25.4,23.7-35.8c10.5-10.2,22.5-18.2,35.7-23.8 c13.3-5.6,27.5-8.5,42.2-8.5c14.7,0,29,2.9,42.4,8.5c13.3,5.6,25.4,13.6,35.8,23.7c10.2,10.5,18.2,22.6,23.8,35.9 c5.6,13.4,8.5,27.6,8.5,42.4c0,14.5-2.8,28.6-8.5,42c-5.6,13.4-13.6,25.4-23.7,35.8c-10.5,10.2-22.6,18.2-35.9,23.8 C1350.4,252.8,1336.1,255.7,1321.4,255.7z M1321.4,72.1c-10,0-19.6,1.9-28.4,5.7c-8.9,3.8-16.7,9.1-23.3,15.7 c-6.6,6.6-11.9,14.5-15.7,23.4c-3.8,8.9-5.8,18.6-5.8,28.6c0,10,1.9,19.6,5.7,28.4c3.8,8.9,9.1,16.7,15.7,23.3 c6.6,6.6,14.4,11.9,23.3,15.7c8.8,3.8,18.4,5.7,28.4,5.7c10,0,19.6-1.9,28.4-5.7c8.9-3.8,16.8-9.1,23.5-15.7 c6.7-6.6,12-14.4,15.8-23.2c3.8-8.8,5.8-18.4,5.8-28.4c0-10-1.9-19.7-5.8-28.6c-3.8-9-9.2-16.8-15.8-23.4 c-6.7-6.6-14.6-11.9-23.5-15.7C1341,74,1331.5,72.1,1321.4,72.1z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M37,290.9H0V0h37V290.9z"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<g>
|
||||
<path class="st0" d="M192.4,291.2L70.7,169.4c-6.4-6.4-9.9-14.8-9.9-23.9c0-9,3.5-17.5,9.9-23.9L192.4,0l26.2,26.2L106.1,138.7 c-1.8,1.8-2.8,4.3-2.8,6.9c0,2.6,1,5,2.8,6.9L218.6,265L192.4,291.2z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path class="st1" d="M334,145.6c0-2.6-1-5-2.8-6.9l-3.5-3.5c0,0,0,0,0,0l-70-70l-2.3,2.4c-10.1,10.4-18,22.4-23.6,35.6 c-5.6,13.4-8.5,27.6-8.5,42.4c0,14.5,2.9,28.6,8.5,42c5.6,13.3,13.6,25.4,23.8,35.8l2.3,2.4l69.8-69.8l0,0l3.5-3.5 C333,150.6,334,148.2,334,145.6z"/>
|
||||
<path class="st0" d="M435.4,103.2L435.4,103.2c-5.6-13.4-13.6-25.4-23.8-35.9c-10.4-10.2-22.5-18.1-35.8-23.7 c-13.4-5.6-27.6-8.5-42.4-8.5c-14.7,0-28.9,2.9-42.2,8.5c-0.7,0.3-1.3,0.6-2,0.9l29.2,29.2c4.9-1,9.9-1.6,15-1.6 c10,0,19.6,1.9,28.4,5.7c8.9,3.8,16.8,9.1,23.5,15.7c6.7,6.6,12,14.4,15.8,23.4c3.8,9,5.8,18.6,5.8,28.6c0,10-1.9,19.6-5.8,28.4 c-3.8,8.9-9.2,16.7-15.8,23.2c-6.7,6.6-14.6,11.9-23.5,15.7c-8.8,3.8-18.4,5.7-28.4,5.7c-5,0-9.9-0.5-14.7-1.5l-29.2,29.2 c0.6,0.3,1.1,0.5,1.7,0.8c13.3,5.6,27.5,8.5,42.2,8.5c14.7,0,29-2.9,42.4-8.5c13.4-5.6,25.4-13.6,35.9-23.8 c10.1-10.4,18.1-22.5,23.7-35.8c5.6-13.4,8.5-27.5,8.5-42C443.9,130.9,441,116.6,435.4,103.2z"/>
|
||||
<path class="st0" d="M1082,35c-55.4,0-100.3,44.9-100.3,100.3h-0.1v44.2v68h37h0.1V135.3c0-35,28.3-63.3,63.3-63.3 c35,0,63.3,28.3,63.3,63.3h-0.1v112.2h37c0,0,0.1-111.6,0.1-112.2C1182.3,79.9,1137.4,35,1082,35z"/>
|
||||
</g>
|
||||
<g id="Layer_2">
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.7 KiB |
44
occon18/artwork/raw/owncloud-logo-community-raw-invers.svg
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 1920 1052" style="enable-background:new 0 0 1920 1052;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#F6F7F6;}
|
||||
</style>
|
||||
<g id="Typo">
|
||||
<path class="st0" d="M1581.3,844.8h-25.1c-43.7,0-79.3-37.2-79.3-83s35.6-83,79.3-83h63.1V551.5h16.9v135.7c0,3.6,0.7,75.8,0,101.4
|
||||
c-0.4,14.1-7.1,28.5-18.3,39.5C1607.3,838.5,1593.6,844.8,1581.3,844.8z M1556.2,695.7c-34.4,0-62.4,29.6-62.4,66.1
|
||||
s28,66.1,62.4,66.1h25.1c16.3,0,37.4-18.7,38-39.7c0.6-20.3,0.2-72,0.1-92.4L1556.2,695.7L1556.2,695.7z"/>
|
||||
<path class="st0" d="M1365.1,844.8c-43.7,0-79.3-37.2-79.3-83v-75.3h16.9v75.3c0,36.4,28,66.1,62.4,66.1s62.4-29.6,62.4-66.1v-75.3
|
||||
h16.9v75.3C1444.4,807.5,1408.8,844.8,1365.1,844.8z"/>
|
||||
<path class="st0" d="M1039.3,788.3V622.1c-5.8-3.1-11.5-6.5-16.9-10.3v176.5c0,31.1,24.3,56.4,54.2,56.4v-16.9
|
||||
C1056,827.8,1039.3,810.1,1039.3,788.3z"/>
|
||||
<path class="st0" d="M872.5,716.7c0-32,13.1-60.9,34-81.1c-5.2-2.4-10.2-5.5-14.8-9.1c-22.3,23.1-36.1,55-36.1,90.2
|
||||
c0,70.2,54.8,127.3,122.1,127.3v-16.9C919.7,827.1,872.5,777.6,872.5,716.7z"/>
|
||||
<path class="st0" d="M1176.9,844.8c-43.7,0-79.3-37.2-79.3-83s35.6-83,79.3-83s79.3,37.2,79.3,83S1220.7,844.8,1176.9,844.8z
|
||||
M1176.9,695.7c-34.4,0-62.4,29.6-62.4,66.1s28,66.1,62.4,66.1s62.4-29.6,62.4-66.1S1211.3,695.7,1176.9,695.7z"/>
|
||||
<path class="st0" d="M822.4,835.5h-16.9v-75.3c0-36.4-28-66.1-62.4-66.1s-62.4,29.6-62.4,66.1v75.3h-16.9v-75.3
|
||||
c0-45.8,35.6-83,79.3-83s79.3,37.2,79.3,83L822.4,835.5L822.4,835.5z"/>
|
||||
<path class="st0" d="M573.3,844.8c-19.2,0-36.1-10.5-45.7-26.2c-9.6,15.7-26.5,26.2-45.7,26.2c-29.9,0-54.2-25.3-54.2-56.4V686.5
|
||||
h16.9v101.8c0,21.8,16.7,39.5,37.3,39.5s37.3-17.7,37.3-39.5V686.5h16.9v101.8c0,21.8,16.7,39.5,37.3,39.5s37.3-17.7,37.3-39.5
|
||||
V686.5h16.9v101.8C627.6,819.4,603.2,844.8,573.3,844.8z"/>
|
||||
<path class="st0" d="M313.6,844.8c-43.7,0-79.3-37.2-79.3-83s35.6-83,79.3-83s79.3,37.2,79.3,83S357.3,844.8,313.6,844.8z
|
||||
M313.6,695.7c-34.4,0-62.4,29.6-62.4,66.1s28,66.1,62.4,66.1s62.4-29.6,62.4-66.1S348,695.7,313.6,695.7z"/>
|
||||
</g>
|
||||
<path id="Cloud" class="st0" d="M1078.6,149.8c-63.9,0-115.5,53.1-115.5,118.8c0,27.1,8.8,52,23.6,72
|
||||
c32.1-38.2,79.4-62.4,132.3-62.4c25.9,0,50.4,5.9,72.5,16.3c1.8-8.3,2.7-17,2.7-25.9C1194.1,202.9,1142.5,149.8,1078.6,149.8
|
||||
L1078.6,149.8z M927.7,204.7c-33.3,0-60,27.7-60,62c0,11.1,2.8,21.5,7.7,30.5c20.1-11.6,43.3-18.4,67.9-18.4c2.4,0,4.7,0.1,7,0.2
|
||||
c-0.3-3.5-0.5-6.9-0.5-10.5c0-19.1,4-37.2,11.1-53.6C951.5,208.4,940.1,204.7,927.7,204.7L927.7,204.7z M1212.7,247.4
|
||||
c-2.5,0-4.8,0.3-7.2,0.5c1,6.8,1.8,13.6,1.8,20.7c0,11-1.4,21.7-3.9,31.9c29.2,16.6,53.4,41.4,69.3,71.5c16.5-8.9,35-14.5,54.6-15.8
|
||||
C1322.2,295.3,1273.2,247.4,1212.7,247.4L1212.7,247.4z M1118.9,291.6c-89.4,0-161.7,74.4-161.7,166.3c0,92,72.3,166.3,161.7,166.3
|
||||
s161.7-74.4,161.7-166.3S1208.3,291.6,1118.9,291.6z M943.4,292.3c-69.4,0-125.5,57.7-125.5,129.1c0,42,19.5,79.2,49.6,102.7
|
||||
c12.7-25.2,38.2-42.4,67.7-42.4c3.6,0,7,0.4,10.4,0.9c-1.1-8.1-1.6-16.3-1.6-24.7c0-40,12.7-77,34.2-106.9
|
||||
c-12.9-16.6-22.1-36.5-26-58.2C949.3,292.6,946.3,292.3,943.4,292.3L943.4,292.3z M1336.6,369.2c-21.1,0-40.8,5.5-58.2,14.9
|
||||
c9.9,22.5,15.4,47.5,15.4,73.8c0,49.3-19.3,94-50.5,126.5c23,26.2,56.3,42.6,93.3,42.6c69.4,0,125.5-57.7,125.5-129.1
|
||||
S1405.9,369.2,1336.6,369.2L1336.6,369.2z M805.7,386.2c-63.9,0-115.7,52.9-115.7,118.6s51.8,119,115.7,119c24.3,0,46.8-7.8,65.5-21
|
||||
c-7.7-12.3-12.2-27-12.2-42.6c0-8.1,1.2-15.9,3.4-23.3c-34.8-25.9-57.5-68-57.5-115.5c0-12.1,1.5-23.7,4.3-34.9
|
||||
C807.9,386.4,806.8,386.2,805.7,386.2L805.7,386.2z M1484.9,488.2c-3.4,0-6.7,0.4-10,0.9c0.2,3,0.2,5.8,0.2,8.9
|
||||
c0,37.9-14.5,72.3-38.1,97.8c11.6,13.8,28.6,22.6,47.8,22.6c35,0,63.4-29,63.4-65C1548.3,517.4,1519.9,488.2,1484.9,488.2
|
||||
L1484.9,488.2z M935.2,495.2c-35,0-63.2,29-63.2,65s28.2,65.2,63.2,65.2c26.8,0,49.6-17.2,58.9-41.5c-22.6-23.7-38.8-53.8-46-87.4
|
||||
C943.9,495.7,939.7,495.2,935.2,495.2L935.2,495.2z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 4 KiB |
171
occon18/artwork/raw/owncloud-logo-community-raw.eps
Normal file
|
@ -0,0 +1,171 @@
|
|||
%!PS-Adobe-3.0 EPSF-3.0
|
||||
%%Creator: cairo 1.14.2 (http://cairographics.org)
|
||||
%%CreationDate: Tue Sep 5 18:02:38 2017
|
||||
%%Pages: 1
|
||||
%%DocumentData: Clean7Bit
|
||||
%%LanguageLevel: 2
|
||||
%%BoundingBox: 0 0 1122 556
|
||||
%%EndComments
|
||||
%%BeginProlog
|
||||
save
|
||||
50 dict begin
|
||||
/q { gsave } bind def
|
||||
/Q { grestore } bind def
|
||||
/cm { 6 array astore concat } bind def
|
||||
/w { setlinewidth } bind def
|
||||
/J { setlinecap } bind def
|
||||
/j { setlinejoin } bind def
|
||||
/M { setmiterlimit } bind def
|
||||
/d { setdash } bind def
|
||||
/m { moveto } bind def
|
||||
/l { lineto } bind def
|
||||
/c { curveto } bind def
|
||||
/h { closepath } bind def
|
||||
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
|
||||
0 exch rlineto 0 rlineto closepath } bind def
|
||||
/S { stroke } bind def
|
||||
/f { fill } bind def
|
||||
/f* { eofill } bind def
|
||||
/n { newpath } bind def
|
||||
/W { clip } bind def
|
||||
/W* { eoclip } bind def
|
||||
/BT { } bind def
|
||||
/ET { } bind def
|
||||
/pdfmark where { pop globaldict /?pdfmark /exec load put }
|
||||
{ globaldict begin /?pdfmark /pop load def /pdfmark
|
||||
/cleartomark load def end } ifelse
|
||||
/BDC { mark 3 1 roll /BDC pdfmark } bind def
|
||||
/EMC { mark /EMC pdfmark } bind def
|
||||
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
|
||||
/Tj { show currentpoint cairo_store_point } bind def
|
||||
/TJ {
|
||||
{
|
||||
dup
|
||||
type /stringtype eq
|
||||
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
|
||||
} forall
|
||||
currentpoint cairo_store_point
|
||||
} bind def
|
||||
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
|
||||
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
|
||||
/Tf { pop /cairo_font exch def /cairo_font_matrix where
|
||||
{ pop cairo_selectfont } if } bind def
|
||||
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
|
||||
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
|
||||
/cairo_font where { pop cairo_selectfont } if } bind def
|
||||
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
|
||||
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
|
||||
/g { setgray } bind def
|
||||
/rg { setrgbcolor } bind def
|
||||
/d1 { setcachedevice } bind def
|
||||
%%EndProlog
|
||||
%%BeginSetup
|
||||
%%EndSetup
|
||||
%%Page: 1 1
|
||||
%%BeginPageSetup
|
||||
%%PageBoundingBox: 0 0 1122 556
|
||||
%%EndPageSetup
|
||||
q 0 0 1122 556 rectclip q
|
||||
0.113725 0.176471 0.266667 rg
|
||||
1077.602 0 m 1057.52 0 l 1022.559 0 994.078 29.762 994.078 66.398 c 994.078
|
||||
103.039 1022.559 132.801 1057.52 132.801 c 1108 132.801 l 1108 234.641
|
||||
l 1121.52 234.641 l 1121.52 126.078 l 1121.52 123.199 1122.078 65.441 1121.52
|
||||
44.961 c 1121.199 33.68 1115.84 22.16 1106.879 13.359 c 1098.398 5.039
|
||||
1087.441 0 1077.602 0 c h
|
||||
1057.52 119.281 m 1030 119.281 1007.602 95.602 1007.602 66.398 c 1007.602
|
||||
37.199 1030 13.52 1057.52 13.52 c 1077.602 13.52 l 1090.641 13.52 1107.52
|
||||
28.48 1108 45.281 c 1108.48 61.52 1108.16 102.879 1108.078 119.199 c 1057.52
|
||||
119.199 l h
|
||||
1057.52 119.281 m f
|
||||
904.641 0 m 869.68 0 841.199 29.762 841.199 66.398 c 841.199 126.641 l
|
||||
854.719 126.641 l 854.719 66.398 l 854.719 37.281 877.121 13.52 904.641
|
||||
13.52 c 932.16 13.52 954.559 37.199 954.559 66.398 c 954.559 126.641 l 968.078
|
||||
126.641 l 968.078 66.398 l 968.078 29.84 939.602 0 904.641 0 c h
|
||||
904.641 0 m f
|
||||
644 45.199 m 644 178.16 l 639.359 180.641 634.801 183.359 630.48 186.398
|
||||
c 630.48 45.199 l 630.48 20.32 649.922 0.078 673.84 0.078 c 673.84 13.602
|
||||
l 657.359 13.602 644 27.762 644 45.199 c h
|
||||
644 45.199 m f
|
||||
510.559 102.48 m 510.559 128.078 521.039 151.199 537.762 167.359 c 533.602
|
||||
169.281 529.602 171.762 525.922 174.641 c 508.078 156.16 497.039 130.641
|
||||
497.039 102.48 c 497.039 46.32 540.879 0.641 594.719 0.641 c 594.719 14.16
|
||||
l 548.32 14.16 510.559 53.762 510.559 102.48 c h
|
||||
510.559 102.48 m f
|
||||
754.078 0 m 719.121 0 690.641 29.762 690.641 66.398 c 690.641 103.039 719.121
|
||||
132.801 754.078 132.801 c 789.039 132.801 817.52 103.039 817.52 66.398
|
||||
c 817.52 29.762 789.121 0 754.078 0 c h
|
||||
754.078 119.281 m 726.559 119.281 704.16 95.602 704.16 66.398 c 704.16
|
||||
37.199 726.559 13.52 754.078 13.52 c 781.602 13.52 804 37.199 804 66.398
|
||||
c 804 95.602 781.602 119.281 754.078 119.281 c h
|
||||
754.078 119.281 m f
|
||||
470.48 7.441 m 456.961 7.441 l 456.961 67.68 l 456.961 96.801 434.559 120.559
|
||||
407.039 120.559 c 379.52 120.559 357.121 96.879 357.121 67.68 c 357.121
|
||||
7.441 l 343.602 7.441 l 343.602 67.68 l 343.602 104.32 372.078 134.078
|
||||
407.039 134.078 c 442 134.078 470.48 104.32 470.48 67.68 c h
|
||||
470.48 7.441 m f
|
||||
271.199 0 m 255.84 0 242.32 8.398 234.641 20.961 c 226.961 8.398 213.441
|
||||
0 198.078 0 c 174.16 0 154.719 20.238 154.719 45.121 c 154.719 126.641
|
||||
l 168.238 126.641 l 168.238 45.199 l 168.238 27.762 181.602 13.602 198.078
|
||||
13.602 c 214.559 13.602 227.922 27.762 227.922 45.199 c 227.922 126.641
|
||||
l 241.441 126.641 l 241.441 45.199 l 241.441 27.762 254.801 13.602 271.281
|
||||
13.602 c 287.762 13.602 301.121 27.762 301.121 45.199 c 301.121 126.641
|
||||
l 314.641 126.641 l 314.641 45.199 l 314.641 20.32 295.121 0 271.199 0
|
||||
c h
|
||||
271.199 0 m f
|
||||
63.441 0 m 28.48 0 0 29.762 0 66.398 c 0 103.039 28.48 132.801 63.441 132.801
|
||||
c 98.398 132.801 126.879 103.039 126.879 66.398 c 126.879 29.762 98.398
|
||||
0 63.441 0 c h
|
||||
63.441 119.281 m 35.922 119.281 13.52 95.602 13.52 66.398 c 13.52 37.199
|
||||
35.922 13.52 63.441 13.52 c 90.961 13.52 113.359 37.199 113.359 66.398
|
||||
c 113.359 95.602 90.961 119.281 63.441 119.281 c h
|
||||
63.441 119.281 m f
|
||||
675.441 556 m 624.32 556 583.039 513.52 583.039 460.961 c 583.039 439.281
|
||||
590.078 419.359 601.922 403.359 c 627.602 433.922 665.441 453.281 707.762
|
||||
453.281 c 728.48 453.281 748.078 448.559 765.762 440.238 c 767.199 446.879
|
||||
767.922 453.84 767.922 460.961 c 767.84 513.52 726.559 556 675.441 556
|
||||
c h
|
||||
554.719 512.078 m 528.078 512.078 506.719 489.922 506.719 462.48 c 506.719
|
||||
453.602 508.961 445.281 512.879 438.078 c 528.961 447.359 547.52 452.801
|
||||
567.199 452.801 c 569.121 452.801 570.961 452.719 572.801 452.641 c 572.559
|
||||
455.441 572.398 458.16 572.398 461.039 c 572.398 476.32 575.602 490.801
|
||||
581.281 503.922 c 573.762 509.121 564.641 512.078 554.719 512.078 c h
|
||||
782.719 477.922 m 780.719 477.922 778.879 477.68 776.961 477.52 c 777.762
|
||||
472.078 778.398 466.641 778.398 460.961 c 778.398 452.16 777.281 443.602
|
||||
775.281 435.441 c 798.641 422.16 818 402.32 830.719 378.238 c 843.922 385.359
|
||||
858.719 389.84 874.398 390.879 c 870.32 439.602 831.121 477.922 782.719
|
||||
477.922 c h
|
||||
707.68 442.559 m 636.16 442.559 578.32 383.039 578.32 309.52 c 578.32 235.922
|
||||
636.16 176.48 707.68 176.48 c 779.199 176.48 837.039 236 837.039 309.52
|
||||
c 837.039 383.039 779.199 442.559 707.68 442.559 c h
|
||||
567.281 442 m 511.762 442 466.879 395.84 466.879 338.719 c 466.879 305.121
|
||||
482.48 275.359 506.559 256.559 c 516.719 276.719 537.121 290.48 560.719
|
||||
290.48 c 563.602 290.48 566.32 290.16 569.039 289.762 c 568.16 296.238
|
||||
567.762 302.801 567.762 309.52 c 567.762 341.52 577.922 371.121 595.121
|
||||
395.039 c 584.801 408.32 577.441 424.238 574.32 441.602 c 572 441.762 569.602
|
||||
442 567.281 442 c h
|
||||
881.84 380.48 m 864.961 380.48 849.199 376.078 835.281 368.559 c 843.199
|
||||
350.559 847.602 330.559 847.602 309.52 c 847.602 270.078 832.16 234.32
|
||||
807.199 208.32 c 825.602 187.359 852.238 174.238 881.84 174.238 c 937.359
|
||||
174.238 982.238 220.398 982.238 277.52 c 982.238 334.641 937.281 380.48
|
||||
881.84 380.48 c h
|
||||
457.121 366.879 m 406 366.879 364.559 324.559 364.559 272 c 364.559 219.441
|
||||
406 176.801 457.121 176.801 c 476.559 176.801 494.559 183.039 509.52 193.602
|
||||
c 503.359 203.441 499.762 215.199 499.762 227.68 c 499.762 234.16 500.719
|
||||
240.398 502.48 246.32 c 474.641 267.039 456.48 300.719 456.48 338.719 c
|
||||
456.48 348.398 457.68 357.68 459.922 366.641 c 458.879 366.719 458 366.879
|
||||
457.121 366.879 c h
|
||||
1000.48 285.281 m 997.762 285.281 995.121 284.961 992.48 284.559 c 992.641
|
||||
282.16 992.641 279.922 992.641 277.441 c 992.641 247.121 981.039 219.602
|
||||
962.16 199.199 c 971.441 188.16 985.039 181.121 1000.398 181.121 c 1028.398
|
||||
181.121 1051.121 204.32 1051.121 233.121 c 1051.199 261.922 1028.48 285.281
|
||||
1000.48 285.281 c h
|
||||
560.719 279.68 m 532.719 279.68 510.16 256.48 510.16 227.68 c 510.16 198.879
|
||||
532.719 175.52 560.719 175.52 c 582.16 175.52 600.398 189.281 607.84 208.719
|
||||
c 589.762 227.68 576.801 251.762 571.039 278.641 c 567.68 279.281 564.32
|
||||
279.68 560.719 279.68 c h
|
||||
560.719 279.68 m f
|
||||
Q Q
|
||||
showpage
|
||||
%%Trailer
|
||||
end restore
|
||||
%%EOF
|
44
occon18/artwork/raw/owncloud-logo-community-raw.svg
Normal file
|
@ -0,0 +1,44 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 21.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 1920 1052" style="enable-background:new 0 0 1920 1052;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#1D2D44;}
|
||||
</style>
|
||||
<g id="Typo">
|
||||
<path class="st0" d="M1581.3,844.8h-25.1c-43.7,0-79.3-37.2-79.3-83s35.6-83,79.3-83h63.1V551.5h16.9v135.7c0,3.6,0.7,75.8,0,101.4
|
||||
c-0.4,14.1-7.1,28.5-18.3,39.5C1607.3,838.5,1593.6,844.8,1581.3,844.8z M1556.2,695.7c-34.4,0-62.4,29.6-62.4,66.1
|
||||
s28,66.1,62.4,66.1h25.1c16.3,0,37.4-18.7,38-39.7c0.6-20.3,0.2-72,0.1-92.4H1556.2z"/>
|
||||
<path class="st0" d="M1365.1,844.8c-43.7,0-79.3-37.2-79.3-83v-75.3h16.9v75.3c0,36.4,28,66.1,62.4,66.1s62.4-29.6,62.4-66.1v-75.3
|
||||
h16.9v75.3C1444.4,807.5,1408.8,844.8,1365.1,844.8z"/>
|
||||
<path class="st0" d="M1039.3,788.3V622.1c-5.8-3.1-11.5-6.5-16.9-10.3v176.5c0,31.1,24.3,56.4,54.2,56.4v-16.9
|
||||
C1056,827.8,1039.3,810.1,1039.3,788.3z"/>
|
||||
<path class="st0" d="M872.5,716.7c0-32,13.1-60.9,34-81.1c-5.2-2.4-10.2-5.5-14.8-9.1c-22.3,23.1-36.1,55-36.1,90.2
|
||||
c0,70.2,54.8,127.3,122.1,127.3v-16.9C919.7,827.1,872.5,777.6,872.5,716.7z"/>
|
||||
<path class="st0" d="M1176.9,844.8c-43.7,0-79.3-37.2-79.3-83s35.6-83,79.3-83s79.3,37.2,79.3,83S1220.7,844.8,1176.9,844.8z
|
||||
M1176.9,695.7c-34.4,0-62.4,29.6-62.4,66.1s28,66.1,62.4,66.1s62.4-29.6,62.4-66.1S1211.3,695.7,1176.9,695.7z"/>
|
||||
<path class="st0" d="M822.4,835.5h-16.9v-75.3c0-36.4-28-66.1-62.4-66.1s-62.4,29.6-62.4,66.1v75.3h-16.9v-75.3
|
||||
c0-45.8,35.6-83,79.3-83s79.3,37.2,79.3,83V835.5z"/>
|
||||
<path class="st0" d="M573.3,844.8c-19.2,0-36.1-10.5-45.7-26.2c-9.6,15.7-26.5,26.2-45.7,26.2c-29.9,0-54.2-25.3-54.2-56.4V686.5
|
||||
h16.9v101.8c0,21.8,16.7,39.5,37.3,39.5s37.3-17.7,37.3-39.5V686.5h16.9v101.8c0,21.8,16.7,39.5,37.3,39.5s37.3-17.7,37.3-39.5
|
||||
V686.5h16.9v101.8C627.6,819.4,603.2,844.8,573.3,844.8z"/>
|
||||
<path class="st0" d="M313.6,844.8c-43.7,0-79.3-37.2-79.3-83s35.6-83,79.3-83s79.3,37.2,79.3,83S357.3,844.8,313.6,844.8z
|
||||
M313.6,695.7c-34.4,0-62.4,29.6-62.4,66.1s28,66.1,62.4,66.1s62.4-29.6,62.4-66.1S348,695.7,313.6,695.7z"/>
|
||||
</g>
|
||||
<path id="Cloud" class="st0" d="M1078.6,149.8c-63.9,0-115.5,53.1-115.5,118.8c0,27.1,8.8,52,23.6,72
|
||||
c32.1-38.2,79.4-62.4,132.3-62.4c25.9,0,50.4,5.9,72.5,16.3c1.8-8.3,2.7-17,2.7-25.9C1194.1,202.9,1142.5,149.8,1078.6,149.8
|
||||
L1078.6,149.8z M927.7,204.7c-33.3,0-60,27.7-60,62c0,11.1,2.8,21.5,7.7,30.5c20.1-11.6,43.3-18.4,67.9-18.4c2.4,0,4.7,0.1,7,0.2
|
||||
c-0.3-3.5-0.5-6.9-0.5-10.5c0-19.1,4-37.2,11.1-53.6C951.5,208.4,940.1,204.7,927.7,204.7L927.7,204.7z M1212.7,247.4
|
||||
c-2.5,0-4.8,0.3-7.2,0.5c1,6.8,1.8,13.6,1.8,20.7c0,11-1.4,21.7-3.9,31.9c29.2,16.6,53.4,41.4,69.3,71.5c16.5-8.9,35-14.5,54.6-15.8
|
||||
C1322.2,295.3,1273.2,247.4,1212.7,247.4L1212.7,247.4z M1118.9,291.6c-89.4,0-161.7,74.4-161.7,166.3c0,92,72.3,166.3,161.7,166.3
|
||||
s161.7-74.4,161.7-166.3C1280.6,366,1208.3,291.6,1118.9,291.6z M943.4,292.3c-69.4,0-125.5,57.7-125.5,129.1
|
||||
c0,42,19.5,79.2,49.6,102.7c12.7-25.2,38.2-42.4,67.7-42.4c3.6,0,7,0.4,10.4,0.9c-1.1-8.1-1.6-16.3-1.6-24.7
|
||||
c0-40,12.7-77,34.2-106.9c-12.9-16.6-22.1-36.5-26-58.2C949.3,292.6,946.3,292.3,943.4,292.3L943.4,292.3z M1336.6,369.2
|
||||
c-21.1,0-40.8,5.5-58.2,14.9c9.9,22.5,15.4,47.5,15.4,73.8c0,49.3-19.3,94-50.5,126.5c23,26.2,56.3,42.6,93.3,42.6
|
||||
c69.4,0,125.5-57.7,125.5-129.1S1405.9,369.2,1336.6,369.2L1336.6,369.2z M805.7,386.2c-63.9,0-115.7,52.9-115.7,118.6
|
||||
s51.8,119,115.7,119c24.3,0,46.8-7.8,65.5-21c-7.7-12.3-12.2-27-12.2-42.6c0-8.1,1.2-15.9,3.4-23.3c-34.8-25.9-57.5-68-57.5-115.5
|
||||
c0-12.1,1.5-23.7,4.3-34.9C807.9,386.4,806.8,386.2,805.7,386.2L805.7,386.2z M1484.9,488.2c-3.4,0-6.7,0.4-10,0.9
|
||||
c0.2,3,0.2,5.8,0.2,8.9c0,37.9-14.5,72.3-38.1,97.8c11.6,13.8,28.6,22.6,47.8,22.6c35,0,63.4-29,63.4-65
|
||||
C1548.3,517.4,1519.9,488.2,1484.9,488.2L1484.9,488.2z M935.2,495.2c-35,0-63.2,29-63.2,65c0,36,28.2,65.2,63.2,65.2
|
||||
c26.8,0,49.6-17.2,58.9-41.5c-22.6-23.7-38.8-53.8-46-87.4C943.9,495.7,939.7,495.2,935.2,495.2L935.2,495.2z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 4 KiB |
1
occon18/artwork/raw/univention-logo.svg
Normal file
|
@ -0,0 +1 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 348.7 595.3 144.8"><path fill="#D0002E" d="M59.4 350.1H23.7c-6.5 0-12 5.3-12 12h10.7v34.7c.2 2.6 4.1 5.5 12 6.1 6.5.4 12.6-2 14.2-5.7V362c1.4.2 8.9 2 10.3 9.5 0 .4.2.8.2 1.2v36.7H48.5v-5.3c-1.6 2.4-4.9 4.7-7.5 5.3H23.3c-7.3-.4-11.8-5.3-12-12V362c-6 0-11.3 5.3-11.3 11.8v35.7c0 6.5 5.3 12 12 12h35.7c6.5 0 12-5.3 12-12 6.5 0 12-5.3 12-12V362c-.3-6.6-5.6-11.9-12.3-11.9zm500.4 12.1c-6.7.2-10.7 0-14.2 5.3-2.4-4.1-7.5-5.1-10.5-5.1v47H546l-.2-33.9c.2-3.9 6.5-6.7 14-6.3 7.9.4 11.8 3.4 12 5.9v34.3h10.5v-35.3c-1-8.2-4.3-12.3-22.5-11.9m-323.8.3c.8 1.6 19.5 39.1 20.9 41.4 1.4 2.2 4.9 5.3 8.3 5.9 1.6.2 6.5.4 8.1 0 .4-.2 14.4-36.7 14.8-37.7.2-.8.8-5.3-4.1-9.3-6.3 15.8-12 31.4-15.8 40.6-6.5-13-12.4-25.5-17.6-34.5-3.2-5.3-7.9-6.3-8.9-6.3 0-.1-5.7-.1-5.7-.1zm-54.3.2c-6.7.2-10.7 0-14.2 5.3-2.4-4.1-7.5-5.1-10.5-5.1v47.2h10.9l-.2-33.9c.2-3.9 6.5-6.7 14-6.3 7.9.4 11.8 3.4 12 6.1v34.3h10.5v-35.9c-.8-8.3-4.3-12.4-22.5-11.7m200.5 0c-6.7.2-10.7 0-14.2 5.3-2.4-4.1-7.5-5.1-10.5-5.1v47.2h10.7l-.2-33.9c.2-3.9 6.5-6.7 14-6.3 7.9.4 11.8 3.4 12 6.1v34.3h10.5v-35.9c-.8-8.3-4.1-12.4-22.3-11.7m-154.3-5.1c0 1-.8 1.8-1.8 1.8h-6.9c-1 0-1.8-.8-1.8-1.8v-6.9c0-1 .8-1.8 1.8-1.8h6.9c1 0 1.8.8 1.8 1.8v6.9zm203.2 5.3v-14.2H427v2.6c0 6.5-5.3 11.8-11.8 11.8h-2v6.7h7.1v39.9h10.5V370h11.8v-7.1h-11.5zm80.6 32.8c0 3.9-3.2 7.1-7.1 7.1h-11.8c-3.9 0-7.1-3.2-7.1-7.1v-18.9c0-3.9 3.2-7.1 7.1-7.1h11.8c3.9 0 7.1 3.2 7.1 7.1v18.9zm-1.2-33H487c-6.5 0-11.8 5.3-11.8 11.8V398c0 6.5 5.3 11.8 11.8 11.8h23.5c6.5 0 11.8-5.3 11.8-11.8v-23.5c0-6.6-5.3-11.8-11.8-11.8m-195.4 6.6h11.8c3.9 0 7.1 3.2 7.1 7.1v3.6h-26v-3.6c0-4 3-7.1 7.1-7.1m29 17.5h.4v-12.6c0-6.5-5.3-11.8-11.8-11.8h-23.5c-6.5 0-11.8 5.3-11.8 11.8v23.5c0 6.5 4.1 12.6 22.5 12.2 14.8-.2 24.1-1.2 24.7-11.4h-11.2c-.8 1.4-3.6 4.7-13.4 4.3-10.3-.4-12.2-3.9-12.2-7.9v-8.5h36.1l.2.4zm-116.2 22.9v-35.5c0-6.1-4.7-11.4-10.5-12v47.4h10.5zm-94.7-47.5v34.7c-.6 3.6-6.7 6.3-13.8 5.9-7.9-.4-11.8-3.4-12-6.1v-34.1H96.9v35.5c.8 8.3 4.3 12.4 22.5 12 6.7-.2 10.7 0 14-5.1v4.9H144v-35.7c-.2-6.1-4.9-11.1-10.8-12m329.1-4.6c0 1-.8 1.8-1.8 1.8h-6.9c-1 0-1.8-.8-1.8-1.8v-6.9c0-1 .8-1.8 1.8-1.8h6.9c1 0 1.8.8 1.8 1.8v6.9zm0 52.1v-35.5c0-6.1-4.7-11.4-10.5-12v47.4h10.5zM568.5 446c-4.1.2-6.5 0-8.5 3.2-1.4-2.4-4.7-3-6.5-3v28.4h6.5v-20.5c.2-2.2 3.9-4.1 8.3-3.9 4.7.2 7.1 2 7.3 3.6v20.7h6.5V453c-.4-5-2.4-7.4-13.6-7m-63.4 7.9v12.2c0 2.4-1.8 4.3-4.3 4.3h-7.1c-2 0-3.9-1.4-4.3-3.4v-12.8c.2-2.2 3.9-4.1 8.3-3.9 4.9.1 7.2 2 7.4 3.6m6.2-1v-.4c-.6-4.7-2.8-6.9-13.4-6.5-4.1.2-6.5 0-8.5 3.2-1.4-2.4-4.7-3-6.5-3v47.2h6.5v-18.7h14.8c3.9 0 7.1-3.2 7.1-7.1v-14.7m-132 15.2v-12.2c0-2.4-1.8-4.3-4.3-4.3h-7c-2 0-3.9 1.4-4.3 3.4v12.8c.2 2.2 3.9 4.1 8.3 3.9 4.9-.2 7.3-2 7.3-3.6m6.5 1v.4c-.6 4.7-2.8 6.9-13.4 6.5-4.1-.2-6.5 0-8.5-3.2-1.4 2.4-4.7 3-6.5 3v-48.9c5.5.2 6.5 4.9 6.5 4.9v15.6h14.8c3.9 0 7.1 3.2 7.1 7.1v14.6m83.8-3.2c0 2.4-1.8 4.3-4.3 4.3h-7.1c-2.4 0-4.3-1.8-4.3-4.3v-11.4c0-2.4 1.8-4.3 4.3-4.3h7.1c2.4 0 4.3 1.8 4.3 4.3v11.4zM469 446h-14.2c-3.9 0-7.1 3.2-7.1 7.1v14.2c0 3.9 3.2 7.1 7.1 7.1H469c3.9 0 7.1-3.2 7.1-7.1v-14.2c0-4.1-3.3-7.1-7.1-7.1m59.8 4h7.1c2.4 0 4.3 1.8 4.3 4.3v2.2h-15.6v-2.2c-.1-2.4 1.9-4.3 4.2-4.3m17.6 10.6h.2v-7.5c0-3.9-3.2-7.1-7.1-7.1h-14.2c-3.9 0-7.1 3.2-7.1 7.1v14.2c0 3.9 2.4 7.5 13.6 7.3 8.9-.2 14.6-.8 14.8-6.9h-6.7c-.4.8-2.2 2.8-8.1 2.6-6.3-.2-7.3-2.4-7.3-4.7v-5.1c0 .1 21.9.1 21.9.1zm-143.1-8.9h7.1c2.4 0 4.3 1.8 4.3 4.3v2.2H399V456c0-2.5 1.8-4.3 4.3-4.3m17.6 10.5h.2v-7.5c0-3.9-3.2-7.1-7.1-7.1h-14.2c-3.9 0-7.1 3.2-7.1 7.1v14.2c0 3.9 2.4 7.5 13.6 7.3 8.9-.2 14.6-.8 14.8-6.9h-6.7c-.4.8-2.2 2.8-8.1 2.6-6.3-.2-7.3-2.4-7.3-4.7v-5.1c0 .1 21.9.1 21.9.1zm167.9 5.3h6.5v7.1h-6.5v-7.1z"/></svg>
|
After Width: | Height: | Size: 3.6 KiB |