Compare commits

...

13 Commits

  1. 72
      Arduino/Controller/Controller.ino
  2. 100
      Arduino/Lights/Lights.ino
  3. BIN
      Circuit/Controller.fzz
  4. BIN
      Circuit/Controller.pdf
  5. BIN
      Circuit/Trace.fzz
  6. BIN
      Circuit/Trace.pdf
  7. BIN
      Foto/DSC_0003.JPG
  8. BIN
      Foto/DSC_0004.JPG
  9. BIN
      Foto/DSC_0005.JPG
  10. BIN
      Foto/DSC_0006.JPG
  11. BIN
      Foto/DSC_0007.JPG
  12. BIN
      Foto/DSC_0008.JPG
  13. BIN
      Foto/DSC_0015.JPG
  14. BIN
      Foto/DSC_0016.JPG
  15. BIN
      Foto/DSC_0018.JPG
  16. BIN
      Foto/DSC_0019.JPG
  17. 92
      Processing/Processing.pde
  18. BIN
      Processing/data/English.aiff
  19. BIN
      Processing/data/English.mp3
  20. BIN
      Processing/data/French.aiff
  21. BIN
      Processing/data/French.mp3
  22. BIN
      Processing/data/German.aiff
  23. BIN
      Processing/data/German.mp3
  24. BIN
      Processing/data/Italian.aiff
  25. BIN
      Processing/data/Italian.mp3
  26. BIN
      Processing/data/NONE.aiff
  27. BIN
      Processing/data/NONE.mp3
  28. BIN
      Processing/data/Russian.aiff
  29. BIN
      Processing/data/Russian.mp3
  30. BIN
      Processing/data/Spanish.aiff
  31. BIN
      Processing/data/Spanish.mp3
  32. BIN
      Processing/data/loop.mp4
  33. 5526
      SVG/export/stone.ai
  34. BIN
      SVG/export/stone.dwg
  35. BIN
      SVG/export/stone.pdf
  36. BIN
      SVG/export/stone2.dwg
  37. BIN
      SVG/export/stone3.dwg
  38. BIN
      SVG/stone.png
  39. 102
      SVG/stone.svg
  40. BIN
      SVG/stoneFull.png
  41. 1571
      SVG/stoneFull.svg
  42. 245
      SVG/stoneVideo.svg
  43. BIN
      SVG/stoneVideoFull.png
  44. BIN
      SVG/stoneVideoStone.png
  45. BIN
      Video/opacity.png
  46. 362
      Video/stone.kdenlive
  47. BIN
      opacity.png
  48. BIN
      splash.png
  49. 323
      splash.svg

72
Arduino/Controller/Controller.ino

@ -0,0 +1,72 @@
int langs[] = {2,4,7,8,12,13};
int leds[] = {3,5,6,9,10,11};
bool state[] = {0,0,0,0,0,0};
int old = 0;
int current = 0;
void setup() {
Serial.begin(9600);
for(int i=0; i<6; i++) {
pinMode(langs[i], INPUT);
pinMode(leds[i], OUTPUT);
}
}
void loop() {
checkStatus();
if(current == 0) {
for(int i=0; i<255; i++) {
checkStatus();
for(int x=0; x<6; x++) {
analogWrite(leds[x], i);
}
delay(10);
}
for(int i=255; i>0; i--) {
checkStatus();
for(int x=0; x<6; x++) {
analogWrite(leds[x], i);
}
delay(10);
}
} else {
for(int i=0; i<100; i++) {
checkStatus();
if(current != 0) {
analogWrite(leds[current-1], i);
}
delay(10);
}
for(int i=100; i>0; i--) {
checkStatus();
if(current != 0) {
analogWrite(leds[current-1], i);
}
delay(10);
}
}
}
void checkStatus() {
current = 0;
for(int i=0; i<6; i++) {
state[i] = digitalRead(langs[i]);
//Serial.print(state[i]);
//Serial.print("\t");
if(state[i] == LOW) {
current = i+1;
}
}
if(old != current) {
old = current;
Serial.println(current);
}
}

100
Arduino/Lights/Lights.ino

@ -0,0 +1,100 @@
int langs[] = {2,4,5,7,8,12};
int leds[] = {6,9,10,11};
int triggerPin = 13;
int tracePin = 3;
bool langStatus[] = {0,0,0,0};
int oldLang = 0;
int currentLang = 0;
bool oldTrigger = 0;
bool trigger = 0;
int traceStatus = 0;
void setup() {
Serial.begin(9600);
for(int i=0; i<6; i++) {
pinMode(langs[i], INPUT);
pinMode(leds[i], OUTPUT);
}
pinMode(triggerPin, INPUT);
pinMode(tracePin, OUTPUT);
for(int i=0; i<255; i++) {
analogWrite(tracePin, i);
delay(10);
}
}
void loop() {
trigger = digitalRead(triggerPin);
if(oldTrigger != trigger) {
oldTrigger = trigger;
if(trigger == HIGH) {
checkLang();
Serial.print("speech");
Serial.print("\t");
Serial.println(currentLang);
for(int i=traceStatus; i>=0; i--) {
analogWrite(tracePin, i);
delay(5);
}
for(int i=0; i<1000; i++) {
analogWrite(leds[0], constrain(i,0,255));
analogWrite(leds[1], constrain(i-100, 0, 255));
analogWrite(leds[2], constrain(i-300, 0, 255));
analogWrite(leds[3], constrain(i-600, 0, 255));
delay(5);
}
} else {
for(int i=255; i>=0; i--) {
checkLang();
for(int x=0; x<4; x++) {
analogWrite(leds[x], i);
}
delay(10);
}
while(oldTrigger == trigger) {
trigger = digitalRead(triggerPin);
for(traceStatus=0; traceStatus<255; traceStatus++) {
analogWrite(tracePin, traceStatus);
delay(10);
}
trigger = digitalRead(triggerPin);
for(traceStatus=255; traceStatus>0; traceStatus--) {
analogWrite(tracePin, traceStatus);
delay(10);
}
trigger = digitalRead(triggerPin);
}
}
}
}
void checkLang() {
currentLang = 0;
for(int i=0; i<6; i++) {
langStatus[i] = digitalRead(langs[i]);
//Serial.print(langStatus[i]);
//Serial.print("\t");
if(langStatus[i] == LOW) {
currentLang = i+1;
}
}
if(oldLang != currentLang) {
oldLang = currentLang;
//Serial.println(currentLang);
}
}

BIN
Circuit/Controller.fzz

Binary file not shown.

BIN
Circuit/Controller.pdf

Binary file not shown.

BIN
Circuit/Trace.fzz

Binary file not shown.

BIN
Circuit/Trace.pdf

Binary file not shown.

BIN
Foto/DSC_0003.JPG

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 MiB

BIN
Foto/DSC_0004.JPG

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 MiB

BIN
Foto/DSC_0005.JPG

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 MiB

BIN
Foto/DSC_0006.JPG

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 MiB

BIN
Foto/DSC_0007.JPG

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 MiB

BIN
Foto/DSC_0008.JPG

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 MiB

BIN
Foto/DSC_0015.JPG

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 MiB

BIN
Foto/DSC_0016.JPG

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 MiB

BIN
Foto/DSC_0018.JPG

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 MiB

BIN
Foto/DSC_0019.JPG

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 MiB

92
Processing/Processing.pde

@ -0,0 +1,92 @@
import processing.serial.*;
import gohai.glvideo.*;
import ddf.minim.*;
import ddf.minim.ugens.*;
String[] langs = {"NONE","Italian","English","Spanish","German","French","Russian"};
int langsN = langs.length;
Minim minim;
AudioOutput out;
AudioSample [] sample = new AudioSample[langsN];
GLMovie video;
Serial myPort;
String dataIn = "";
char linefeed = '\n';
int currentLang = 0;
int millis = 0;
boolean isPlaying = false;
int ms = 0;
void setup() {
size(1920, 1080, P2D);
myPort = new Serial(this, "/dev/ttyUSB0", 9600);
minim = new Minim(this);
out = minim.getLineOut();
for(int i=0; i<langsN; i++) {
sample[i] = minim.loadSample( langs[i]+".aiff" );
sample[i].stop();
}
//delay(5000);
video = new GLMovie(this, "loop.mp4");
video.loop();
println("Ready!");
}
void draw() {
background(0);
isPlaying = millis >= millis();
if (video.available()) {
video.read();
}
image(video, 0, 0, width, height);
if(isPlaying) {
ms = ms < 255 ? ms+1 : 255;
} else {
ms = ms > 0 ? ms-1 : 0;
}
tint(255, ms);
printLanguage();
if(myPort.available() > 0) {
dataIn = myPort.readStringUntil(linefeed);
if (dataIn != null) {
String[] split = dataIn.split("\t");
currentLang = split.length > 1 ? parseInt(trim(split[1])) : 0;
for(int i=0; i<langsN; i++) {
sample[i].stop();
}
millis = millis() + sample[currentLang].length();
sample[currentLang].trigger();
println("Speech " + langs[currentLang]);
}
}
//println(sample[currentLang].length(), millis, millis());
}
void printLanguage() {
fill(255);
stroke(255);
textSize(16);
textAlign(CENTER, CENTER);
text("Selected language:", width/2, (height/2)-50);
textSize(22);
text(langs[currentLang], width/2, height/2);
if(isPlaying) {
textAlign(LEFT, CENTER);
text("Playing",10,10);
}
}

BIN
Processing/data/English.aiff

Binary file not shown.

BIN
Processing/data/English.mp3

Binary file not shown.

BIN
Processing/data/French.aiff

Binary file not shown.

BIN
Processing/data/French.mp3

Binary file not shown.

BIN
Processing/data/German.aiff

Binary file not shown.

BIN
Processing/data/German.mp3

Binary file not shown.

BIN
Processing/data/Italian.aiff

Binary file not shown.

BIN
Processing/data/Italian.mp3

Binary file not shown.

BIN
Processing/data/NONE.aiff

Binary file not shown.

BIN
Processing/data/NONE.mp3

Binary file not shown.

BIN
Processing/data/Russian.aiff

Binary file not shown.

BIN
Processing/data/Russian.mp3

Binary file not shown.

BIN
Processing/data/Spanish.aiff

Binary file not shown.

BIN
Processing/data/Spanish.mp3

Binary file not shown.

BIN
Processing/data/loop.mp4

Binary file not shown.

5526
SVG/export/stone.ai

File diff suppressed because it is too large

BIN
SVG/export/stone.dwg

Binary file not shown.

BIN
SVG/export/stone.pdf

Binary file not shown.

BIN
SVG/export/stone2.dwg

Binary file not shown.

BIN
SVG/export/stone3.dwg

Binary file not shown.

BIN
SVG/stone.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 MiB

102
SVG/stone.svg

@ -0,0 +1,102 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
sodipodi:docname="stone.svg"
inkscape:version="1.0beta1 (unknown)"
id="svg8"
version="1.1"
viewBox="0 0 210 297"
height="297mm"
width="210mm">
<defs
id="defs2">
<filter
height="1.0558585"
y="-0.027929251"
width="1.0420799"
x="-0.021039973"
id="filter875"
style="color-interpolation-filters:sRGB"
inkscape:collect="always">
<feGaussianBlur
id="feGaussianBlur877"
stdDeviation="3.9083906"
inkscape:collect="always" />
</filter>
<mask
id="mask879"
maskUnits="userSpaceOnUse">
<path
transform="matrix(0.99958316,0.02898325,-0.02887101,0.99957991,0,0)"
inkscape:connector-curvature="0"
id="path881"
d="m -76.683118,118.53821 79.7777518,17.87668 24.9043812,-7.57615 c 0,0 4.491723,-0.94149 6.455196,-0.94149 1.963475,0 0.87377,1.35412 3.433564,2.22014 2.559796,0.86602 7.200349,-2.93598 7.977182,-2.93598 0.77683,0 10.121519,-1.57254 10.306031,0.0891 0.184515,1.66165 3.222712,0.0589 4.444902,0.0589 1.222187,0 10.245249,-1.7227 10.523807,0.54494 0.278556,2.26765 2.59632,0.56814 4.522534,0.004 1.926217,-0.56461 13.982456,-3.17246 13.982456,-1.14715 0,2.0253 7.014729,-1.1461 8.576556,-0.78215 1.561828,0.36394 4.677817,0.49547 5.553377,1.62274 0.87557,1.12726 4.05109,-1.48759 4.05109,-1.48759 0,0 6.65505,-0.82552 7.63127,-0.55832 0.97623,0.26719 7.55812,3.19926 9.20862,2.63229 1.65049,-0.56696 6.65296,-2.781 8.73542,-2.781 2.08247,0 -2.10407,1.40974 3.80492,1.94985 5.909,0.5401 14.85059,-2.30091 20.71434,-2.11192 5.86375,0.18899 12.10156,0.18655 14.1757,1.50947 2.07414,1.32292 4.29067,0.20541 8.5787,0.20541 4.28804,0 7.75551,-0.55685 10.87001,-0.93245 3.1145,-0.37561 4.96448,2.25977 8.02121,2.44876 3.05673,0.18899 2.62847,0 7.51764,-0.37798 4.88917,-0.37798 15.22707,-0.0687 18.87725,-0.0687 3.65018,0 5.7177,0.94494 11.1495,0 5.43181,-0.94494 8.4442,-2.28583 12.52898,-0.94494 4.08478,1.34089 3.71444,3.2147 7.25913,1.16294 3.54469,-2.05176 -0.0792,-2.85011 5.35181,-2.85011 5.43105,0 10.77566,0.7717 11.61169,0.94258 0.83603,0.17087 38.12939,14.29095 38.12939,14.29095 l -19.32972,304.27203 c 0,0 -429.3862,13.21668 -426.48018,8.50239 2.90601,-4.71427 57.135492,-334.83684 57.135492,-334.83684 z"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter875)" />
</mask>
</defs>
<sodipodi:namedview
inkscape:window-maximized="1"
inkscape:window-y="22"
inkscape:window-x="0"
inkscape:window-height="719"
inkscape:window-width="1366"
showgrid="false"
inkscape:document-rotation="0"
inkscape:current-layer="layer1"
inkscape:document-units="mm"
inkscape:cy="235.90449"
inkscape:cx="498.20458"
inkscape:zoom="0.35"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Livello 1">
<image
sodipodi:absref="/docs/Dslak/Orma/Foto/DSC_0004.JPG"
xlink:href="../Foto/DSC_0004.JPG"
y="-12.429255"
x="-32.986252"
width="327.82935"
height="219.45599"
preserveAspectRatio="none"
id="image843"
style="opacity:1;stop-opacity:1" />
<image
sodipodi:absref="/docs/Dslak/Orma/Foto/DSC_0005.JPG"
xlink:href="../Foto/DSC_0005.JPG"
y="128.29662"
x="-110.56265"
width="411.52249"
height="276.01651"
preserveAspectRatio="none"
id="image857"
style="opacity:1;stop-opacity:1"
transform="matrix(0.9995799,-0.02898325,0.02887101,0.99958315,0,0)"
mask="url(#mask879)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.5 KiB

BIN
SVG/stoneFull.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 MiB

1571
SVG/stoneFull.svg

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 125 KiB

245
SVG/stoneVideo.svg

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 504 KiB

BIN
SVG/stoneVideoFull.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.0 MiB

BIN
SVG/stoneVideoStone.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 MiB

BIN
Video/opacity.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 KiB

362
Video/stone.kdenlive

@ -0,0 +1,362 @@
<?xml version='1.0' encoding='utf-8'?>
<mlt title="Anonymous Submission" LC_NUMERIC="it_IT.UTF-8" producer="main_bin" version="6.16.0" root="/docs/Dslak/orma/Video">
<profile frame_rate_num="25" sample_aspect_num="1" display_aspect_den="1080" colorspace="601" progressive="1" description="1920x1080 25.00fps" display_aspect_num="1920" frame_rate_den="1" width="1920" height="1080" sample_aspect_den="1"/>
<producer id="producer0" in="00:00:00,000" out="00:02:05,280">
<property name="length">3133</property>
<property name="eof">pause</property>
<property name="resource">/docs/Dslak/orma/SVG/stoneVideoStone.png</property>
<property name="ttl">25</property>
<property name="aspect_ratio">1</property>
<property name="progressive">1</property>
<property name="seekable">1</property>
<property name="meta.media.width">3543</property>
<property name="meta.media.height">3189</property>
<property name="mlt_service">qimage</property>
<property name="kdenlive:clipname"/>
<property name="kdenlive:duration">00:00:05,000</property>
<property name="kdenlive:folderid">-1</property>
<property name="kdenlive:id">5</property>
<property name="kdenlive:file_size">10041138</property>
<property name="kdenlive:file_hash">99dba6ee4024db2206cdf9ab02618a56</property>
</producer>
<producer id="producer1" in="00:00:00,000" out="00:02:01,480">
<property name="length">3038</property>
<property name="eof">pause</property>
<property name="resource">/docs/Dslak/orma/SVG/stoneVideoFull.png</property>
<property name="ttl">25</property>
<property name="aspect_ratio">1</property>
<property name="progressive">1</property>
<property name="seekable">1</property>
<property name="meta.media.width">3543</property>
<property name="meta.media.height">3189</property>
<property name="mlt_service">qimage</property>
<property name="kdenlive:clipname"/>
<property name="kdenlive:duration">00:00:05,000</property>
<property name="kdenlive:folderid">-1</property>
<property name="kdenlive:id">4</property>
<property name="kdenlive:file_size">10057016</property>
<property name="kdenlive:file_hash">086d01f51fcbd2404d664053447d9b57</property>
</producer>
<producer id="producer2" in="00:00:00,000" out="00:01:59,960">
<property name="length">3000</property>
<property name="eof">pause</property>
<property name="resource">opacity.png</property>
<property name="ttl">25</property>
<property name="aspect_ratio">1</property>
<property name="progressive">1</property>
<property name="seekable">1</property>
<property name="meta.media.width">1920</property>
<property name="meta.media.height">1080</property>
<property name="mlt_service">qimage</property>
<property name="kdenlive:clipname"/>
<property name="kdenlive:duration">00:00:05,000</property>
<property name="kdenlive:folderid">-1</property>
<property name="kdenlive:id">3</property>
<property name="kdenlive:file_size">103696</property>
<property name="kdenlive:file_hash">6d551198b0c3cc3158fc2c9efad355ae</property>
</producer>
<playlist id="main_bin">
<property name="kdenlive:docproperties.activeTrack">4</property>
<property name="kdenlive:docproperties.audioTarget">-1</property>
<property name="kdenlive:docproperties.decimalPoint">,</property>
<property name="kdenlive:docproperties.disablepreview">0</property>
<property name="kdenlive:docproperties.documentid">1576335744337</property>
<property name="kdenlive:docproperties.enableTimelineZone">0</property>
<property name="kdenlive:docproperties.enableexternalproxy">0</property>
<property name="kdenlive:docproperties.enableproxy">0</property>
<property name="kdenlive:docproperties.externalproxyparams"/>
<property name="kdenlive:docproperties.generateimageproxy">0</property>
<property name="kdenlive:docproperties.generateproxy">0</property>
<property name="kdenlive:docproperties.groups">[
]
</property>
<property name="kdenlive:docproperties.kdenliveversion">19.08.2</property>
<property name="kdenlive:docproperties.position">2951</property>
<property name="kdenlive:docproperties.previewextension"/>
<property name="kdenlive:docproperties.previewparameters"/>
<property name="kdenlive:docproperties.profile">/home/dslak/.local/share/kdenlive/profiles/customprofile0</property>
<property name="kdenlive:docproperties.proxyextension"/>
<property name="kdenlive:docproperties.proxyimageminsize">2000</property>
<property name="kdenlive:docproperties.proxyimagesize">800</property>
<property name="kdenlive:docproperties.proxyminsize">1000</property>
<property name="kdenlive:docproperties.proxyparams"/>
<property name="kdenlive:docproperties.renderaudioquality">192</property>
<property name="kdenlive:docproperties.rendercategory">Generic (HD for web, mobile devices...)</property>
<property name="kdenlive:docproperties.renderendguide">-1</property>
<property name="kdenlive:docproperties.renderexportaudio">0</property>
<property name="kdenlive:docproperties.renderfield">0</property>
<property name="kdenlive:docproperties.renderguide">0</property>
<property name="kdenlive:docproperties.renderplay">0</property>
<property name="kdenlive:docproperties.renderprofile">MP4 - the dominating format (H264/AAC)</property>
<property name="kdenlive:docproperties.renderquality">23</property>
<property name="kdenlive:docproperties.renderratio">1</property>
<property name="kdenlive:docproperties.renderrescale">0</property>
<property name="kdenlive:docproperties.renderrescaleheight">540</property>
<property name="kdenlive:docproperties.renderrescalewidth">960</property>
<property name="kdenlive:docproperties.renderscanning">0</property>
<property name="kdenlive:docproperties.renderspeed">2</property>
<property name="kdenlive:docproperties.renderstartguide">-1</property>
<property name="kdenlive:docproperties.rendertcoverlay">0</property>
<property name="kdenlive:docproperties.rendertctype">0</property>
<property name="kdenlive:docproperties.rendertwopass">0</property>
<property name="kdenlive:docproperties.renderurl">/docs/Dslak/orma/Processing/data/loop.mp4</property>
<property name="kdenlive:docproperties.renderzone">0</property>
<property name="kdenlive:docproperties.scrollPos">0</property>
<property name="kdenlive:docproperties.seekOffset">30000</property>
<property name="kdenlive:docproperties.version">0.99</property>
<property name="kdenlive:docproperties.verticalzoom">1</property>
<property name="kdenlive:docproperties.videoTarget">-1</property>
<property name="kdenlive:docproperties.zonein">0</property>
<property name="kdenlive:docproperties.zoneout">75</property>
<property name="kdenlive:docproperties.zoom">9</property>
<property name="kdenlive:documentnotes"/>
<property name="xml_retain">1</property>
<entry producer="producer0" in="00:00:00,000" out="00:02:05,280"/>
<entry producer="producer1" in="00:00:00,000" out="00:02:01,480"/>
<entry producer="producer2" in="00:00:00,000" out="00:01:59,960"/>
</playlist>
<producer id="black_track" in="00:00:00,000" out="00:22:00,000">
<property name="length">2147483647</property>
<property name="eof">continue</property>
<property name="resource">black</property>
<property name="aspect_ratio">1</property>
<property name="mlt_service">color</property>
<property name="set.test_audio">0</property>
</producer>
<playlist id="playlist0">
<property name="kdenlive:audio_track">1</property>
</playlist>
<playlist id="playlist1">
<property name="kdenlive:audio_track">1</property>
</playlist>
<tractor id="tractor0" in="00:00:00,000">
<property name="kdenlive:audio_track">1</property>
<property name="kdenlive:trackheight">60</property>
<property name="kdenlive:collapsed">0</property>
<property name="kdenlive:thumbs_format"/>
<property name="kdenlive:audio_rec"/>
<track hide="video" producer="playlist0"/>
<track hide="video" producer="playlist1"/>
</tractor>
<playlist id="playlist2">
<property name="kdenlive:audio_track">1</property>
</playlist>
<playlist id="playlist3">
<property name="kdenlive:audio_track">1</property>
</playlist>
<tractor id="tractor1" in="00:00:00,000">
<property name="kdenlive:audio_track">1</property>
<property name="kdenlive:trackheight">60</property>
<property name="kdenlive:collapsed">0</property>
<property name="kdenlive:thumbs_format"/>
<property name="kdenlive:audio_rec"/>
<track hide="video" producer="playlist2"/>
<track hide="video" producer="playlist3"/>
</tractor>
<playlist id="playlist4">
<entry producer="producer0" in="00:00:00,000" out="00:01:59,960">
<property name="kdenlive:id">5</property>
<filter id="filter0">
<property name="rotate_center">1</property>
<property name="mlt_service">qtblend</property>
<property name="kdenlive_id">qtblend</property>
<property name="rect">00:00:00,000=0 473 4800 2700 1;00:00:15,800=-2356 -92 7680 4320 1;00:00:36,240=-2956 -592 6720 3780 1;00:00:55,880=-1956 -1592 4800 2700 1;00:01:13,640=-300 -1200 2880 1620 1;00:01:59,960=-2000 900 6720 3780 1</property>
<property name="rotation">00:00:00,000=0;00:00:15,800=0;00:00:36,240=0;00:00:55,880=0;00:01:13,640=0;00:01:59,960=0</property>
<property name="compositing">0</property>
<property name="distort">0</property>
<property name="kdenlive:collapsed">0</property>
</filter>
</entry>
</playlist>
<playlist id="playlist5"/>
<tractor id="tractor2" in="00:00:00,000" out="00:01:59,960">
<property name="kdenlive:trackheight">60</property>
<property name="kdenlive:collapsed">0</property>
<property name="kdenlive:thumbs_format"/>
<property name="kdenlive:audio_rec"/>
<track hide="audio" producer="playlist4"/>
<track hide="audio" producer="playlist5"/>
</tractor>
<playlist id="playlist6">
<entry producer="producer1" in="00:00:00,000" out="00:01:59,960">
<property name="kdenlive:id">4</property>
<filter id="filter1">
<property name="rotate_center">1</property>
<property name="mlt_service">qtblend</property>
<property name="kdenlive_id">qtblend</property>
<property name="rect">00:00:00,000=0 473 4800 2700 1;00:00:15,800=-2356 -92 7680 4320 1;00:00:21,280=-2516 -226 7422 4175 0,5;00:00:36,240=-2956 -592 6720 3780 1;00:00:55,880=-1956 -1592 4800 2700 1;00:01:13,640=-300 -1200 2880 1620 1;00:01:59,960=-2000 900 6720 3780 1</property>
<property name="rotation">00:00:00,000=0;00:00:15,800=0;00:00:21,280=0;00:00:36,240=0;00:00:55,880=0;00:01:13,640=0;00:01:59,960=0</property>
<property name="compositing">0</property>
<property name="distort">0</property>
<property name="kdenlive:collapsed">0</property>
</filter>
</entry>
</playlist>
<playlist id="playlist7"/>
<tractor id="tractor3" in="00:00:00,000" out="00:01:59,960">
<property name="kdenlive:trackheight">60</property>
<property name="kdenlive:collapsed">0</property>
<property name="kdenlive:thumbs_format"/>
<property name="kdenlive:audio_rec"/>
<track hide="audio" producer="playlist6"/>
<track hide="audio" producer="playlist7"/>
</tractor>
<playlist id="playlist8">
<entry producer="producer2" in="00:00:00,000" out="00:01:59,960">
<property name="kdenlive:id">3</property>
<property name="kdenlive:activeeffect">0</property>
<filter id="filter2">
<property name="rotate_center">1</property>
<property name="mlt_service">qtblend</property>
<property name="kdenlive_id">qtblend</property>
<property name="rect">00:00:00,000=-432 0 2752 1080 1</property>
<property name="rotation">00:00:00,000=0</property>
<property name="compositing">11</property>
<property name="distort">1</property>
<property name="kdenlive:collapsed">0</property>
</filter>
</entry>
</playlist>
<playlist id="playlist9"/>
<tractor id="tractor4" in="00:00:00,000" out="00:01:59,960">
<property name="kdenlive:trackheight">60</property>
<property name="kdenlive:collapsed">0</property>
<property name="kdenlive:thumbs_format"/>
<property name="kdenlive:audio_rec"/>
<track hide="audio" producer="playlist8"/>
<track hide="audio" producer="playlist9"/>
</tractor>
<tractor title="Anonymous Submission" id="tractor5" global_feed="1" in="00:00:00,000" out="00:22:00,000">
<track producer="black_track"/>
<track producer="tractor0"/>
<track producer="tractor1"/>
<track producer="tractor2"/>
<track producer="tractor3"/>
<track producer="tractor4"/>
<transition id="transition0" in="00:01:28,280" out="00:01:59,960">
<property name="a_track">3</property>
<property name="b_track">4</property>
<property name="start">0/0:100%x100%</property>
<property name="factory">loader</property>
<property name="aligned">0</property>
<property name="progressive">1</property>
<property name="mlt_service">composite</property>
<property name="kdenlive_id">wipe</property>
<property name="force_track">0</property>
<property name="softness">0,62</property>
<property name="luma">/usr/share/kdenlive/lumas/HD/cloud.pgm</property>
<property name="luma_invert">0</property>
<property name="geometry">0%/0%:100%x100%:100;-1=0%/0%:100%x100%:0</property>
<property name="fill">1</property>
</transition>
<transition id="transition1" in="00:00:54,560" out="00:01:28,240">
<property name="a_track">3</property>
<property name="b_track">4</property>
<property name="start">0/0:100%x100%</property>
<property name="factory">loader</property>
<property name="aligned">0</property>
<property name="progressive">1</property>
<property name="mlt_service">composite</property>
<property name="kdenlive_id">wipe</property>
<property name="force_track">0</property>
<property name="softness">0,62</property>
<property name="luma">/usr/share/kdenlive/lumas/HD/cloud.pgm</property>
<property name="luma_invert">1</property>
<property name="geometry">0%/0%:100%x100%:0;-1=0%/0%:100%x100%:100</property>
<property name="fill">1</property>
</transition>
<transition id="transition2" in="00:00:29,680" out="00:00:54,520">
<property name="a_track">3</property>
<property name="b_track">4</property>
<property name="start">0/0:100%x100%</property>
<property name="factory">loader</property>
<property name="aligned">0</property>
<property name="progressive">1</property>
<property name="mlt_service">composite</property>
<property name="kdenlive_id">wipe</property>
<property name="force_track">0</property>
<property name="softness">1</property>
<property name="luma">/usr/share/kdenlive/lumas/HD/cloud.pgm</property>
<property name="luma_invert">0</property>
<property name="geometry">0%/0%:100%x100%:100;-1=0%/0%:100%x100%:0</property>
<property name="fill">1</property>
</transition>
<transition id="transition3" out="00:00:29,640">
<property name="a_track">3</property>
<property name="b_track">4</property>
<property name="start">0/0:100%x100%</property>
<property name="factory">loader</property>
<property name="aligned">0</property>
<property name="progressive">1</property>
<property name="mlt_service">composite</property>
<property name="kdenlive_id">wipe</property>
<property name="force_track">0</property>
<property name="softness">0,62</property>
<property name="luma">/usr/share/kdenlive/lumas/HD/cloud.pgm</property>
<property name="luma_invert">0</property>
<property name="geometry">0%/0%:100%x100%:0;-1=0%/0%:100%x100%:100</property>
<property name="fill">1</property>
</transition>
<transition id="transition4" out="00:01:59,960">
<property name="a_track">3</property>
<property name="b_track">5</property>
<property name="version">0,9</property>
<property name="mlt_service">frei0r.cairoblend</property>
<property name="kdenlive_id">frei0r.cairoblend</property>
<property name="force_track">1</property>
<property name="0">00:00:00,000=100</property>
<property name="1">colorburn</property>
</transition>
<transition id="transition5">
<property name="a_track">0</property>
<property name="b_track">1</property>
<property name="mlt_service">mix</property>
<property name="kdenlive_id">mix</property>
<property name="internal_added">237</property>
<property name="always_active">1</property>
<property name="sum">1</property>
</transition>
<transition id="transition6">
<property name="a_track">0</property>
<property name="b_track">2</property>
<property name="mlt_service">mix</property>
<property name="kdenlive_id">mix</property>
<property name="internal_added">237</property>
<property name="always_active">1</property>
<property name="sum">1</property>
</transition>
<transition id="transition7">
<property name="a_track">0</property>
<property name="b_track">3</property>
<property name="compositing">0</property>
<property name="distort">0</property>
<property name="rotate_center">0</property>
<property name="mlt_service">qtblend</property>
<property name="kdenlive_id">qtblend</property>
<property name="internal_added">237</property>
<property name="always_active">1</property>
</transition>
<transition id="transition8">
<property name="a_track">0</property>
<property name="b_track">4</property>
<property name="compositing">0</property>
<property name="distort">0</property>
<property name="rotate_center">0</property>
<property name="mlt_service">qtblend</property>
<property name="kdenlive_id">qtblend</property>
<property name="internal_added">237</property>
<property name="always_active">1</property>
</transition>
<transition id="transition9">
<property name="a_track">0</property>
<property name="b_track">5</property>
<property name="compositing">0</property>
<property name="distort">0</property>
<property name="rotate_center">0</property>
<property name="mlt_service">qtblend</property>
<property name="kdenlive_id">qtblend</property>
<property name="internal_added">237</property>
<property name="always_active">1</property>
</transition>
</tractor>
</mlt>

BIN
opacity.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 113 KiB

BIN
splash.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 91 KiB

323
splash.svg

@ -0,0 +1,323 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
inkscape:version="1.0beta1 (unknown)"
inkscape:export-ydpi="96"
inkscape:export-xdpi="96"
inkscape:export-filename="/docs/Dslak/sweetbox/splash.png"
sodipodi:docname="splash.svg"
viewBox="0 0 1920.0001 1080"
height="1080"
width="1920"
id="svg2"
version="1.1">
<metadata
id="metadata8">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<linearGradient
id="linearGradient1239"
inkscape:collect="always">
<stop
id="stop1235"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop1237"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<linearGradient
id="linearGradient1231"
inkscape:collect="always">
<stop
id="stop1227"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
<stop
id="stop1229"
offset="1"
style="stop-color:#ffffff;stop-opacity:0;" />
</linearGradient>
<pattern
patternUnits="userSpaceOnUse"
width="200"
height="200"
patternTransform="translate(-304.03979,561.33801)"
id="pattern3027">
<image
sodipodi:absref="/docs/Dslak/bg_texture_grey.jpg"
xlink:href="../bg_texture_grey.jpg"
y="-1.1368684e-13"
x="0"
id="image3013"
height="200"
width="200" />
</pattern>
<pattern
patternTransform="matrix(0.6701195,0,0,0.75925927,-422.39307,1208.7618)"
id="pattern4723"
xlink:href="#pattern4526-8"
inkscape:collect="always" />
<pattern
inkscape:collect="always"
xlink:href="#pattern3027-2"
id="pattern4526-8"
patternTransform="matrix(0.6701195,0,0,0.75925927,-169.69952,1204.4455)" />
<pattern
patternUnits="userSpaceOnUse"
width="200"
height="200"
patternTransform="translate(-304.03979,561.33801)"
id="pattern3027-2">
<image
sodipodi:absref="/docs/Dslak/bg_texture_grey.jpg"
xlink:href="../bg_texture_grey.jpg"
y="-1.1368684e-13"
x="0"
id="image3013-7"
height="200"
width="200" />
</pattern>
<filter
style="color-interpolation-filters:sRGB"
inkscape:collect="always"
id="filter4119-6-4">
<feGaussianBlur
inkscape:collect="always"
stdDeviation="1.2754095"
id="feGaussianBlur4121-2-5" />
</filter>
<filter
height="1.397944"
y="-0.19897199"
width="1.4053133"
x="-0.20265666"
id="filter1099"
style="color-interpolation-filters:sRGB"
inkscape:collect="always">
<feGaussianBlur
id="feGaussianBlur1101"
stdDeviation="10.671235"
inkscape:collect="always" />
</filter>
<linearGradient
gradientTransform="translate(-12.543176,-41.541482)"
gradientUnits="userSpaceOnUse"
y2="271.18738"
x2="2370.2986"
y1="796.17395"
x1="851.23389"
id="linearGradient1233"
xlink:href="#linearGradient1231"
inkscape:collect="always" />
<linearGradient
gradientTransform="translate(-1570,76.49586)"
gradientUnits="userSpaceOnUse"
y2="950.41833"
x2="1004.405"
y1="533.03644"
x1="434.58505"
id="linearGradient1241"
xlink:href="#linearGradient1239"
inkscape:collect="always" />
</defs>
<sodipodi:namedview
inkscape:current-layer="g10"
inkscape:window-maximized="1"
inkscape:window-y="22"
inkscape:window-x="0"
inkscape:cy="548.53386"
inkscape:cx="561.16095"
inkscape:zoom="0.21743256"
showgrid="false"
id="namedview4"
inkscape:window-height="719"
inkscape:window-width="1366"
inkscape:pageshadow="2"
inkscape:pageopacity="1"
guidetolerance="10"
gridtolerance="10"
objecttolerance="10"
borderopacity="1"
inkscape:document-rotation="0"
bordercolor="#666666"
pagecolor="#000000" />
<g
id="g10"
inkscape:label="Image"
inkscape:groupmode="layer">
<ellipse
transform="scale(-1,1)"
ry="676.28253"
rx="1242.5717"
cy="796.75"
cx="-799.25116"
id="path1209"
style="opacity:0.0328058;fill:url(#linearGradient1241);fill-opacity:1;stroke-width:11.3386" />
<ellipse
cx="1115.1838"
cy="229.6459"
rx="1242.5717"
ry="676.28253"
style="opacity:0.0694659;fill:url(#linearGradient1233);fill-opacity:1;stroke-width:11.3386"
id="ellipse1211" />
<g
id="g1038"
transform="translate(911.57966,-1256.417)"
style="opacity:1;stop-opacity:1">
<ellipse
ry="64.358215"
rx="63.188065"
cy="1367.1871"
cx="465.71945"
style="fill:#b6d500;fill-opacity:1;stroke:none;filter:url(#filter4119-6-4)"
id="path4123-1-4"
transform="matrix(1.0489245,0,0,1.0315098,56.765617,-392.65772)"
inkscape:export-filename="./logoTrasp.png"
inkscape:export-xdpi="339.49112"
inkscape:export-ydpi="339.49112" />
<ellipse
ry="63.777626"
rx="63.77953"
cy="1017.4272"
cx="545.27014"
style="fill:#1d1d1d;fill-opacity:1;stroke:none"
id="path3318-1-7"
inkscape:export-filename="./logoTrasp.png"
inkscape:export-xdpi="339.49112"
inkscape:export-ydpi="339.49112" />
<path
inkscape:export-ydpi="339.49112"
inkscape:export-xdpi="339.49112"
inkscape:export-filename="./logoTrasp.png"
inkscape:connector-curvature="0"
id="path2985-4-0-3-9-8-0-64-6"
d="m 586.19005,977.15927 c -17.13452,7.61748 -38.96807,25.94703 -45.86233,47.41853 l 0.11843,0.1491 c 7.5907,-21.3852 31.31403,-38.81762 40.74654,-43.34038 -23.52898,18.22168 -27.76549,29.53428 -35.27184,48.33238 -2.19921,5.527 -4.12641,10.4729 -6.43248,14.4016 -2.30609,3.9289 -4.95164,6.8302 -8.64361,8.4598 -5.09197,2.2477 -14.36807,0.4072 -21.2252,-3.5446 -3.42857,-1.9759 -6.24971,-4.4515 -7.71488,-6.9951 -1.46518,-2.5437 -1.6838,-5.0258 9.3e-4,-7.6496 3.44792,-5.3682 13.08584,-10.0419 21.35312,-12.1397 4.13365,-1.049 7.94948,-1.4658 10.34569,-1.1697 1.19811,0.1491 2.00031,0.4944 2.30342,0.8026 0.30309,0.3079 0.38297,0.5166 0.0589,1.3014 -2.58147,6.2503 -10.26089,10.479 -16.96342,12.4089 -3.35129,0.9651 -6.45499,1.3686 -8.39586,1.2423 -0.97042,-0.063 -1.63691,-0.3127 -1.78449,-0.4284 9.2e-4,0 -0.0102,0 0.0817,-0.147 6.26711,-10.17 20.45291,-11.1747 20.45291,-11.1747 l 0.32732,-0.3708 c 0,0 -15.38728,-0.7832 -22.34634,10.5098 -0.26237,0.4258 -0.42653,0.9086 -0.36596,1.4336 0.0606,0.5252 0.37137,0.9879 0.73546,1.2726 0.7282,0.5692 1.65391,0.7416 2.79897,0.8162 2.29015,0.149 5.50414,-0.2876 9.00947,-1.297 7.0107,-2.0188 15.19055,-6.3216 18.1589,-13.5087 0.51141,-1.2381 0.3389,-2.5919 -0.47337,-3.4173 -0.81226,-0.8254 -1.98328,-1.1739 -3.39053,-1.3479 -2.81442,-0.348 -6.73735,0.1246 -11.00888,1.2083 -8.54307,2.1676 -18.42641,6.6869 -22.44416,12.9425 -2.04771,3.1883 -1.77001,6.6923 -0.0464,9.6848 1.72376,2.9927 4.79236,5.6029 8.4153,7.6909 7.24586,4.1757 16.74285,6.331 22.84917,3.6357 4.12918,-1.8226 7.07082,-5.0929 9.49452,-9.2221 2.42369,-4.1293 4.37157,-9.1366 6.56747,-14.6551 4.39182,-11.0371 9.76732,-24.0932 21.62445,-36.11699 7.38618,-7.48985 13.21804,-12.38425 17.21485,-15.41405 l -0.28824,-1.77271 z"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#adeb00;fill-opacity:0.92549;stroke:none;stroke-width:5;marker:none;enable-background:accumulate" />
</g>
<g
transform="translate(0,-38)"
id="g1125">
<g
transform="translate(277.33338,51.084897)"
id="g1207">
<g
transform="matrix(1.8395917,0,0,1.8395917,500.55356,-1142.9701)"
id="g1048"
style="opacity:1;stop-opacity:1">
<ellipse
ry="64.358215"
rx="63.188065"
cy="1367.1871"
cx="465.71945"
style="opacity:0.254943;fill:#ffffff;fill-opacity:1;stroke:none;filter:url(#filter1099)"
id="path4123-1"
transform="matrix(1.0489245,0,0,1.0315098,-389.50809,-517.47644)"
inkscape:export-filename="./logo.png"
inkscape:export-xdpi="339.49112"
inkscape:export-ydpi="339.49112" />
<ellipse
ry="63.777626"
rx="63.77953"
cy="892.60852"
cx="98.996445"
style="fill:#1d1d1d;fill-opacity:1;stroke:none"
id="path3318-1"
inkscape:export-filename="./logo.png"
inkscape:export-xdpi="339.49112"
inkscape:export-ydpi="339.49112" />
<path
inkscape:export-ydpi="339.49112"
inkscape:export-xdpi="339.49112"
inkscape:export-filename="./logo.png"
inkscape:connector-curvature="0"
id="path2985-4-0-3-9-8-0-64"
d="m 90.418148,856.61609 c -8.39082,3.7303 -19.08276,12.7063 -22.4589,23.221 l 0.058,0.073 c 3.71718,-10.4724 15.33456,-19.0091 19.95368,-21.2239 -11.5222,8.9232 -13.59683,14.463 -17.27271,23.6685 -1.07696,2.7066 -2.02071,5.1286 -3.15,7.0525 -1.1293,1.924 -2.42483,3.3448 -4.2328,4.1428 -2.49355,1.1007 -7.03608,0.1994 -10.39403,-1.7358 -1.67898,-0.9676 -3.0605,-2.1799 -3.778,-3.4255 -0.7175,-1.2457 -0.82456,-2.4612 6.4e-4,-3.7461 1.68846,-2.6288 6.40817,-4.9175 10.45668,-5.9448 2.02426,-0.5137 3.89288,-0.7178 5.06631,-0.5728 0.58672,0.073 0.97956,0.2421 1.12799,0.393 0.14843,0.1508 0.18754,0.253 0.0288,0.6373 -1.26415,3.0608 -5.02478,5.1316 -8.30703,6.0767 -1.64113,0.4726 -3.16102,0.6702 -4.11147,0.6084 -0.47522,-0.031 -0.8016,-0.1532 -0.87387,-0.2098 4.5e-4,0 -0.005,5e-4 0.04,-0.072 3.06902,-4.9803 10.01584,-5.4723 10.01584,-5.4723 l 0.16029,-0.1816 c 0,0 -7.53519,-0.3835 -10.94306,5.1467 -0.12848,0.2085 -0.20887,0.4449 -0.17921,0.702 0.0297,0.2572 0.18186,0.4838 0.36016,0.6232 0.3566,0.2788 0.80992,0.3632 1.37066,0.3997 1.12149,0.073 2.69539,-0.1408 4.41196,-0.6351 3.43316,-0.9886 7.43885,-3.0957 8.89246,-6.6153 0.25044,-0.6063 0.16596,-1.2692 -0.23181,-1.6734 -0.39777,-0.4042 -0.97122,-0.5749 -1.66035,-0.6601 -1.37823,-0.1704 -3.2993,0.061 -5.39108,0.5917 -4.18356,1.0615 -9.02346,3.2746 -10.99096,6.338 -1.00277,1.5613 -0.86678,3.2772 -0.0227,4.7427 0.84413,1.4655 2.34683,2.7437 4.12099,3.7662 3.54832,2.0449 8.19902,3.1003 11.1893,1.7804 2.02207,-0.8925 3.4626,-2.494 4.64949,-4.5161 1.18689,-2.0221 2.14077,-4.4742 3.21611,-7.1766 2.15068,-5.4049 4.78308,-11.7985 10.58955,-17.6866 3.61703,-3.6678 6.4729,-6.0646 8.43015,-7.5483 l -0.14115,-0.8681 z"
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#adeb00;fill-opacity:0.92549;stroke:none;stroke-width:5;marker:none;enable-background:accumulate" />
<path
inkscape:export-ydpi="339.49112"
inkscape:export-xdpi="339.49112"
inkscape:export-filename="./logo.png"
inkscape:connector-curvature="0"
id="path2986-9-0-7-5-1-4-9"
d="m 110.72772,858.16849 c -1.44225,0.4414 -3.10633,1.639 -4.98821,3.5921 -4.57669,4.6631 -9.972822,12.747 -16.179382,24.2484 -0.38692,0.7498 -0.99982,1.5445 -1.84568,2.3898 -0.37508,0.3458 -0.76896,0.6955 -1.1744,1.0402 -0.93305,0.7072 -1.3996,1.1512 -1.40487,1.3308 -10e-4,0.045 0.0312,0.066 0.0919,0.068 0.0911,0 0.27375,-0.037 0.54977,-0.1172 l 4.00379,-2.9169 c -0.085,1.8618 0.67378,2.9859 2.27391,3.3817 0.75679,0.1177 1.76681,-0.01 3.0248,-0.3901 1.28835,-0.3797 2.33355,-0.8697 3.14182,-1.4692 -1.56111,0.3472 -2.58449,0.5115 -3.07052,0.4936 -2.51869,-0.1823 -3.75324,-0.9677 -3.71241,-2.3594 0.009,-0.2918 0.0754,-0.606 0.20679,-0.9382 13.083442,-14.7543 19.676452,-23.8609 19.777892,-27.3176 0.0191,-0.6509 -0.20985,-0.9957 -0.6952,-1.036 z m 38.2979,1.9152 c -1.82267,-0.067 -4.44726,1.8256 -7.87493,5.6769 -3.30356,3.766 -8.0863,10.2021 -14.34457,19.3198 l -4.88352,3.2241 c -0.13204,0.3547 0.0302,0.5903 0.48321,0.6968 0.21198,0.03 0.70479,-0.1813 1.47805,-0.6248 0.77392,-0.4659 1.27847,-0.6591 1.51951,-0.5829 0.0601,0.025 0.0915,0.083 0.0888,0.1731 -0.008,0.2693 -0.36862,1.0338 -1.07445,2.2887 -0.67546,1.256 -1.01596,2.041 -1.02518,2.3553 -0.005,0.1571 0.0507,0.2363 0.17221,0.2407 0.24236,0.031 1.04836,-0.8711 2.4099,-2.7086 1.8363,-2.4717 3.18963,-4.1893 4.06918,-5.1457 1.66596,-1.8487 2.98372,-2.7719 3.95712,-2.7811 2.22017,-0.01 3.32998,0.2638 3.31354,0.8249 -0.0139,0.4714 -0.77724,1.0489 -2.28744,1.735 -1.51024,0.686 -3.0637,1.2049 -4.65517,1.551 -0.88688,0.1696 -1.34087,0.6042 -1.36128,1.3 -0.0217,0.7407 0.4048,1.6607 1.28451,2.7715 0.76281,0.9493 1.4896,1.6192 2.17775,2.004 0.41802,0.2625 1.11471,0.4127 2.0868,0.4484 2.79469,0.1026 5.04647,-0.6122 6.764,-2.1446 -0.86047,0.3055 -1.86195,0.4329 -3.01627,0.3905 -1.24549,-0.046 -2.50545,-0.2561 -3.7714,-0.6396 -0.54154,-0.1997 -1.28848,-0.6012 -2.24408,-1.198 -1.22375,-0.7864 -1.82799,-1.4141 -1.81416,-1.8855 0.008,-0.2693 0.22865,-0.4828 0.65921,-0.6468 7.22098,-2.5436 10.84231,-4.1107 10.85945,-4.6943 0.003,-0.09 -0.0407,-0.1586 -0.13051,-0.2069 -0.71986,-0.341 -1.7328,-0.5325 -3.039,-0.5804 -1.45814,-0.053 -3.3055,0.081 -5.53489,0.4031 -0.88556,0.1248 -1.78418,0.256 -2.70076,0.4021 0.1294,-0.2649 3.36058,-3.8647 9.70689,-10.7997 6.15808,-6.7396 9.25159,-10.4117 9.2694,-11.0178 0.003,-0.09 -0.17745,-0.1358 -0.54195,-0.1492 z m -38.60844,-0.6412 c 0.0607,0 0.0844,0.033 0.0824,0.1 -0.2297,1.6094 -1.33617,3.7694 -3.33158,6.4824 -1.07632,1.4435 -3.33902,4.2042 -6.77328,8.28 -3.307512,3.9007 -5.812282,7.0562 -7.525092,9.465 10.785862,-16.2542 16.636172,-24.3609 17.547522,-24.3274 z m -26.489482,20.6928 c -1.41252,0.465 -2.80155,1.1442 -4.16581,2.0379 -1.54982,0.9992 -2.27492,1.8176 -2.17185,2.4506 0.0773,0.4747 0.70285,0.7946 1.88428,0.9503 1.18142,0.1557 1.76956,0.4958 1.75375,1.0345 -0.0191,0.6509 -1.29444,2.0924 -3.82282,4.3139 -2.465,2.1341 -3.59025,3.5155 -3.36568,4.1529 0.0555,0.1818 1.27288,-0.8302 3.64873,-3.035 2.9074,-2.702 4.67339,-4.2815 5.29543,-4.753 0.90333,-0.7308 1.36406,-1.3948 1.38119,-1.9784 0.005,-0.1796 -0.0683,-0.3464 -0.21555,-0.5091 -0.11624,-0.184 -0.53345,-0.2945 -1.2625,-0.3212 -0.15189,-0.01 -0.36668,0 -0.64072,0.017 -0.2734,-0.01 -0.48767,-0.018 -0.63955,-0.024 -0.85057,-0.031 -1.29913,-0.2002 -1.35132,-0.4942 -0.0806,-0.3625 0.55198,-1.1189 1.89377,-2.283 1.1549,-1.0137 1.74759,-1.5382 1.77865,-1.5596 z m 29.761432,2.2081 c -2.43482,0.068 -4.66476,0.4571 -6.6927,1.169 -2.67247,0.9131 -4.6345,2.2818 -5.87386,4.1013 -0.50975,0.7902 -0.76992,1.5109 -0.78902,2.1618 -0.0349,1.1896 0.8084,1.8163 2.53991,1.8798 1.48849,0.055 3.55714,-0.3108 6.19528,-1.0902 3.2516,-0.9592 5.2327,-1.7235 5.94918,-2.3039 -0.25292,0.3278 -0.387,0.679 -0.39818,1.0606 -0.031,1.0549 0.80663,1.7486 2.49988,2.0804 2.50682,0.5864 4.09366,0.894 4.76198,0.9186 -2.61717,-0.9724 -3.89588,-2.5077 -3.83462,-4.5951 0.0118,-0.404 0.0818,-0.8249 0.2165,-1.2693 0.12742,-0.1976 0.19885,-0.3771 0.20348,-0.5342 0.0112,-0.3816 -0.26268,-0.6132 -0.80748,-0.7006 -1.69324,-0.3318 -2.98805,-0.609 -3.89409,-0.822 0.68549,0.4745 1.02133,0.9758 1.0062,1.492 -0.029,0.9876 -1.1538,1.9359 -3.36993,2.8432 -2.03126,0.8242 -3.59222,1.1805 -4.68382,1.073 -2.15351,-0.1914 -3.21165,-0.8062 -3.18136,-1.8387 0.025,-0.8529 0.62874,-1.753 1.81205,-2.6982 1.58283,-1.0879 4.3619,-2.0624 8.3406,-2.9275 z"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:147.502px;line-height:125%;font-family:Dali;-inkscape-font-specification:'Dali Bold';text-align:end;letter-spacing:0px;word-spacing:0px;text-anchor:end;fill:#adeb00;fill-opacity:0.92549;stroke:none" />
<rect
style="fill:#ffffff;fill-opacity:0.155556;stroke:none"
id="rect4117-2"
width="92.534195"
height="0.89840192"
x="52.729321"
y="906.96948"
inkscape:export-filename="./logo.png"
inkscape:export-xdpi="339.49112"
inkscape:export-ydpi="339.49112" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;line-height:0%;font-family:sans-serif;-inkscape-font-specification:Sans;text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ffffff;fill-opacity:0.155556;stroke:none"
x="98.561401"
y="926.07642"
id="text4119-9"
inkscape:export-filename="./logo.png"
inkscape:export-xdpi="339.49112"
inkscape:export-ydpi="339.49112"><tspan
sodipodi:role="line"
x="98.561401"
y="926.07642"
id="tspan4123-1"
style="font-size:9.63235px;line-height:1.25;font-family:sans-serif">NEW MEDIA</tspan><tspan
sodipodi:role="line"
x="98.561401"
y="938.11688"
id="tspan4127-5"
style="font-size:9.63235px;line-height:1.25;font-family:sans-serif">ARTS</tspan></text>
</g>
<text
id="text1065"
y="305.05844"
x="680.3562"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:119.876px;line-height:1.25;font-family:'Rainy Wind';-inkscape-font-specification:'Rainy Wind';text-align:center;text-anchor:middle;fill:#5a5a5a;fill-opacity:1;stroke:none;stroke-width:2.9969"
xml:space="preserve"><tspan
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Rainy Wind';-inkscape-font-specification:'Rainy Wind';text-align:center;text-anchor:middle;fill:#5a5a5a;fill-opacity:1;stroke-width:2.9969"
y="305.05844"
x="680.3562"
id="tspan1063"
sodipodi:role="line">L'orma</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:36.6341px;line-height:0;font-family:Steiner;-inkscape-font-specification:Steiner;fill:#5a5a5a;fill-opacity:1;stroke:none;stroke-width:0.915853"
x="682.66663"
y="733.49017"
id="text1065-4"><tspan
sodipodi:role="line"
id="tspan1063-9"
x="682.66663"
y="733.49017"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:1.25;font-family:Steiner;-inkscape-font-specification:Steiner;text-align:center;text-anchor:middle;fill:#5a5a5a;fill-opacity:1;stroke-width:0.915853">Powered by Dslak</tspan><tspan
id="tspan1085"
sodipodi:role="line"
x="682.66663"
y="762.07941"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:20px;line-height:1.05;font-family:Steiner;-inkscape-font-specification:Steiner;text-align:center;text-anchor:middle;fill:#5a5a5a;fill-opacity:1;stroke-width:0.915853">www.dslak.it</tspan></text>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 20 KiB

Loading…
Cancel
Save