add clip_icon svgs, tweak edl frame_align, fixes for plugin_sets in move_group, fix...
authorGood Guy <good1.2guy@gmail.com>
Fri, 28 Dec 2018 04:41:04 +0000 (21:41 -0700)
committerGood Guy <good1.2guy@gmail.com>
Fri, 28 Dec 2018 04:41:04 +0000 (21:41 -0700)
cinelerra-5.1/cinelerra/edl.C
cinelerra-5.1/cinelerra/mwindowedit.C
cinelerra-5.1/doc/shortcuts.html
cinelerra-5.1/plugins/theme_blond/data/clip_icon.svg [new file with mode: 0644]
cinelerra-5.1/plugins/theme_blond_cv/data/clip_icon.svg [new file with mode: 0644]
cinelerra-5.1/plugins/theme_blue/data/clip_icon.svg [new file with mode: 0644]
cinelerra-5.1/plugins/theme_hulk/data/clip_icon.svg [new file with mode: 0644]
cinelerra-5.1/plugins/theme_pinklady/data/clip_icon.svg [new file with mode: 0644]
cinelerra-5.1/plugins/theme_suv/data/clip_icon.svg [new file with mode: 0644]
cinelerra-5.1/plugins/theme_unflat/data/clip_icon.svg [new file with mode: 0644]

index 5f23b1b1cd945c4ecc045a627495074b9bc140cf..604dff51890a767335bae43b3d2b65a77cbf23f8 100644 (file)
@@ -49,6 +49,7 @@
 #include "playbackconfig.h"
 #include "playabletracks.h"
 #include "plugin.h"
+#include "pluginset.h"
 #include "preferences.h"
 #include "recordconfig.h"
 #include "recordlabel.h"
@@ -798,18 +799,36 @@ void EDL::delete_edits(ArrayList<Edit*> *edits, int collapse)
 {
        if( session->labels_follow_edits )
                delete_edit_labels(edits, collapse);
+       typedef struct { Track *track; int64_t start, end; } Zone;
+       ArrayList<Zone> zones;
        for( int i=0; i<edits->size(); ++i ) {
                Edit *edit = edits->get(i);
                Track *track = edit->track;
                int64_t start = edit->startproject;
-               int end = start + edit->length;
-               track->clear(start, end, 1, 0,
-                       session->plugins_follow_edits,
-                       session->autos_follow_edits, 0);
+               int64_t end = start + edit->length;
+               Zone &zone = zones.append();
+               zone.track = track;  zone.start = start;  zone.end = end;
+               if( session->autos_follow_edits ) {
+                       track->automation->clear(start, end, 0, collapse);
+               }
+               if( session->plugins_follow_edits ) {
+                       for( int k=0; k<track->plugin_set.size(); ++k ) {
+                               PluginSet *plugin_set = track->plugin_set[k];
+                               plugin_set->clear(start, end, 1);
+                               if( !collapse )
+                                       plugin_set->paste_silence(start, end);
+                       }
+               }
+               track->optimize();
+       }
+       for( int i=0; i<zones.size(); ++i ) {
+               Zone &zone = zones[i];
+               Track *track = zone.track;
+               int64_t start = zone.start, end = zone.end;
+               track->edits->clear(start, end);
                if( !collapse )
-                       track->paste_silence(start, end,
-                               session->plugins_follow_edits,
-                               session->autos_follow_edits);
+                       track->edits->paste_silence(start, end);
+               track->optimize();
        }
        optimize();
 }
@@ -1276,13 +1295,15 @@ void EDL::get_shared_tracks(Track *track,
        }
 }
 
-// aligned frame time
+// aligned frame time, account for sample truncation
 double EDL::frame_align(double position, int round)
 {
-       double frame_pos = position * session->frame_rate;
-       frame_pos = (int64_t)(frame_pos + (round ? 0.5 : 1e-6));
-       position = frame_pos / session->frame_rate;
-       return position;
+       if( !round && session->sample_rate > 0 ) {
+               int64_t sample_pos = position * session->sample_rate;
+               position = (sample_pos+2.) / session->sample_rate;
+       }
+       int64_t frame_pos = (position * session->frame_rate + (round ? 0.5 : 1e-6));
+       return frame_pos / session->frame_rate;
 }
 
 // Convert position to frames if alignment is enabled.
index a1e3d438a3af191c79754874cb2758bcd5d66ffc..bf57912ff612df7db42e3a406d5219da6946fd42 100644 (file)
@@ -1023,7 +1023,7 @@ EDL *MWindow::selected_edits_to_clip(int packed,
                                                new_track->plugin_set[i] = new_plugin_set;
                                        }
                                        Plugin *plugin = (Plugin*)plugin_set->first;
-                                       int64_t startplugin = 0;
+                                       int64_t startplugin = new_plugin_set->length();
                                        for( ; plugin ; plugin=(Plugin*)plugin->next ) {
                                                if( plugin->silence() ) continue;
                                                int64_t plugin_start_pos = plugin->startproject;
@@ -1156,31 +1156,9 @@ void MWindow::move_edits(ArrayList<Edit*> *edits,
 void MWindow::move_group(EDL *group, Track *first_track, double position)
 {
        undo->update_undo_before();
-       if( edl->session->labels_follow_edits ) {
-               ArrayList<Edit *>edits;
-               edl->tracks->get_selected_edits(&edits);
-               double dist = position - session->drag_group_position;
-               edl->move_edit_labels(&edits, dist);
-       }
-       for( Track *track=edl->tracks->first; track; track=track->next ) {
-               if( !track->record ) continue;
-               Edit *edit = track->edits->first;
-               for( Edit *next=0; edit; edit=next ) {
-                       next = edit->next;
-                       if( !edit->is_selected ) continue;
-                       edit->is_selected = 0;
-                       edit->group_id = 0;
-                       int64_t start = edit->startproject;
-                       int64_t end = start + edit->length;
-                       track->clear(start, end, 1, 0,
-                               edl->session->plugins_follow_edits,
-                               edl->session->autos_follow_edits, 0);
-                       track->paste_silence(start, end,
-                               edl->session->plugins_follow_edits,
-                                       edl->session->autos_follow_edits);
-                       next = track->edits->first;
-               }
-       }
+       ArrayList<Edit *>edits;
+       edl->tracks->get_selected_edits(&edits);
+       edl->delete_edits(&edits, 0);
        Track *src = group->tracks->first;
        for( Track *track=first_track; track && src; track=track->next ) {
                if( !track->record ) continue;
@@ -1212,7 +1190,7 @@ void MWindow::move_group(EDL *group, Track *first_track, double position)
                        for( int i=0; i<src->plugin_set.size(); ++i ) {
                                PluginSet *plugin_set = src->plugin_set[i];
                                if( !plugin_set ) continue;
-                               while( track->plugin_set.size() < i )
+                               while( i >= track->plugin_set.size() )
                                        track->plugin_set.append(0);
                                PluginSet *dst_plugin_set = track->plugin_set[i];
                                if( !dst_plugin_set ) {
index 1a39fea10bba75df18a0dd4317053a07cd6fb437..9cc4ab5aee6b351ea1a84fbfcd6b92a476d1a0fd 100644 (file)
                 <td align="left"><font face="Liberation Serif" size=4>Drag</font></td>
                 <td align="left"><font face="Liberation Serif" size=4>Clip drag</font></td>
         </tr>
+        <tr>
+                <td height="26" align="left"><font face="Liberation Serif" size=4><br></font></td>
+                <td align="left"><font face="Liberation Serif" size=4>/font></td>
+                <td align="left"><font face="Liberation Serif" size=4>Drag</font></td>
+                <td align="left"><font face="Liberation Serif" size=4>Drag unselected edit under cursor</font></td>
+        </tr>
         <tr>
                 <td height="26" align="left"><font face="Liberation Serif" size=4><br></font></td>
                 <td align="left"><font face="Liberation Serif" size=4><br></font></td>
diff --git a/cinelerra-5.1/plugins/theme_blond/data/clip_icon.svg b/cinelerra-5.1/plugins/theme_blond/data/clip_icon.svg
new file mode 100644 (file)
index 0000000..b8bc9fa
--- /dev/null
@@ -0,0 +1,1092 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   enable-background="new 0 0 299.26 339.88"
+   viewBox="0 0 47.999998 54.515269"
+   version="1.1"
+   id="svg124"
+   sodipodi:docname="move_icon_1.1.svg"
+   inkscape:version="0.92.3 (2405546, 2018-03-11)"
+   inkscape:export-filename="/home/spc/Bilder/Cinfinity_new_buttons/move-app-icon.png"
+   inkscape:export-xdpi="96"
+   inkscape:export-ydpi="96">
+  <title
+     id="title9470">Cinelerra GG Infinity move icon</title>
+  <metadata
+     id="metadata128">
+    <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>Cinelerra GG Infinity move icon</dc:title>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Sam D.</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:publisher>
+          <cc:Agent>
+            <dc:title>Sam D.</dc:title>
+          </cc:Agent>
+        </dc:publisher>
+        <dc:language>En</dc:language>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>Cinelerra GG Infinity move icon</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <dc:description>Cinelerra GG Infinity move icon</dc:description>
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#000000"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="2560"
+     inkscape:window-height="1369"
+     id="namedview126"
+     showgrid="false"
+     inkscape:snap-global="true"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:snap-bbox="true"
+     inkscape:bbox-paths="true"
+     inkscape:bbox-nodes="true"
+     inkscape:snap-bbox-edge-midpoints="true"
+     inkscape:snap-bbox-midpoints="true"
+     inkscape:object-paths="true"
+     inkscape:snap-intersection-paths="true"
+     inkscape:snap-smooth-nodes="true"
+     inkscape:snap-midpoints="true"
+     inkscape:pagecheckerboard="true"
+     inkscape:zoom="16"
+     inkscape:cx="29.021926"
+     inkscape:cy="24.297629"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg124"
+     inkscape:snap-page="true">
+    <sodipodi:guide
+       position="5.9999997,27.257635"
+       orientation="1,0"
+       id="guide9367"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="41.999998,27.257635"
+       orientation="1,0"
+       id="guide9369"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="23.999999,41.543049"
+       orientation="1,0"
+       id="guide9371"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="21.743533,47.70086"
+       orientation="0,1"
+       id="guide3370"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="19.180271,6.8144086"
+       orientation="0,1"
+       id="guide3372"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="23.999999,27.257635"
+       orientation="0,1"
+       id="guide7557"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+  </sodipodi:namedview>
+  <defs
+     id="defs106">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3382">
+      <stop
+         style="stop-color:#ff3434;stop-opacity:1"
+         offset="0"
+         id="stop3378" />
+      <stop
+         style="stop-color:#f2ed00;stop-opacity:1"
+         offset="1"
+         id="stop3380" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3259"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         style="stop-color:#ff7233;stop-opacity:1"
+         stop-color="#f93"
+         offset="0"
+         id="stop3247" />
+      <stop
+         style="stop-color:#fdf931;stop-opacity:1"
+         stop-color="#fd9731"
+         offset="0.13612744"
+         id="stop3249" />
+      <stop
+         style="stop-color:#2af62e;stop-opacity:1"
+         stop-color="#f6902a"
+         offset="0.34990042"
+         id="stop3251" />
+      <stop
+         style="stop-color:#338dff;stop-opacity:1"
+         stop-color="#eb851f"
+         offset="0.50524527"
+         id="stop3253" />
+      <stop
+         style="stop-color:#da0eae;stop-opacity:1"
+         stop-color="#da740e"
+         offset="0.80296719"
+         id="stop3255" />
+      <stop
+         style="stop-color:#cc0033;stop-opacity:1"
+         stop-color="#c60"
+         offset="1"
+         id="stop3257" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2579"
+       osb:paint="solid">
+      <stop
+         style="stop-color:#464646;stop-opacity:1;"
+         offset="0"
+         id="stop2577" />
+    </linearGradient>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="202.56"
+       y1="233.06"
+       x2="209.19"
+       x1="134.61"
+       id="linearGradient1109">
+      <stop
+         id="stop1097"
+         offset="0"
+         stop-color="#f93"
+         style="stop-color:#ff7233;stop-opacity:1" />
+      <stop
+         id="stop1099"
+         offset="0.1840131"
+         stop-color="#fd9731"
+         style="stop-color:#fdf931;stop-opacity:1" />
+      <stop
+         id="stop1101"
+         offset="0.37539905"
+         stop-color="#f6902a"
+         style="stop-color:#2af62e;stop-opacity:1" />
+      <stop
+         id="stop1103"
+         offset="0.59079379"
+         stop-color="#eb851f"
+         style="stop-color:#338dff;stop-opacity:1" />
+      <stop
+         id="stop1105"
+         offset="0.80296719"
+         stop-color="#da740e"
+         style="stop-color:#da0eae;stop-opacity:1" />
+      <stop
+         id="stop1107"
+         offset="1"
+         stop-color="#c60"
+         style="stop-color:#cc0033;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="h"
+       x1="161.42"
+       x2="83.68"
+       y1="91.501999"
+       y2="123.7"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#099"
+         offset="0"
+         id="stop2" />
+      <stop
+         stop-color="#009797"
+         offset=".5149"
+         id="stop4" />
+      <stop
+         stop-color="#009090"
+         offset=".7003"
+         id="stop6" />
+      <stop
+         stop-color="#008585"
+         offset=".8325"
+         id="stop8" />
+      <stop
+         stop-color="#007474"
+         offset=".9387"
+         id="stop10" />
+      <stop
+         stop-color="#066"
+         offset="1"
+         id="stop12" />
+    </linearGradient>
+    <linearGradient
+       id="g"
+       x1="107.34"
+       x2="74.809998"
+       y1="100.46"
+       y2="178.99001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#06c"
+         offset="0"
+         id="stop15" />
+      <stop
+         stop-color="#0064ca"
+         offset=".5149"
+         id="stop17" />
+      <stop
+         stop-color="#005dc3"
+         offset=".7003"
+         id="stop19" />
+      <stop
+         stop-color="#0052b8"
+         offset=".8325"
+         id="stop21" />
+      <stop
+         stop-color="#0041a7"
+         offset=".9387"
+         id="stop23" />
+      <stop
+         stop-color="#039"
+         offset="1"
+         id="stop25" />
+    </linearGradient>
+    <linearGradient
+       id="f"
+       x1="86.549004"
+       x2="164.52"
+       y1="204.21001"
+       y2="235.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#c33"
+         offset="0"
+         id="stop28" />
+      <stop
+         stop-color="#ca3131"
+         offset=".5149"
+         id="stop30" />
+      <stop
+         stop-color="#c32a2a"
+         offset=".7003"
+         id="stop32" />
+      <stop
+         stop-color="#b81f1f"
+         offset=".8325"
+         id="stop34" />
+      <stop
+         stop-color="#a70e0e"
+         offset=".9387"
+         id="stop36" />
+      <stop
+         stop-color="#900"
+         offset="1"
+         id="stop38" />
+    </linearGradient>
+    <linearGradient
+       id="e"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#f93"
+         offset="0"
+         id="stop41" />
+      <stop
+         stop-color="#fd9731"
+         offset=".5149"
+         id="stop43" />
+      <stop
+         stop-color="#f6902a"
+         offset=".7003"
+         id="stop45" />
+      <stop
+         stop-color="#eb851f"
+         offset=".8325"
+         id="stop47" />
+      <stop
+         stop-color="#da740e"
+         offset=".9387"
+         id="stop49" />
+      <stop
+         stop-color="#c60"
+         offset="1"
+         id="stop51" />
+    </linearGradient>
+    <linearGradient
+       id="d"
+       x1="208.17"
+       x2="123.71"
+       y1="122.97"
+       y2="87.987999"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#093"
+         offset="0"
+         id="stop54" />
+      <stop
+         stop-color="#009731"
+         offset=".5149"
+         id="stop56" />
+      <stop
+         stop-color="#00902a"
+         offset=".7003"
+         id="stop58" />
+      <stop
+         stop-color="#00851f"
+         offset=".8325"
+         id="stop60" />
+      <stop
+         stop-color="#00740e"
+         offset=".9387"
+         id="stop62" />
+      <stop
+         stop-color="#060"
+         offset="1"
+         id="stop64" />
+    </linearGradient>
+    <linearGradient
+       id="c"
+       x1="186.36"
+       x2="219.41"
+       y1="222.75"
+       y2="147.33"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#fc0"
+         offset="0"
+         id="stop67" />
+      <stop
+         stop-color="#fdca00"
+         offset=".5149"
+         id="stop69" />
+      <stop
+         stop-color="#f6c300"
+         offset=".7003"
+         id="stop71" />
+      <stop
+         stop-color="#ebb800"
+         offset=".8325"
+         id="stop73" />
+      <stop
+         stop-color="#daa700"
+         offset=".9387"
+         id="stop75" />
+      <stop
+         stop-color="#c90"
+         offset="1"
+         id="stop77" />
+    </linearGradient>
+    <linearGradient
+       id="b"
+       x1="218.00999"
+       x2="187.5"
+       y1="177.11"
+       y2="103.38"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#9c3"
+         offset="0"
+         id="stop80" />
+      <stop
+         stop-color="#97ca31"
+         offset=".5149"
+         id="stop82" />
+      <stop
+         stop-color="#90c32a"
+         offset=".7003"
+         id="stop84" />
+      <stop
+         stop-color="#85b81f"
+         offset=".8325"
+         id="stop86" />
+      <stop
+         stop-color="#74a70e"
+         offset=".9387"
+         id="stop88" />
+      <stop
+         stop-color="#690"
+         offset="1"
+         id="stop90" />
+    </linearGradient>
+    <linearGradient
+       id="a"
+       x1="75.961998"
+       x2="107.32"
+       y1="147.89999"
+       y2="226.71001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#939"
+         offset="0"
+         id="stop93" />
+      <stop
+         stop-color="#973197"
+         offset=".5149"
+         id="stop95" />
+      <stop
+         stop-color="#902a90"
+         offset=".7003"
+         id="stop97" />
+      <stop
+         stop-color="#851f85"
+         offset=".8325"
+         id="stop99" />
+      <stop
+         stop-color="#740e74"
+         offset=".9387"
+         id="stop101" />
+      <stop
+         stop-color="#606"
+         offset="1"
+         id="stop103" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath38">
+      <path
+         d="M 0,520 H 520 V 0 H 0 Z"
+         id="path36"
+         inkscape:connector-curvature="0" />
+    </clipPath>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1109"
+       id="linearGradient1095-2"
+       x1="15.731466"
+       y1="34.984047"
+       x2="34.50996"
+       y2="26.098288"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.77420991,0,0,0.77420991,16.41646,5.9424217)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1109"
+       id="linearGradient1728"
+       gradientUnits="userSpaceOnUse"
+       x1="6.6753492"
+       y1="39.298244"
+       x2="32.963676"
+       y2="22.047657" />
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="g-1"
+       x1="107.34"
+       x2="74.809998"
+       y1="100.46"
+       y2="178.99001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#06c"
+         offset="0"
+         id="stop15-9" />
+      <stop
+         stop-color="#0064ca"
+         offset=".5149"
+         id="stop17-4" />
+      <stop
+         stop-color="#005dc3"
+         offset=".7003"
+         id="stop19-7" />
+      <stop
+         stop-color="#0052b8"
+         offset=".8325"
+         id="stop21-8" />
+      <stop
+         stop-color="#0041a7"
+         offset=".9387"
+         id="stop23-4" />
+      <stop
+         stop-color="#039"
+         offset="1"
+         id="stop25-5" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="a-3"
+       x1="75.961998"
+       x2="107.32"
+       y1="147.89999"
+       y2="226.71001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#939"
+         offset="0"
+         id="stop93-6" />
+      <stop
+         stop-color="#973197"
+         offset=".5149"
+         id="stop95-7" />
+      <stop
+         stop-color="#902a90"
+         offset=".7003"
+         id="stop97-5" />
+      <stop
+         stop-color="#851f85"
+         offset=".8325"
+         id="stop99-3" />
+      <stop
+         stop-color="#740e74"
+         offset=".9387"
+         id="stop101-5" />
+      <stop
+         stop-color="#606"
+         offset="1"
+         id="stop103-6" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="f-7"
+       x1="86.549004"
+       x2="164.52"
+       y1="204.21001"
+       y2="235.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#c33"
+         offset="0"
+         id="stop28-3" />
+      <stop
+         stop-color="#ca3131"
+         offset=".5149"
+         id="stop30-6" />
+      <stop
+         stop-color="#c32a2a"
+         offset=".7003"
+         id="stop32-1" />
+      <stop
+         stop-color="#b81f1f"
+         offset=".8325"
+         id="stop34-2" />
+      <stop
+         stop-color="#a70e0e"
+         offset=".9387"
+         id="stop36-9" />
+      <stop
+         stop-color="#900"
+         offset="1"
+         id="stop38-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="e-7"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#f93"
+         offset="0"
+         id="stop41-5" />
+      <stop
+         stop-color="#fd9731"
+         offset=".5149"
+         id="stop43-9" />
+      <stop
+         stop-color="#f6902a"
+         offset=".7003"
+         id="stop45-2" />
+      <stop
+         stop-color="#eb851f"
+         offset=".8325"
+         id="stop47-2" />
+      <stop
+         stop-color="#da740e"
+         offset=".9387"
+         id="stop49-8" />
+      <stop
+         stop-color="#c60"
+         offset="1"
+         id="stop51-9" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="c-3"
+       x1="186.36"
+       x2="219.41"
+       y1="222.75"
+       y2="147.33"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#fc0"
+         offset="0"
+         id="stop67-6" />
+      <stop
+         stop-color="#fdca00"
+         offset=".5149"
+         id="stop69-0" />
+      <stop
+         stop-color="#f6c300"
+         offset=".7003"
+         id="stop71-6" />
+      <stop
+         stop-color="#ebb800"
+         offset=".8325"
+         id="stop73-2" />
+      <stop
+         stop-color="#daa700"
+         offset=".9387"
+         id="stop75-6" />
+      <stop
+         stop-color="#c90"
+         offset="1"
+         id="stop77-1" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="b-2"
+       x1="218.00999"
+       x2="187.5"
+       y1="177.11"
+       y2="103.38"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#9c3"
+         offset="0"
+         id="stop80-9" />
+      <stop
+         stop-color="#97ca31"
+         offset=".5149"
+         id="stop82-1" />
+      <stop
+         stop-color="#90c32a"
+         offset=".7003"
+         id="stop84-2" />
+      <stop
+         stop-color="#85b81f"
+         offset=".8325"
+         id="stop86-7" />
+      <stop
+         stop-color="#74a70e"
+         offset=".9387"
+         id="stop88-0" />
+      <stop
+         stop-color="#690"
+         offset="1"
+         id="stop90-9" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="d-8"
+       x1="208.17"
+       x2="123.71"
+       y1="122.97"
+       y2="87.987999"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#093"
+         offset="0"
+         id="stop54-7" />
+      <stop
+         stop-color="#009731"
+         offset=".5149"
+         id="stop56-9" />
+      <stop
+         stop-color="#00902a"
+         offset=".7003"
+         id="stop58-2" />
+      <stop
+         stop-color="#00851f"
+         offset=".8325"
+         id="stop60-0" />
+      <stop
+         stop-color="#00740e"
+         offset=".9387"
+         id="stop62-2" />
+      <stop
+         stop-color="#060"
+         offset="1"
+         id="stop64-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="h-0"
+       x1="161.42"
+       x2="83.68"
+       y1="91.501999"
+       y2="123.7"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#099"
+         offset="0"
+         id="stop2-3" />
+      <stop
+         stop-color="#009797"
+         offset=".5149"
+         id="stop4-6" />
+      <stop
+         stop-color="#009090"
+         offset=".7003"
+         id="stop6-1" />
+      <stop
+         stop-color="#008585"
+         offset=".8325"
+         id="stop8-0" />
+      <stop
+         stop-color="#007474"
+         offset=".9387"
+         id="stop10-6" />
+      <stop
+         stop-color="#066"
+         offset="1"
+         id="stop12-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="g-1-1"
+       x1="107.34"
+       x2="74.809998"
+       y1="100.46"
+       y2="178.99001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#06c"
+         offset="0"
+         id="stop15-9-0" />
+      <stop
+         stop-color="#0064ca"
+         offset=".5149"
+         id="stop17-4-6" />
+      <stop
+         stop-color="#005dc3"
+         offset=".7003"
+         id="stop19-7-1" />
+      <stop
+         stop-color="#0052b8"
+         offset=".8325"
+         id="stop21-8-5" />
+      <stop
+         stop-color="#0041a7"
+         offset=".9387"
+         id="stop23-4-9" />
+      <stop
+         stop-color="#039"
+         offset="1"
+         id="stop25-5-4" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="a-3-9"
+       x1="75.961998"
+       x2="107.32"
+       y1="147.89999"
+       y2="226.71001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#939"
+         offset="0"
+         id="stop93-6-0" />
+      <stop
+         stop-color="#973197"
+         offset=".5149"
+         id="stop95-7-9" />
+      <stop
+         stop-color="#902a90"
+         offset=".7003"
+         id="stop97-5-1" />
+      <stop
+         stop-color="#851f85"
+         offset=".8325"
+         id="stop99-3-7" />
+      <stop
+         stop-color="#740e74"
+         offset=".9387"
+         id="stop101-5-7" />
+      <stop
+         stop-color="#606"
+         offset="1"
+         id="stop103-6-1" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="f-7-1"
+       x1="86.549004"
+       x2="164.52"
+       y1="204.21001"
+       y2="235.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#c33"
+         offset="0"
+         id="stop28-3-5" />
+      <stop
+         stop-color="#ca3131"
+         offset=".5149"
+         id="stop30-6-9" />
+      <stop
+         stop-color="#c32a2a"
+         offset=".7003"
+         id="stop32-1-7" />
+      <stop
+         stop-color="#b81f1f"
+         offset=".8325"
+         id="stop34-2-7" />
+      <stop
+         stop-color="#a70e0e"
+         offset=".9387"
+         id="stop36-9-6" />
+      <stop
+         stop-color="#900"
+         offset="1"
+         id="stop38-3-7" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="e-7-3"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#f93"
+         offset="0"
+         id="stop41-5-6" />
+      <stop
+         stop-color="#fd9731"
+         offset=".5149"
+         id="stop43-9-5" />
+      <stop
+         stop-color="#f6902a"
+         offset=".7003"
+         id="stop45-2-6" />
+      <stop
+         stop-color="#eb851f"
+         offset=".8325"
+         id="stop47-2-3" />
+      <stop
+         stop-color="#da740e"
+         offset=".9387"
+         id="stop49-8-9" />
+      <stop
+         stop-color="#c60"
+         offset="1"
+         id="stop51-9-4" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="c-3-8"
+       x1="186.36"
+       x2="219.41"
+       y1="222.75"
+       y2="147.33"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#fc0"
+         offset="0"
+         id="stop67-6-1" />
+      <stop
+         stop-color="#fdca00"
+         offset=".5149"
+         id="stop69-0-2" />
+      <stop
+         stop-color="#f6c300"
+         offset=".7003"
+         id="stop71-6-9" />
+      <stop
+         stop-color="#ebb800"
+         offset=".8325"
+         id="stop73-2-3" />
+      <stop
+         stop-color="#daa700"
+         offset=".9387"
+         id="stop75-6-9" />
+      <stop
+         stop-color="#c90"
+         offset="1"
+         id="stop77-1-0" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="b-2-8"
+       x1="218.00999"
+       x2="187.5"
+       y1="177.11"
+       y2="103.38"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#9c3"
+         offset="0"
+         id="stop80-9-8" />
+      <stop
+         stop-color="#97ca31"
+         offset=".5149"
+         id="stop82-1-5" />
+      <stop
+         stop-color="#90c32a"
+         offset=".7003"
+         id="stop84-2-0" />
+      <stop
+         stop-color="#85b81f"
+         offset=".8325"
+         id="stop86-7-9" />
+      <stop
+         stop-color="#74a70e"
+         offset=".9387"
+         id="stop88-0-6" />
+      <stop
+         stop-color="#690"
+         offset="1"
+         id="stop90-9-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="d-8-8"
+       x1="208.17"
+       x2="123.71"
+       y1="122.97"
+       y2="87.987999"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#093"
+         offset="0"
+         id="stop54-7-5" />
+      <stop
+         stop-color="#009731"
+         offset=".5149"
+         id="stop56-9-6" />
+      <stop
+         stop-color="#00902a"
+         offset=".7003"
+         id="stop58-2-1" />
+      <stop
+         stop-color="#00851f"
+         offset=".8325"
+         id="stop60-0-1" />
+      <stop
+         stop-color="#00740e"
+         offset=".9387"
+         id="stop62-2-5" />
+      <stop
+         stop-color="#060"
+         offset="1"
+         id="stop64-3-9" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="h-0-8"
+       x1="161.42"
+       x2="83.68"
+       y1="91.501999"
+       y2="123.7"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#099"
+         offset="0"
+         id="stop2-3-4" />
+      <stop
+         stop-color="#009797"
+         offset=".5149"
+         id="stop4-6-8" />
+      <stop
+         stop-color="#009090"
+         offset=".7003"
+         id="stop6-1-1" />
+      <stop
+         stop-color="#008585"
+         offset=".8325"
+         id="stop8-0-0" />
+      <stop
+         stop-color="#007474"
+         offset=".9387"
+         id="stop10-6-3" />
+      <stop
+         stop-color="#066"
+         offset="1"
+         id="stop12-3-0" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3382"
+       id="linearGradient3384"
+       x1="12.976564"
+       y1="27.989347"
+       x2="43.307491"
+       y2="27.856308"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-75.188904,26.100287)" />
+  </defs>
+  <path
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.84922767"
+     d="M 12.703125 20.558594 L 0 24 L 12.710938 27.443359 A 11.8125 11.8125 0 0 1 12.238281 25 L 18.03125 25 A 6.0520388 6.0520388 0 0 1 17.947266 24 A 6.0520388 6.0520388 0 0 1 18.037109 23 L 12.238281 23 A 11.8125 11.8125 0 0 1 12.703125 20.558594 z "
+     transform="matrix(1.1357348,0,0,1.1357348,-3.2576355,0)"
+     id="path2910"
+     inkscape:label="left" />
+  <path
+     inkscape:connector-curvature="0"
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.10023212"
+     d="m 36.830253,23.349109 14.42738,3.908525 -14.436253,3.910742 a 13.415867,13.415867 0 0 0 0.536812,-2.775008 h -6.579275 a 6.8735109,6.8735109 0 0 0 0.09538,-1.135734 6.8735109,6.8735109 0 0 0 -0.102035,-1.135735 h 6.58593 a 13.415867,13.415867 0 0 0 -0.527939,-2.77279 z"
+     id="path2910-3"
+     inkscape:label="right" />
+  <path
+     inkscape:connector-curvature="0"
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.10023212"
+     d="m 20.091475,40.087889 3.908524,14.42738 3.910743,-14.436254 a 13.415867,13.415867 0 0 1 -2.775008,0.536813 v -6.579276 a 6.8735109,6.8735109 0 0 1 -1.135735,0.09538 6.8735109,6.8735109 0 0 1 -1.135735,-0.102034 v 6.58593 a 13.415867,13.415867 0 0 1 -2.772789,-0.527939 z"
+     id="path2910-6"
+     inkscape:label="down" />
+  <path
+     inkscape:connector-curvature="0"
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.10023212"
+     d="M 20.090365,14.42738 23.998889,0 27.909632,14.436254 a 13.415867,13.415867 0 0 0 -2.775008,-0.536813 v 6.579276 a 6.8735109,6.8735109 0 0 0 -1.135734,-0.09538 6.8735109,6.8735109 0 0 0 -1.135735,0.102034 v -6.58593 a 13.415867,13.415867 0 0 0 -2.77279,0.527939 z"
+     id="path2910-6-9"
+     inkscape:label="up" />
+</svg>
diff --git a/cinelerra-5.1/plugins/theme_blond_cv/data/clip_icon.svg b/cinelerra-5.1/plugins/theme_blond_cv/data/clip_icon.svg
new file mode 100644 (file)
index 0000000..b8bc9fa
--- /dev/null
@@ -0,0 +1,1092 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   enable-background="new 0 0 299.26 339.88"
+   viewBox="0 0 47.999998 54.515269"
+   version="1.1"
+   id="svg124"
+   sodipodi:docname="move_icon_1.1.svg"
+   inkscape:version="0.92.3 (2405546, 2018-03-11)"
+   inkscape:export-filename="/home/spc/Bilder/Cinfinity_new_buttons/move-app-icon.png"
+   inkscape:export-xdpi="96"
+   inkscape:export-ydpi="96">
+  <title
+     id="title9470">Cinelerra GG Infinity move icon</title>
+  <metadata
+     id="metadata128">
+    <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>Cinelerra GG Infinity move icon</dc:title>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Sam D.</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:publisher>
+          <cc:Agent>
+            <dc:title>Sam D.</dc:title>
+          </cc:Agent>
+        </dc:publisher>
+        <dc:language>En</dc:language>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>Cinelerra GG Infinity move icon</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <dc:description>Cinelerra GG Infinity move icon</dc:description>
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#000000"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="2560"
+     inkscape:window-height="1369"
+     id="namedview126"
+     showgrid="false"
+     inkscape:snap-global="true"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:snap-bbox="true"
+     inkscape:bbox-paths="true"
+     inkscape:bbox-nodes="true"
+     inkscape:snap-bbox-edge-midpoints="true"
+     inkscape:snap-bbox-midpoints="true"
+     inkscape:object-paths="true"
+     inkscape:snap-intersection-paths="true"
+     inkscape:snap-smooth-nodes="true"
+     inkscape:snap-midpoints="true"
+     inkscape:pagecheckerboard="true"
+     inkscape:zoom="16"
+     inkscape:cx="29.021926"
+     inkscape:cy="24.297629"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg124"
+     inkscape:snap-page="true">
+    <sodipodi:guide
+       position="5.9999997,27.257635"
+       orientation="1,0"
+       id="guide9367"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="41.999998,27.257635"
+       orientation="1,0"
+       id="guide9369"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="23.999999,41.543049"
+       orientation="1,0"
+       id="guide9371"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="21.743533,47.70086"
+       orientation="0,1"
+       id="guide3370"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="19.180271,6.8144086"
+       orientation="0,1"
+       id="guide3372"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="23.999999,27.257635"
+       orientation="0,1"
+       id="guide7557"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+  </sodipodi:namedview>
+  <defs
+     id="defs106">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3382">
+      <stop
+         style="stop-color:#ff3434;stop-opacity:1"
+         offset="0"
+         id="stop3378" />
+      <stop
+         style="stop-color:#f2ed00;stop-opacity:1"
+         offset="1"
+         id="stop3380" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3259"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         style="stop-color:#ff7233;stop-opacity:1"
+         stop-color="#f93"
+         offset="0"
+         id="stop3247" />
+      <stop
+         style="stop-color:#fdf931;stop-opacity:1"
+         stop-color="#fd9731"
+         offset="0.13612744"
+         id="stop3249" />
+      <stop
+         style="stop-color:#2af62e;stop-opacity:1"
+         stop-color="#f6902a"
+         offset="0.34990042"
+         id="stop3251" />
+      <stop
+         style="stop-color:#338dff;stop-opacity:1"
+         stop-color="#eb851f"
+         offset="0.50524527"
+         id="stop3253" />
+      <stop
+         style="stop-color:#da0eae;stop-opacity:1"
+         stop-color="#da740e"
+         offset="0.80296719"
+         id="stop3255" />
+      <stop
+         style="stop-color:#cc0033;stop-opacity:1"
+         stop-color="#c60"
+         offset="1"
+         id="stop3257" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2579"
+       osb:paint="solid">
+      <stop
+         style="stop-color:#464646;stop-opacity:1;"
+         offset="0"
+         id="stop2577" />
+    </linearGradient>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="202.56"
+       y1="233.06"
+       x2="209.19"
+       x1="134.61"
+       id="linearGradient1109">
+      <stop
+         id="stop1097"
+         offset="0"
+         stop-color="#f93"
+         style="stop-color:#ff7233;stop-opacity:1" />
+      <stop
+         id="stop1099"
+         offset="0.1840131"
+         stop-color="#fd9731"
+         style="stop-color:#fdf931;stop-opacity:1" />
+      <stop
+         id="stop1101"
+         offset="0.37539905"
+         stop-color="#f6902a"
+         style="stop-color:#2af62e;stop-opacity:1" />
+      <stop
+         id="stop1103"
+         offset="0.59079379"
+         stop-color="#eb851f"
+         style="stop-color:#338dff;stop-opacity:1" />
+      <stop
+         id="stop1105"
+         offset="0.80296719"
+         stop-color="#da740e"
+         style="stop-color:#da0eae;stop-opacity:1" />
+      <stop
+         id="stop1107"
+         offset="1"
+         stop-color="#c60"
+         style="stop-color:#cc0033;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="h"
+       x1="161.42"
+       x2="83.68"
+       y1="91.501999"
+       y2="123.7"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#099"
+         offset="0"
+         id="stop2" />
+      <stop
+         stop-color="#009797"
+         offset=".5149"
+         id="stop4" />
+      <stop
+         stop-color="#009090"
+         offset=".7003"
+         id="stop6" />
+      <stop
+         stop-color="#008585"
+         offset=".8325"
+         id="stop8" />
+      <stop
+         stop-color="#007474"
+         offset=".9387"
+         id="stop10" />
+      <stop
+         stop-color="#066"
+         offset="1"
+         id="stop12" />
+    </linearGradient>
+    <linearGradient
+       id="g"
+       x1="107.34"
+       x2="74.809998"
+       y1="100.46"
+       y2="178.99001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#06c"
+         offset="0"
+         id="stop15" />
+      <stop
+         stop-color="#0064ca"
+         offset=".5149"
+         id="stop17" />
+      <stop
+         stop-color="#005dc3"
+         offset=".7003"
+         id="stop19" />
+      <stop
+         stop-color="#0052b8"
+         offset=".8325"
+         id="stop21" />
+      <stop
+         stop-color="#0041a7"
+         offset=".9387"
+         id="stop23" />
+      <stop
+         stop-color="#039"
+         offset="1"
+         id="stop25" />
+    </linearGradient>
+    <linearGradient
+       id="f"
+       x1="86.549004"
+       x2="164.52"
+       y1="204.21001"
+       y2="235.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#c33"
+         offset="0"
+         id="stop28" />
+      <stop
+         stop-color="#ca3131"
+         offset=".5149"
+         id="stop30" />
+      <stop
+         stop-color="#c32a2a"
+         offset=".7003"
+         id="stop32" />
+      <stop
+         stop-color="#b81f1f"
+         offset=".8325"
+         id="stop34" />
+      <stop
+         stop-color="#a70e0e"
+         offset=".9387"
+         id="stop36" />
+      <stop
+         stop-color="#900"
+         offset="1"
+         id="stop38" />
+    </linearGradient>
+    <linearGradient
+       id="e"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#f93"
+         offset="0"
+         id="stop41" />
+      <stop
+         stop-color="#fd9731"
+         offset=".5149"
+         id="stop43" />
+      <stop
+         stop-color="#f6902a"
+         offset=".7003"
+         id="stop45" />
+      <stop
+         stop-color="#eb851f"
+         offset=".8325"
+         id="stop47" />
+      <stop
+         stop-color="#da740e"
+         offset=".9387"
+         id="stop49" />
+      <stop
+         stop-color="#c60"
+         offset="1"
+         id="stop51" />
+    </linearGradient>
+    <linearGradient
+       id="d"
+       x1="208.17"
+       x2="123.71"
+       y1="122.97"
+       y2="87.987999"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#093"
+         offset="0"
+         id="stop54" />
+      <stop
+         stop-color="#009731"
+         offset=".5149"
+         id="stop56" />
+      <stop
+         stop-color="#00902a"
+         offset=".7003"
+         id="stop58" />
+      <stop
+         stop-color="#00851f"
+         offset=".8325"
+         id="stop60" />
+      <stop
+         stop-color="#00740e"
+         offset=".9387"
+         id="stop62" />
+      <stop
+         stop-color="#060"
+         offset="1"
+         id="stop64" />
+    </linearGradient>
+    <linearGradient
+       id="c"
+       x1="186.36"
+       x2="219.41"
+       y1="222.75"
+       y2="147.33"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#fc0"
+         offset="0"
+         id="stop67" />
+      <stop
+         stop-color="#fdca00"
+         offset=".5149"
+         id="stop69" />
+      <stop
+         stop-color="#f6c300"
+         offset=".7003"
+         id="stop71" />
+      <stop
+         stop-color="#ebb800"
+         offset=".8325"
+         id="stop73" />
+      <stop
+         stop-color="#daa700"
+         offset=".9387"
+         id="stop75" />
+      <stop
+         stop-color="#c90"
+         offset="1"
+         id="stop77" />
+    </linearGradient>
+    <linearGradient
+       id="b"
+       x1="218.00999"
+       x2="187.5"
+       y1="177.11"
+       y2="103.38"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#9c3"
+         offset="0"
+         id="stop80" />
+      <stop
+         stop-color="#97ca31"
+         offset=".5149"
+         id="stop82" />
+      <stop
+         stop-color="#90c32a"
+         offset=".7003"
+         id="stop84" />
+      <stop
+         stop-color="#85b81f"
+         offset=".8325"
+         id="stop86" />
+      <stop
+         stop-color="#74a70e"
+         offset=".9387"
+         id="stop88" />
+      <stop
+         stop-color="#690"
+         offset="1"
+         id="stop90" />
+    </linearGradient>
+    <linearGradient
+       id="a"
+       x1="75.961998"
+       x2="107.32"
+       y1="147.89999"
+       y2="226.71001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#939"
+         offset="0"
+         id="stop93" />
+      <stop
+         stop-color="#973197"
+         offset=".5149"
+         id="stop95" />
+      <stop
+         stop-color="#902a90"
+         offset=".7003"
+         id="stop97" />
+      <stop
+         stop-color="#851f85"
+         offset=".8325"
+         id="stop99" />
+      <stop
+         stop-color="#740e74"
+         offset=".9387"
+         id="stop101" />
+      <stop
+         stop-color="#606"
+         offset="1"
+         id="stop103" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath38">
+      <path
+         d="M 0,520 H 520 V 0 H 0 Z"
+         id="path36"
+         inkscape:connector-curvature="0" />
+    </clipPath>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1109"
+       id="linearGradient1095-2"
+       x1="15.731466"
+       y1="34.984047"
+       x2="34.50996"
+       y2="26.098288"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.77420991,0,0,0.77420991,16.41646,5.9424217)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1109"
+       id="linearGradient1728"
+       gradientUnits="userSpaceOnUse"
+       x1="6.6753492"
+       y1="39.298244"
+       x2="32.963676"
+       y2="22.047657" />
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="g-1"
+       x1="107.34"
+       x2="74.809998"
+       y1="100.46"
+       y2="178.99001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#06c"
+         offset="0"
+         id="stop15-9" />
+      <stop
+         stop-color="#0064ca"
+         offset=".5149"
+         id="stop17-4" />
+      <stop
+         stop-color="#005dc3"
+         offset=".7003"
+         id="stop19-7" />
+      <stop
+         stop-color="#0052b8"
+         offset=".8325"
+         id="stop21-8" />
+      <stop
+         stop-color="#0041a7"
+         offset=".9387"
+         id="stop23-4" />
+      <stop
+         stop-color="#039"
+         offset="1"
+         id="stop25-5" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="a-3"
+       x1="75.961998"
+       x2="107.32"
+       y1="147.89999"
+       y2="226.71001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#939"
+         offset="0"
+         id="stop93-6" />
+      <stop
+         stop-color="#973197"
+         offset=".5149"
+         id="stop95-7" />
+      <stop
+         stop-color="#902a90"
+         offset=".7003"
+         id="stop97-5" />
+      <stop
+         stop-color="#851f85"
+         offset=".8325"
+         id="stop99-3" />
+      <stop
+         stop-color="#740e74"
+         offset=".9387"
+         id="stop101-5" />
+      <stop
+         stop-color="#606"
+         offset="1"
+         id="stop103-6" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="f-7"
+       x1="86.549004"
+       x2="164.52"
+       y1="204.21001"
+       y2="235.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#c33"
+         offset="0"
+         id="stop28-3" />
+      <stop
+         stop-color="#ca3131"
+         offset=".5149"
+         id="stop30-6" />
+      <stop
+         stop-color="#c32a2a"
+         offset=".7003"
+         id="stop32-1" />
+      <stop
+         stop-color="#b81f1f"
+         offset=".8325"
+         id="stop34-2" />
+      <stop
+         stop-color="#a70e0e"
+         offset=".9387"
+         id="stop36-9" />
+      <stop
+         stop-color="#900"
+         offset="1"
+         id="stop38-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="e-7"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#f93"
+         offset="0"
+         id="stop41-5" />
+      <stop
+         stop-color="#fd9731"
+         offset=".5149"
+         id="stop43-9" />
+      <stop
+         stop-color="#f6902a"
+         offset=".7003"
+         id="stop45-2" />
+      <stop
+         stop-color="#eb851f"
+         offset=".8325"
+         id="stop47-2" />
+      <stop
+         stop-color="#da740e"
+         offset=".9387"
+         id="stop49-8" />
+      <stop
+         stop-color="#c60"
+         offset="1"
+         id="stop51-9" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="c-3"
+       x1="186.36"
+       x2="219.41"
+       y1="222.75"
+       y2="147.33"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#fc0"
+         offset="0"
+         id="stop67-6" />
+      <stop
+         stop-color="#fdca00"
+         offset=".5149"
+         id="stop69-0" />
+      <stop
+         stop-color="#f6c300"
+         offset=".7003"
+         id="stop71-6" />
+      <stop
+         stop-color="#ebb800"
+         offset=".8325"
+         id="stop73-2" />
+      <stop
+         stop-color="#daa700"
+         offset=".9387"
+         id="stop75-6" />
+      <stop
+         stop-color="#c90"
+         offset="1"
+         id="stop77-1" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="b-2"
+       x1="218.00999"
+       x2="187.5"
+       y1="177.11"
+       y2="103.38"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#9c3"
+         offset="0"
+         id="stop80-9" />
+      <stop
+         stop-color="#97ca31"
+         offset=".5149"
+         id="stop82-1" />
+      <stop
+         stop-color="#90c32a"
+         offset=".7003"
+         id="stop84-2" />
+      <stop
+         stop-color="#85b81f"
+         offset=".8325"
+         id="stop86-7" />
+      <stop
+         stop-color="#74a70e"
+         offset=".9387"
+         id="stop88-0" />
+      <stop
+         stop-color="#690"
+         offset="1"
+         id="stop90-9" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="d-8"
+       x1="208.17"
+       x2="123.71"
+       y1="122.97"
+       y2="87.987999"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#093"
+         offset="0"
+         id="stop54-7" />
+      <stop
+         stop-color="#009731"
+         offset=".5149"
+         id="stop56-9" />
+      <stop
+         stop-color="#00902a"
+         offset=".7003"
+         id="stop58-2" />
+      <stop
+         stop-color="#00851f"
+         offset=".8325"
+         id="stop60-0" />
+      <stop
+         stop-color="#00740e"
+         offset=".9387"
+         id="stop62-2" />
+      <stop
+         stop-color="#060"
+         offset="1"
+         id="stop64-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="h-0"
+       x1="161.42"
+       x2="83.68"
+       y1="91.501999"
+       y2="123.7"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#099"
+         offset="0"
+         id="stop2-3" />
+      <stop
+         stop-color="#009797"
+         offset=".5149"
+         id="stop4-6" />
+      <stop
+         stop-color="#009090"
+         offset=".7003"
+         id="stop6-1" />
+      <stop
+         stop-color="#008585"
+         offset=".8325"
+         id="stop8-0" />
+      <stop
+         stop-color="#007474"
+         offset=".9387"
+         id="stop10-6" />
+      <stop
+         stop-color="#066"
+         offset="1"
+         id="stop12-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="g-1-1"
+       x1="107.34"
+       x2="74.809998"
+       y1="100.46"
+       y2="178.99001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#06c"
+         offset="0"
+         id="stop15-9-0" />
+      <stop
+         stop-color="#0064ca"
+         offset=".5149"
+         id="stop17-4-6" />
+      <stop
+         stop-color="#005dc3"
+         offset=".7003"
+         id="stop19-7-1" />
+      <stop
+         stop-color="#0052b8"
+         offset=".8325"
+         id="stop21-8-5" />
+      <stop
+         stop-color="#0041a7"
+         offset=".9387"
+         id="stop23-4-9" />
+      <stop
+         stop-color="#039"
+         offset="1"
+         id="stop25-5-4" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="a-3-9"
+       x1="75.961998"
+       x2="107.32"
+       y1="147.89999"
+       y2="226.71001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#939"
+         offset="0"
+         id="stop93-6-0" />
+      <stop
+         stop-color="#973197"
+         offset=".5149"
+         id="stop95-7-9" />
+      <stop
+         stop-color="#902a90"
+         offset=".7003"
+         id="stop97-5-1" />
+      <stop
+         stop-color="#851f85"
+         offset=".8325"
+         id="stop99-3-7" />
+      <stop
+         stop-color="#740e74"
+         offset=".9387"
+         id="stop101-5-7" />
+      <stop
+         stop-color="#606"
+         offset="1"
+         id="stop103-6-1" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="f-7-1"
+       x1="86.549004"
+       x2="164.52"
+       y1="204.21001"
+       y2="235.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#c33"
+         offset="0"
+         id="stop28-3-5" />
+      <stop
+         stop-color="#ca3131"
+         offset=".5149"
+         id="stop30-6-9" />
+      <stop
+         stop-color="#c32a2a"
+         offset=".7003"
+         id="stop32-1-7" />
+      <stop
+         stop-color="#b81f1f"
+         offset=".8325"
+         id="stop34-2-7" />
+      <stop
+         stop-color="#a70e0e"
+         offset=".9387"
+         id="stop36-9-6" />
+      <stop
+         stop-color="#900"
+         offset="1"
+         id="stop38-3-7" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="e-7-3"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#f93"
+         offset="0"
+         id="stop41-5-6" />
+      <stop
+         stop-color="#fd9731"
+         offset=".5149"
+         id="stop43-9-5" />
+      <stop
+         stop-color="#f6902a"
+         offset=".7003"
+         id="stop45-2-6" />
+      <stop
+         stop-color="#eb851f"
+         offset=".8325"
+         id="stop47-2-3" />
+      <stop
+         stop-color="#da740e"
+         offset=".9387"
+         id="stop49-8-9" />
+      <stop
+         stop-color="#c60"
+         offset="1"
+         id="stop51-9-4" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="c-3-8"
+       x1="186.36"
+       x2="219.41"
+       y1="222.75"
+       y2="147.33"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#fc0"
+         offset="0"
+         id="stop67-6-1" />
+      <stop
+         stop-color="#fdca00"
+         offset=".5149"
+         id="stop69-0-2" />
+      <stop
+         stop-color="#f6c300"
+         offset=".7003"
+         id="stop71-6-9" />
+      <stop
+         stop-color="#ebb800"
+         offset=".8325"
+         id="stop73-2-3" />
+      <stop
+         stop-color="#daa700"
+         offset=".9387"
+         id="stop75-6-9" />
+      <stop
+         stop-color="#c90"
+         offset="1"
+         id="stop77-1-0" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="b-2-8"
+       x1="218.00999"
+       x2="187.5"
+       y1="177.11"
+       y2="103.38"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#9c3"
+         offset="0"
+         id="stop80-9-8" />
+      <stop
+         stop-color="#97ca31"
+         offset=".5149"
+         id="stop82-1-5" />
+      <stop
+         stop-color="#90c32a"
+         offset=".7003"
+         id="stop84-2-0" />
+      <stop
+         stop-color="#85b81f"
+         offset=".8325"
+         id="stop86-7-9" />
+      <stop
+         stop-color="#74a70e"
+         offset=".9387"
+         id="stop88-0-6" />
+      <stop
+         stop-color="#690"
+         offset="1"
+         id="stop90-9-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="d-8-8"
+       x1="208.17"
+       x2="123.71"
+       y1="122.97"
+       y2="87.987999"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#093"
+         offset="0"
+         id="stop54-7-5" />
+      <stop
+         stop-color="#009731"
+         offset=".5149"
+         id="stop56-9-6" />
+      <stop
+         stop-color="#00902a"
+         offset=".7003"
+         id="stop58-2-1" />
+      <stop
+         stop-color="#00851f"
+         offset=".8325"
+         id="stop60-0-1" />
+      <stop
+         stop-color="#00740e"
+         offset=".9387"
+         id="stop62-2-5" />
+      <stop
+         stop-color="#060"
+         offset="1"
+         id="stop64-3-9" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="h-0-8"
+       x1="161.42"
+       x2="83.68"
+       y1="91.501999"
+       y2="123.7"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#099"
+         offset="0"
+         id="stop2-3-4" />
+      <stop
+         stop-color="#009797"
+         offset=".5149"
+         id="stop4-6-8" />
+      <stop
+         stop-color="#009090"
+         offset=".7003"
+         id="stop6-1-1" />
+      <stop
+         stop-color="#008585"
+         offset=".8325"
+         id="stop8-0-0" />
+      <stop
+         stop-color="#007474"
+         offset=".9387"
+         id="stop10-6-3" />
+      <stop
+         stop-color="#066"
+         offset="1"
+         id="stop12-3-0" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3382"
+       id="linearGradient3384"
+       x1="12.976564"
+       y1="27.989347"
+       x2="43.307491"
+       y2="27.856308"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-75.188904,26.100287)" />
+  </defs>
+  <path
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.84922767"
+     d="M 12.703125 20.558594 L 0 24 L 12.710938 27.443359 A 11.8125 11.8125 0 0 1 12.238281 25 L 18.03125 25 A 6.0520388 6.0520388 0 0 1 17.947266 24 A 6.0520388 6.0520388 0 0 1 18.037109 23 L 12.238281 23 A 11.8125 11.8125 0 0 1 12.703125 20.558594 z "
+     transform="matrix(1.1357348,0,0,1.1357348,-3.2576355,0)"
+     id="path2910"
+     inkscape:label="left" />
+  <path
+     inkscape:connector-curvature="0"
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.10023212"
+     d="m 36.830253,23.349109 14.42738,3.908525 -14.436253,3.910742 a 13.415867,13.415867 0 0 0 0.536812,-2.775008 h -6.579275 a 6.8735109,6.8735109 0 0 0 0.09538,-1.135734 6.8735109,6.8735109 0 0 0 -0.102035,-1.135735 h 6.58593 a 13.415867,13.415867 0 0 0 -0.527939,-2.77279 z"
+     id="path2910-3"
+     inkscape:label="right" />
+  <path
+     inkscape:connector-curvature="0"
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.10023212"
+     d="m 20.091475,40.087889 3.908524,14.42738 3.910743,-14.436254 a 13.415867,13.415867 0 0 1 -2.775008,0.536813 v -6.579276 a 6.8735109,6.8735109 0 0 1 -1.135735,0.09538 6.8735109,6.8735109 0 0 1 -1.135735,-0.102034 v 6.58593 a 13.415867,13.415867 0 0 1 -2.772789,-0.527939 z"
+     id="path2910-6"
+     inkscape:label="down" />
+  <path
+     inkscape:connector-curvature="0"
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.10023212"
+     d="M 20.090365,14.42738 23.998889,0 27.909632,14.436254 a 13.415867,13.415867 0 0 0 -2.775008,-0.536813 v 6.579276 a 6.8735109,6.8735109 0 0 0 -1.135734,-0.09538 6.8735109,6.8735109 0 0 0 -1.135735,0.102034 v -6.58593 a 13.415867,13.415867 0 0 0 -2.77279,0.527939 z"
+     id="path2910-6-9"
+     inkscape:label="up" />
+</svg>
diff --git a/cinelerra-5.1/plugins/theme_blue/data/clip_icon.svg b/cinelerra-5.1/plugins/theme_blue/data/clip_icon.svg
new file mode 100644 (file)
index 0000000..b8bc9fa
--- /dev/null
@@ -0,0 +1,1092 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   enable-background="new 0 0 299.26 339.88"
+   viewBox="0 0 47.999998 54.515269"
+   version="1.1"
+   id="svg124"
+   sodipodi:docname="move_icon_1.1.svg"
+   inkscape:version="0.92.3 (2405546, 2018-03-11)"
+   inkscape:export-filename="/home/spc/Bilder/Cinfinity_new_buttons/move-app-icon.png"
+   inkscape:export-xdpi="96"
+   inkscape:export-ydpi="96">
+  <title
+     id="title9470">Cinelerra GG Infinity move icon</title>
+  <metadata
+     id="metadata128">
+    <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>Cinelerra GG Infinity move icon</dc:title>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Sam D.</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:publisher>
+          <cc:Agent>
+            <dc:title>Sam D.</dc:title>
+          </cc:Agent>
+        </dc:publisher>
+        <dc:language>En</dc:language>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>Cinelerra GG Infinity move icon</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <dc:description>Cinelerra GG Infinity move icon</dc:description>
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#000000"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="2560"
+     inkscape:window-height="1369"
+     id="namedview126"
+     showgrid="false"
+     inkscape:snap-global="true"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:snap-bbox="true"
+     inkscape:bbox-paths="true"
+     inkscape:bbox-nodes="true"
+     inkscape:snap-bbox-edge-midpoints="true"
+     inkscape:snap-bbox-midpoints="true"
+     inkscape:object-paths="true"
+     inkscape:snap-intersection-paths="true"
+     inkscape:snap-smooth-nodes="true"
+     inkscape:snap-midpoints="true"
+     inkscape:pagecheckerboard="true"
+     inkscape:zoom="16"
+     inkscape:cx="29.021926"
+     inkscape:cy="24.297629"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg124"
+     inkscape:snap-page="true">
+    <sodipodi:guide
+       position="5.9999997,27.257635"
+       orientation="1,0"
+       id="guide9367"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="41.999998,27.257635"
+       orientation="1,0"
+       id="guide9369"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="23.999999,41.543049"
+       orientation="1,0"
+       id="guide9371"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="21.743533,47.70086"
+       orientation="0,1"
+       id="guide3370"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="19.180271,6.8144086"
+       orientation="0,1"
+       id="guide3372"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="23.999999,27.257635"
+       orientation="0,1"
+       id="guide7557"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+  </sodipodi:namedview>
+  <defs
+     id="defs106">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3382">
+      <stop
+         style="stop-color:#ff3434;stop-opacity:1"
+         offset="0"
+         id="stop3378" />
+      <stop
+         style="stop-color:#f2ed00;stop-opacity:1"
+         offset="1"
+         id="stop3380" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3259"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         style="stop-color:#ff7233;stop-opacity:1"
+         stop-color="#f93"
+         offset="0"
+         id="stop3247" />
+      <stop
+         style="stop-color:#fdf931;stop-opacity:1"
+         stop-color="#fd9731"
+         offset="0.13612744"
+         id="stop3249" />
+      <stop
+         style="stop-color:#2af62e;stop-opacity:1"
+         stop-color="#f6902a"
+         offset="0.34990042"
+         id="stop3251" />
+      <stop
+         style="stop-color:#338dff;stop-opacity:1"
+         stop-color="#eb851f"
+         offset="0.50524527"
+         id="stop3253" />
+      <stop
+         style="stop-color:#da0eae;stop-opacity:1"
+         stop-color="#da740e"
+         offset="0.80296719"
+         id="stop3255" />
+      <stop
+         style="stop-color:#cc0033;stop-opacity:1"
+         stop-color="#c60"
+         offset="1"
+         id="stop3257" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2579"
+       osb:paint="solid">
+      <stop
+         style="stop-color:#464646;stop-opacity:1;"
+         offset="0"
+         id="stop2577" />
+    </linearGradient>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="202.56"
+       y1="233.06"
+       x2="209.19"
+       x1="134.61"
+       id="linearGradient1109">
+      <stop
+         id="stop1097"
+         offset="0"
+         stop-color="#f93"
+         style="stop-color:#ff7233;stop-opacity:1" />
+      <stop
+         id="stop1099"
+         offset="0.1840131"
+         stop-color="#fd9731"
+         style="stop-color:#fdf931;stop-opacity:1" />
+      <stop
+         id="stop1101"
+         offset="0.37539905"
+         stop-color="#f6902a"
+         style="stop-color:#2af62e;stop-opacity:1" />
+      <stop
+         id="stop1103"
+         offset="0.59079379"
+         stop-color="#eb851f"
+         style="stop-color:#338dff;stop-opacity:1" />
+      <stop
+         id="stop1105"
+         offset="0.80296719"
+         stop-color="#da740e"
+         style="stop-color:#da0eae;stop-opacity:1" />
+      <stop
+         id="stop1107"
+         offset="1"
+         stop-color="#c60"
+         style="stop-color:#cc0033;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="h"
+       x1="161.42"
+       x2="83.68"
+       y1="91.501999"
+       y2="123.7"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#099"
+         offset="0"
+         id="stop2" />
+      <stop
+         stop-color="#009797"
+         offset=".5149"
+         id="stop4" />
+      <stop
+         stop-color="#009090"
+         offset=".7003"
+         id="stop6" />
+      <stop
+         stop-color="#008585"
+         offset=".8325"
+         id="stop8" />
+      <stop
+         stop-color="#007474"
+         offset=".9387"
+         id="stop10" />
+      <stop
+         stop-color="#066"
+         offset="1"
+         id="stop12" />
+    </linearGradient>
+    <linearGradient
+       id="g"
+       x1="107.34"
+       x2="74.809998"
+       y1="100.46"
+       y2="178.99001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#06c"
+         offset="0"
+         id="stop15" />
+      <stop
+         stop-color="#0064ca"
+         offset=".5149"
+         id="stop17" />
+      <stop
+         stop-color="#005dc3"
+         offset=".7003"
+         id="stop19" />
+      <stop
+         stop-color="#0052b8"
+         offset=".8325"
+         id="stop21" />
+      <stop
+         stop-color="#0041a7"
+         offset=".9387"
+         id="stop23" />
+      <stop
+         stop-color="#039"
+         offset="1"
+         id="stop25" />
+    </linearGradient>
+    <linearGradient
+       id="f"
+       x1="86.549004"
+       x2="164.52"
+       y1="204.21001"
+       y2="235.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#c33"
+         offset="0"
+         id="stop28" />
+      <stop
+         stop-color="#ca3131"
+         offset=".5149"
+         id="stop30" />
+      <stop
+         stop-color="#c32a2a"
+         offset=".7003"
+         id="stop32" />
+      <stop
+         stop-color="#b81f1f"
+         offset=".8325"
+         id="stop34" />
+      <stop
+         stop-color="#a70e0e"
+         offset=".9387"
+         id="stop36" />
+      <stop
+         stop-color="#900"
+         offset="1"
+         id="stop38" />
+    </linearGradient>
+    <linearGradient
+       id="e"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#f93"
+         offset="0"
+         id="stop41" />
+      <stop
+         stop-color="#fd9731"
+         offset=".5149"
+         id="stop43" />
+      <stop
+         stop-color="#f6902a"
+         offset=".7003"
+         id="stop45" />
+      <stop
+         stop-color="#eb851f"
+         offset=".8325"
+         id="stop47" />
+      <stop
+         stop-color="#da740e"
+         offset=".9387"
+         id="stop49" />
+      <stop
+         stop-color="#c60"
+         offset="1"
+         id="stop51" />
+    </linearGradient>
+    <linearGradient
+       id="d"
+       x1="208.17"
+       x2="123.71"
+       y1="122.97"
+       y2="87.987999"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#093"
+         offset="0"
+         id="stop54" />
+      <stop
+         stop-color="#009731"
+         offset=".5149"
+         id="stop56" />
+      <stop
+         stop-color="#00902a"
+         offset=".7003"
+         id="stop58" />
+      <stop
+         stop-color="#00851f"
+         offset=".8325"
+         id="stop60" />
+      <stop
+         stop-color="#00740e"
+         offset=".9387"
+         id="stop62" />
+      <stop
+         stop-color="#060"
+         offset="1"
+         id="stop64" />
+    </linearGradient>
+    <linearGradient
+       id="c"
+       x1="186.36"
+       x2="219.41"
+       y1="222.75"
+       y2="147.33"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#fc0"
+         offset="0"
+         id="stop67" />
+      <stop
+         stop-color="#fdca00"
+         offset=".5149"
+         id="stop69" />
+      <stop
+         stop-color="#f6c300"
+         offset=".7003"
+         id="stop71" />
+      <stop
+         stop-color="#ebb800"
+         offset=".8325"
+         id="stop73" />
+      <stop
+         stop-color="#daa700"
+         offset=".9387"
+         id="stop75" />
+      <stop
+         stop-color="#c90"
+         offset="1"
+         id="stop77" />
+    </linearGradient>
+    <linearGradient
+       id="b"
+       x1="218.00999"
+       x2="187.5"
+       y1="177.11"
+       y2="103.38"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#9c3"
+         offset="0"
+         id="stop80" />
+      <stop
+         stop-color="#97ca31"
+         offset=".5149"
+         id="stop82" />
+      <stop
+         stop-color="#90c32a"
+         offset=".7003"
+         id="stop84" />
+      <stop
+         stop-color="#85b81f"
+         offset=".8325"
+         id="stop86" />
+      <stop
+         stop-color="#74a70e"
+         offset=".9387"
+         id="stop88" />
+      <stop
+         stop-color="#690"
+         offset="1"
+         id="stop90" />
+    </linearGradient>
+    <linearGradient
+       id="a"
+       x1="75.961998"
+       x2="107.32"
+       y1="147.89999"
+       y2="226.71001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#939"
+         offset="0"
+         id="stop93" />
+      <stop
+         stop-color="#973197"
+         offset=".5149"
+         id="stop95" />
+      <stop
+         stop-color="#902a90"
+         offset=".7003"
+         id="stop97" />
+      <stop
+         stop-color="#851f85"
+         offset=".8325"
+         id="stop99" />
+      <stop
+         stop-color="#740e74"
+         offset=".9387"
+         id="stop101" />
+      <stop
+         stop-color="#606"
+         offset="1"
+         id="stop103" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath38">
+      <path
+         d="M 0,520 H 520 V 0 H 0 Z"
+         id="path36"
+         inkscape:connector-curvature="0" />
+    </clipPath>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1109"
+       id="linearGradient1095-2"
+       x1="15.731466"
+       y1="34.984047"
+       x2="34.50996"
+       y2="26.098288"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.77420991,0,0,0.77420991,16.41646,5.9424217)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1109"
+       id="linearGradient1728"
+       gradientUnits="userSpaceOnUse"
+       x1="6.6753492"
+       y1="39.298244"
+       x2="32.963676"
+       y2="22.047657" />
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="g-1"
+       x1="107.34"
+       x2="74.809998"
+       y1="100.46"
+       y2="178.99001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#06c"
+         offset="0"
+         id="stop15-9" />
+      <stop
+         stop-color="#0064ca"
+         offset=".5149"
+         id="stop17-4" />
+      <stop
+         stop-color="#005dc3"
+         offset=".7003"
+         id="stop19-7" />
+      <stop
+         stop-color="#0052b8"
+         offset=".8325"
+         id="stop21-8" />
+      <stop
+         stop-color="#0041a7"
+         offset=".9387"
+         id="stop23-4" />
+      <stop
+         stop-color="#039"
+         offset="1"
+         id="stop25-5" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="a-3"
+       x1="75.961998"
+       x2="107.32"
+       y1="147.89999"
+       y2="226.71001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#939"
+         offset="0"
+         id="stop93-6" />
+      <stop
+         stop-color="#973197"
+         offset=".5149"
+         id="stop95-7" />
+      <stop
+         stop-color="#902a90"
+         offset=".7003"
+         id="stop97-5" />
+      <stop
+         stop-color="#851f85"
+         offset=".8325"
+         id="stop99-3" />
+      <stop
+         stop-color="#740e74"
+         offset=".9387"
+         id="stop101-5" />
+      <stop
+         stop-color="#606"
+         offset="1"
+         id="stop103-6" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="f-7"
+       x1="86.549004"
+       x2="164.52"
+       y1="204.21001"
+       y2="235.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#c33"
+         offset="0"
+         id="stop28-3" />
+      <stop
+         stop-color="#ca3131"
+         offset=".5149"
+         id="stop30-6" />
+      <stop
+         stop-color="#c32a2a"
+         offset=".7003"
+         id="stop32-1" />
+      <stop
+         stop-color="#b81f1f"
+         offset=".8325"
+         id="stop34-2" />
+      <stop
+         stop-color="#a70e0e"
+         offset=".9387"
+         id="stop36-9" />
+      <stop
+         stop-color="#900"
+         offset="1"
+         id="stop38-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="e-7"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#f93"
+         offset="0"
+         id="stop41-5" />
+      <stop
+         stop-color="#fd9731"
+         offset=".5149"
+         id="stop43-9" />
+      <stop
+         stop-color="#f6902a"
+         offset=".7003"
+         id="stop45-2" />
+      <stop
+         stop-color="#eb851f"
+         offset=".8325"
+         id="stop47-2" />
+      <stop
+         stop-color="#da740e"
+         offset=".9387"
+         id="stop49-8" />
+      <stop
+         stop-color="#c60"
+         offset="1"
+         id="stop51-9" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="c-3"
+       x1="186.36"
+       x2="219.41"
+       y1="222.75"
+       y2="147.33"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#fc0"
+         offset="0"
+         id="stop67-6" />
+      <stop
+         stop-color="#fdca00"
+         offset=".5149"
+         id="stop69-0" />
+      <stop
+         stop-color="#f6c300"
+         offset=".7003"
+         id="stop71-6" />
+      <stop
+         stop-color="#ebb800"
+         offset=".8325"
+         id="stop73-2" />
+      <stop
+         stop-color="#daa700"
+         offset=".9387"
+         id="stop75-6" />
+      <stop
+         stop-color="#c90"
+         offset="1"
+         id="stop77-1" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="b-2"
+       x1="218.00999"
+       x2="187.5"
+       y1="177.11"
+       y2="103.38"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#9c3"
+         offset="0"
+         id="stop80-9" />
+      <stop
+         stop-color="#97ca31"
+         offset=".5149"
+         id="stop82-1" />
+      <stop
+         stop-color="#90c32a"
+         offset=".7003"
+         id="stop84-2" />
+      <stop
+         stop-color="#85b81f"
+         offset=".8325"
+         id="stop86-7" />
+      <stop
+         stop-color="#74a70e"
+         offset=".9387"
+         id="stop88-0" />
+      <stop
+         stop-color="#690"
+         offset="1"
+         id="stop90-9" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="d-8"
+       x1="208.17"
+       x2="123.71"
+       y1="122.97"
+       y2="87.987999"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#093"
+         offset="0"
+         id="stop54-7" />
+      <stop
+         stop-color="#009731"
+         offset=".5149"
+         id="stop56-9" />
+      <stop
+         stop-color="#00902a"
+         offset=".7003"
+         id="stop58-2" />
+      <stop
+         stop-color="#00851f"
+         offset=".8325"
+         id="stop60-0" />
+      <stop
+         stop-color="#00740e"
+         offset=".9387"
+         id="stop62-2" />
+      <stop
+         stop-color="#060"
+         offset="1"
+         id="stop64-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="h-0"
+       x1="161.42"
+       x2="83.68"
+       y1="91.501999"
+       y2="123.7"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#099"
+         offset="0"
+         id="stop2-3" />
+      <stop
+         stop-color="#009797"
+         offset=".5149"
+         id="stop4-6" />
+      <stop
+         stop-color="#009090"
+         offset=".7003"
+         id="stop6-1" />
+      <stop
+         stop-color="#008585"
+         offset=".8325"
+         id="stop8-0" />
+      <stop
+         stop-color="#007474"
+         offset=".9387"
+         id="stop10-6" />
+      <stop
+         stop-color="#066"
+         offset="1"
+         id="stop12-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="g-1-1"
+       x1="107.34"
+       x2="74.809998"
+       y1="100.46"
+       y2="178.99001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#06c"
+         offset="0"
+         id="stop15-9-0" />
+      <stop
+         stop-color="#0064ca"
+         offset=".5149"
+         id="stop17-4-6" />
+      <stop
+         stop-color="#005dc3"
+         offset=".7003"
+         id="stop19-7-1" />
+      <stop
+         stop-color="#0052b8"
+         offset=".8325"
+         id="stop21-8-5" />
+      <stop
+         stop-color="#0041a7"
+         offset=".9387"
+         id="stop23-4-9" />
+      <stop
+         stop-color="#039"
+         offset="1"
+         id="stop25-5-4" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="a-3-9"
+       x1="75.961998"
+       x2="107.32"
+       y1="147.89999"
+       y2="226.71001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#939"
+         offset="0"
+         id="stop93-6-0" />
+      <stop
+         stop-color="#973197"
+         offset=".5149"
+         id="stop95-7-9" />
+      <stop
+         stop-color="#902a90"
+         offset=".7003"
+         id="stop97-5-1" />
+      <stop
+         stop-color="#851f85"
+         offset=".8325"
+         id="stop99-3-7" />
+      <stop
+         stop-color="#740e74"
+         offset=".9387"
+         id="stop101-5-7" />
+      <stop
+         stop-color="#606"
+         offset="1"
+         id="stop103-6-1" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="f-7-1"
+       x1="86.549004"
+       x2="164.52"
+       y1="204.21001"
+       y2="235.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#c33"
+         offset="0"
+         id="stop28-3-5" />
+      <stop
+         stop-color="#ca3131"
+         offset=".5149"
+         id="stop30-6-9" />
+      <stop
+         stop-color="#c32a2a"
+         offset=".7003"
+         id="stop32-1-7" />
+      <stop
+         stop-color="#b81f1f"
+         offset=".8325"
+         id="stop34-2-7" />
+      <stop
+         stop-color="#a70e0e"
+         offset=".9387"
+         id="stop36-9-6" />
+      <stop
+         stop-color="#900"
+         offset="1"
+         id="stop38-3-7" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="e-7-3"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#f93"
+         offset="0"
+         id="stop41-5-6" />
+      <stop
+         stop-color="#fd9731"
+         offset=".5149"
+         id="stop43-9-5" />
+      <stop
+         stop-color="#f6902a"
+         offset=".7003"
+         id="stop45-2-6" />
+      <stop
+         stop-color="#eb851f"
+         offset=".8325"
+         id="stop47-2-3" />
+      <stop
+         stop-color="#da740e"
+         offset=".9387"
+         id="stop49-8-9" />
+      <stop
+         stop-color="#c60"
+         offset="1"
+         id="stop51-9-4" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="c-3-8"
+       x1="186.36"
+       x2="219.41"
+       y1="222.75"
+       y2="147.33"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#fc0"
+         offset="0"
+         id="stop67-6-1" />
+      <stop
+         stop-color="#fdca00"
+         offset=".5149"
+         id="stop69-0-2" />
+      <stop
+         stop-color="#f6c300"
+         offset=".7003"
+         id="stop71-6-9" />
+      <stop
+         stop-color="#ebb800"
+         offset=".8325"
+         id="stop73-2-3" />
+      <stop
+         stop-color="#daa700"
+         offset=".9387"
+         id="stop75-6-9" />
+      <stop
+         stop-color="#c90"
+         offset="1"
+         id="stop77-1-0" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="b-2-8"
+       x1="218.00999"
+       x2="187.5"
+       y1="177.11"
+       y2="103.38"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#9c3"
+         offset="0"
+         id="stop80-9-8" />
+      <stop
+         stop-color="#97ca31"
+         offset=".5149"
+         id="stop82-1-5" />
+      <stop
+         stop-color="#90c32a"
+         offset=".7003"
+         id="stop84-2-0" />
+      <stop
+         stop-color="#85b81f"
+         offset=".8325"
+         id="stop86-7-9" />
+      <stop
+         stop-color="#74a70e"
+         offset=".9387"
+         id="stop88-0-6" />
+      <stop
+         stop-color="#690"
+         offset="1"
+         id="stop90-9-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="d-8-8"
+       x1="208.17"
+       x2="123.71"
+       y1="122.97"
+       y2="87.987999"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#093"
+         offset="0"
+         id="stop54-7-5" />
+      <stop
+         stop-color="#009731"
+         offset=".5149"
+         id="stop56-9-6" />
+      <stop
+         stop-color="#00902a"
+         offset=".7003"
+         id="stop58-2-1" />
+      <stop
+         stop-color="#00851f"
+         offset=".8325"
+         id="stop60-0-1" />
+      <stop
+         stop-color="#00740e"
+         offset=".9387"
+         id="stop62-2-5" />
+      <stop
+         stop-color="#060"
+         offset="1"
+         id="stop64-3-9" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="h-0-8"
+       x1="161.42"
+       x2="83.68"
+       y1="91.501999"
+       y2="123.7"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#099"
+         offset="0"
+         id="stop2-3-4" />
+      <stop
+         stop-color="#009797"
+         offset=".5149"
+         id="stop4-6-8" />
+      <stop
+         stop-color="#009090"
+         offset=".7003"
+         id="stop6-1-1" />
+      <stop
+         stop-color="#008585"
+         offset=".8325"
+         id="stop8-0-0" />
+      <stop
+         stop-color="#007474"
+         offset=".9387"
+         id="stop10-6-3" />
+      <stop
+         stop-color="#066"
+         offset="1"
+         id="stop12-3-0" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3382"
+       id="linearGradient3384"
+       x1="12.976564"
+       y1="27.989347"
+       x2="43.307491"
+       y2="27.856308"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-75.188904,26.100287)" />
+  </defs>
+  <path
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.84922767"
+     d="M 12.703125 20.558594 L 0 24 L 12.710938 27.443359 A 11.8125 11.8125 0 0 1 12.238281 25 L 18.03125 25 A 6.0520388 6.0520388 0 0 1 17.947266 24 A 6.0520388 6.0520388 0 0 1 18.037109 23 L 12.238281 23 A 11.8125 11.8125 0 0 1 12.703125 20.558594 z "
+     transform="matrix(1.1357348,0,0,1.1357348,-3.2576355,0)"
+     id="path2910"
+     inkscape:label="left" />
+  <path
+     inkscape:connector-curvature="0"
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.10023212"
+     d="m 36.830253,23.349109 14.42738,3.908525 -14.436253,3.910742 a 13.415867,13.415867 0 0 0 0.536812,-2.775008 h -6.579275 a 6.8735109,6.8735109 0 0 0 0.09538,-1.135734 6.8735109,6.8735109 0 0 0 -0.102035,-1.135735 h 6.58593 a 13.415867,13.415867 0 0 0 -0.527939,-2.77279 z"
+     id="path2910-3"
+     inkscape:label="right" />
+  <path
+     inkscape:connector-curvature="0"
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.10023212"
+     d="m 20.091475,40.087889 3.908524,14.42738 3.910743,-14.436254 a 13.415867,13.415867 0 0 1 -2.775008,0.536813 v -6.579276 a 6.8735109,6.8735109 0 0 1 -1.135735,0.09538 6.8735109,6.8735109 0 0 1 -1.135735,-0.102034 v 6.58593 a 13.415867,13.415867 0 0 1 -2.772789,-0.527939 z"
+     id="path2910-6"
+     inkscape:label="down" />
+  <path
+     inkscape:connector-curvature="0"
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.10023212"
+     d="M 20.090365,14.42738 23.998889,0 27.909632,14.436254 a 13.415867,13.415867 0 0 0 -2.775008,-0.536813 v 6.579276 a 6.8735109,6.8735109 0 0 0 -1.135734,-0.09538 6.8735109,6.8735109 0 0 0 -1.135735,0.102034 v -6.58593 a 13.415867,13.415867 0 0 0 -2.77279,0.527939 z"
+     id="path2910-6-9"
+     inkscape:label="up" />
+</svg>
diff --git a/cinelerra-5.1/plugins/theme_hulk/data/clip_icon.svg b/cinelerra-5.1/plugins/theme_hulk/data/clip_icon.svg
new file mode 100644 (file)
index 0000000..b8bc9fa
--- /dev/null
@@ -0,0 +1,1092 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   enable-background="new 0 0 299.26 339.88"
+   viewBox="0 0 47.999998 54.515269"
+   version="1.1"
+   id="svg124"
+   sodipodi:docname="move_icon_1.1.svg"
+   inkscape:version="0.92.3 (2405546, 2018-03-11)"
+   inkscape:export-filename="/home/spc/Bilder/Cinfinity_new_buttons/move-app-icon.png"
+   inkscape:export-xdpi="96"
+   inkscape:export-ydpi="96">
+  <title
+     id="title9470">Cinelerra GG Infinity move icon</title>
+  <metadata
+     id="metadata128">
+    <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>Cinelerra GG Infinity move icon</dc:title>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Sam D.</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:publisher>
+          <cc:Agent>
+            <dc:title>Sam D.</dc:title>
+          </cc:Agent>
+        </dc:publisher>
+        <dc:language>En</dc:language>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>Cinelerra GG Infinity move icon</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <dc:description>Cinelerra GG Infinity move icon</dc:description>
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#000000"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="2560"
+     inkscape:window-height="1369"
+     id="namedview126"
+     showgrid="false"
+     inkscape:snap-global="true"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:snap-bbox="true"
+     inkscape:bbox-paths="true"
+     inkscape:bbox-nodes="true"
+     inkscape:snap-bbox-edge-midpoints="true"
+     inkscape:snap-bbox-midpoints="true"
+     inkscape:object-paths="true"
+     inkscape:snap-intersection-paths="true"
+     inkscape:snap-smooth-nodes="true"
+     inkscape:snap-midpoints="true"
+     inkscape:pagecheckerboard="true"
+     inkscape:zoom="16"
+     inkscape:cx="29.021926"
+     inkscape:cy="24.297629"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg124"
+     inkscape:snap-page="true">
+    <sodipodi:guide
+       position="5.9999997,27.257635"
+       orientation="1,0"
+       id="guide9367"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="41.999998,27.257635"
+       orientation="1,0"
+       id="guide9369"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="23.999999,41.543049"
+       orientation="1,0"
+       id="guide9371"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="21.743533,47.70086"
+       orientation="0,1"
+       id="guide3370"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="19.180271,6.8144086"
+       orientation="0,1"
+       id="guide3372"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="23.999999,27.257635"
+       orientation="0,1"
+       id="guide7557"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+  </sodipodi:namedview>
+  <defs
+     id="defs106">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3382">
+      <stop
+         style="stop-color:#ff3434;stop-opacity:1"
+         offset="0"
+         id="stop3378" />
+      <stop
+         style="stop-color:#f2ed00;stop-opacity:1"
+         offset="1"
+         id="stop3380" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3259"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         style="stop-color:#ff7233;stop-opacity:1"
+         stop-color="#f93"
+         offset="0"
+         id="stop3247" />
+      <stop
+         style="stop-color:#fdf931;stop-opacity:1"
+         stop-color="#fd9731"
+         offset="0.13612744"
+         id="stop3249" />
+      <stop
+         style="stop-color:#2af62e;stop-opacity:1"
+         stop-color="#f6902a"
+         offset="0.34990042"
+         id="stop3251" />
+      <stop
+         style="stop-color:#338dff;stop-opacity:1"
+         stop-color="#eb851f"
+         offset="0.50524527"
+         id="stop3253" />
+      <stop
+         style="stop-color:#da0eae;stop-opacity:1"
+         stop-color="#da740e"
+         offset="0.80296719"
+         id="stop3255" />
+      <stop
+         style="stop-color:#cc0033;stop-opacity:1"
+         stop-color="#c60"
+         offset="1"
+         id="stop3257" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2579"
+       osb:paint="solid">
+      <stop
+         style="stop-color:#464646;stop-opacity:1;"
+         offset="0"
+         id="stop2577" />
+    </linearGradient>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="202.56"
+       y1="233.06"
+       x2="209.19"
+       x1="134.61"
+       id="linearGradient1109">
+      <stop
+         id="stop1097"
+         offset="0"
+         stop-color="#f93"
+         style="stop-color:#ff7233;stop-opacity:1" />
+      <stop
+         id="stop1099"
+         offset="0.1840131"
+         stop-color="#fd9731"
+         style="stop-color:#fdf931;stop-opacity:1" />
+      <stop
+         id="stop1101"
+         offset="0.37539905"
+         stop-color="#f6902a"
+         style="stop-color:#2af62e;stop-opacity:1" />
+      <stop
+         id="stop1103"
+         offset="0.59079379"
+         stop-color="#eb851f"
+         style="stop-color:#338dff;stop-opacity:1" />
+      <stop
+         id="stop1105"
+         offset="0.80296719"
+         stop-color="#da740e"
+         style="stop-color:#da0eae;stop-opacity:1" />
+      <stop
+         id="stop1107"
+         offset="1"
+         stop-color="#c60"
+         style="stop-color:#cc0033;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="h"
+       x1="161.42"
+       x2="83.68"
+       y1="91.501999"
+       y2="123.7"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#099"
+         offset="0"
+         id="stop2" />
+      <stop
+         stop-color="#009797"
+         offset=".5149"
+         id="stop4" />
+      <stop
+         stop-color="#009090"
+         offset=".7003"
+         id="stop6" />
+      <stop
+         stop-color="#008585"
+         offset=".8325"
+         id="stop8" />
+      <stop
+         stop-color="#007474"
+         offset=".9387"
+         id="stop10" />
+      <stop
+         stop-color="#066"
+         offset="1"
+         id="stop12" />
+    </linearGradient>
+    <linearGradient
+       id="g"
+       x1="107.34"
+       x2="74.809998"
+       y1="100.46"
+       y2="178.99001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#06c"
+         offset="0"
+         id="stop15" />
+      <stop
+         stop-color="#0064ca"
+         offset=".5149"
+         id="stop17" />
+      <stop
+         stop-color="#005dc3"
+         offset=".7003"
+         id="stop19" />
+      <stop
+         stop-color="#0052b8"
+         offset=".8325"
+         id="stop21" />
+      <stop
+         stop-color="#0041a7"
+         offset=".9387"
+         id="stop23" />
+      <stop
+         stop-color="#039"
+         offset="1"
+         id="stop25" />
+    </linearGradient>
+    <linearGradient
+       id="f"
+       x1="86.549004"
+       x2="164.52"
+       y1="204.21001"
+       y2="235.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#c33"
+         offset="0"
+         id="stop28" />
+      <stop
+         stop-color="#ca3131"
+         offset=".5149"
+         id="stop30" />
+      <stop
+         stop-color="#c32a2a"
+         offset=".7003"
+         id="stop32" />
+      <stop
+         stop-color="#b81f1f"
+         offset=".8325"
+         id="stop34" />
+      <stop
+         stop-color="#a70e0e"
+         offset=".9387"
+         id="stop36" />
+      <stop
+         stop-color="#900"
+         offset="1"
+         id="stop38" />
+    </linearGradient>
+    <linearGradient
+       id="e"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#f93"
+         offset="0"
+         id="stop41" />
+      <stop
+         stop-color="#fd9731"
+         offset=".5149"
+         id="stop43" />
+      <stop
+         stop-color="#f6902a"
+         offset=".7003"
+         id="stop45" />
+      <stop
+         stop-color="#eb851f"
+         offset=".8325"
+         id="stop47" />
+      <stop
+         stop-color="#da740e"
+         offset=".9387"
+         id="stop49" />
+      <stop
+         stop-color="#c60"
+         offset="1"
+         id="stop51" />
+    </linearGradient>
+    <linearGradient
+       id="d"
+       x1="208.17"
+       x2="123.71"
+       y1="122.97"
+       y2="87.987999"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#093"
+         offset="0"
+         id="stop54" />
+      <stop
+         stop-color="#009731"
+         offset=".5149"
+         id="stop56" />
+      <stop
+         stop-color="#00902a"
+         offset=".7003"
+         id="stop58" />
+      <stop
+         stop-color="#00851f"
+         offset=".8325"
+         id="stop60" />
+      <stop
+         stop-color="#00740e"
+         offset=".9387"
+         id="stop62" />
+      <stop
+         stop-color="#060"
+         offset="1"
+         id="stop64" />
+    </linearGradient>
+    <linearGradient
+       id="c"
+       x1="186.36"
+       x2="219.41"
+       y1="222.75"
+       y2="147.33"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#fc0"
+         offset="0"
+         id="stop67" />
+      <stop
+         stop-color="#fdca00"
+         offset=".5149"
+         id="stop69" />
+      <stop
+         stop-color="#f6c300"
+         offset=".7003"
+         id="stop71" />
+      <stop
+         stop-color="#ebb800"
+         offset=".8325"
+         id="stop73" />
+      <stop
+         stop-color="#daa700"
+         offset=".9387"
+         id="stop75" />
+      <stop
+         stop-color="#c90"
+         offset="1"
+         id="stop77" />
+    </linearGradient>
+    <linearGradient
+       id="b"
+       x1="218.00999"
+       x2="187.5"
+       y1="177.11"
+       y2="103.38"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#9c3"
+         offset="0"
+         id="stop80" />
+      <stop
+         stop-color="#97ca31"
+         offset=".5149"
+         id="stop82" />
+      <stop
+         stop-color="#90c32a"
+         offset=".7003"
+         id="stop84" />
+      <stop
+         stop-color="#85b81f"
+         offset=".8325"
+         id="stop86" />
+      <stop
+         stop-color="#74a70e"
+         offset=".9387"
+         id="stop88" />
+      <stop
+         stop-color="#690"
+         offset="1"
+         id="stop90" />
+    </linearGradient>
+    <linearGradient
+       id="a"
+       x1="75.961998"
+       x2="107.32"
+       y1="147.89999"
+       y2="226.71001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#939"
+         offset="0"
+         id="stop93" />
+      <stop
+         stop-color="#973197"
+         offset=".5149"
+         id="stop95" />
+      <stop
+         stop-color="#902a90"
+         offset=".7003"
+         id="stop97" />
+      <stop
+         stop-color="#851f85"
+         offset=".8325"
+         id="stop99" />
+      <stop
+         stop-color="#740e74"
+         offset=".9387"
+         id="stop101" />
+      <stop
+         stop-color="#606"
+         offset="1"
+         id="stop103" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath38">
+      <path
+         d="M 0,520 H 520 V 0 H 0 Z"
+         id="path36"
+         inkscape:connector-curvature="0" />
+    </clipPath>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1109"
+       id="linearGradient1095-2"
+       x1="15.731466"
+       y1="34.984047"
+       x2="34.50996"
+       y2="26.098288"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.77420991,0,0,0.77420991,16.41646,5.9424217)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1109"
+       id="linearGradient1728"
+       gradientUnits="userSpaceOnUse"
+       x1="6.6753492"
+       y1="39.298244"
+       x2="32.963676"
+       y2="22.047657" />
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="g-1"
+       x1="107.34"
+       x2="74.809998"
+       y1="100.46"
+       y2="178.99001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#06c"
+         offset="0"
+         id="stop15-9" />
+      <stop
+         stop-color="#0064ca"
+         offset=".5149"
+         id="stop17-4" />
+      <stop
+         stop-color="#005dc3"
+         offset=".7003"
+         id="stop19-7" />
+      <stop
+         stop-color="#0052b8"
+         offset=".8325"
+         id="stop21-8" />
+      <stop
+         stop-color="#0041a7"
+         offset=".9387"
+         id="stop23-4" />
+      <stop
+         stop-color="#039"
+         offset="1"
+         id="stop25-5" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="a-3"
+       x1="75.961998"
+       x2="107.32"
+       y1="147.89999"
+       y2="226.71001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#939"
+         offset="0"
+         id="stop93-6" />
+      <stop
+         stop-color="#973197"
+         offset=".5149"
+         id="stop95-7" />
+      <stop
+         stop-color="#902a90"
+         offset=".7003"
+         id="stop97-5" />
+      <stop
+         stop-color="#851f85"
+         offset=".8325"
+         id="stop99-3" />
+      <stop
+         stop-color="#740e74"
+         offset=".9387"
+         id="stop101-5" />
+      <stop
+         stop-color="#606"
+         offset="1"
+         id="stop103-6" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="f-7"
+       x1="86.549004"
+       x2="164.52"
+       y1="204.21001"
+       y2="235.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#c33"
+         offset="0"
+         id="stop28-3" />
+      <stop
+         stop-color="#ca3131"
+         offset=".5149"
+         id="stop30-6" />
+      <stop
+         stop-color="#c32a2a"
+         offset=".7003"
+         id="stop32-1" />
+      <stop
+         stop-color="#b81f1f"
+         offset=".8325"
+         id="stop34-2" />
+      <stop
+         stop-color="#a70e0e"
+         offset=".9387"
+         id="stop36-9" />
+      <stop
+         stop-color="#900"
+         offset="1"
+         id="stop38-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="e-7"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#f93"
+         offset="0"
+         id="stop41-5" />
+      <stop
+         stop-color="#fd9731"
+         offset=".5149"
+         id="stop43-9" />
+      <stop
+         stop-color="#f6902a"
+         offset=".7003"
+         id="stop45-2" />
+      <stop
+         stop-color="#eb851f"
+         offset=".8325"
+         id="stop47-2" />
+      <stop
+         stop-color="#da740e"
+         offset=".9387"
+         id="stop49-8" />
+      <stop
+         stop-color="#c60"
+         offset="1"
+         id="stop51-9" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="c-3"
+       x1="186.36"
+       x2="219.41"
+       y1="222.75"
+       y2="147.33"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#fc0"
+         offset="0"
+         id="stop67-6" />
+      <stop
+         stop-color="#fdca00"
+         offset=".5149"
+         id="stop69-0" />
+      <stop
+         stop-color="#f6c300"
+         offset=".7003"
+         id="stop71-6" />
+      <stop
+         stop-color="#ebb800"
+         offset=".8325"
+         id="stop73-2" />
+      <stop
+         stop-color="#daa700"
+         offset=".9387"
+         id="stop75-6" />
+      <stop
+         stop-color="#c90"
+         offset="1"
+         id="stop77-1" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="b-2"
+       x1="218.00999"
+       x2="187.5"
+       y1="177.11"
+       y2="103.38"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#9c3"
+         offset="0"
+         id="stop80-9" />
+      <stop
+         stop-color="#97ca31"
+         offset=".5149"
+         id="stop82-1" />
+      <stop
+         stop-color="#90c32a"
+         offset=".7003"
+         id="stop84-2" />
+      <stop
+         stop-color="#85b81f"
+         offset=".8325"
+         id="stop86-7" />
+      <stop
+         stop-color="#74a70e"
+         offset=".9387"
+         id="stop88-0" />
+      <stop
+         stop-color="#690"
+         offset="1"
+         id="stop90-9" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="d-8"
+       x1="208.17"
+       x2="123.71"
+       y1="122.97"
+       y2="87.987999"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#093"
+         offset="0"
+         id="stop54-7" />
+      <stop
+         stop-color="#009731"
+         offset=".5149"
+         id="stop56-9" />
+      <stop
+         stop-color="#00902a"
+         offset=".7003"
+         id="stop58-2" />
+      <stop
+         stop-color="#00851f"
+         offset=".8325"
+         id="stop60-0" />
+      <stop
+         stop-color="#00740e"
+         offset=".9387"
+         id="stop62-2" />
+      <stop
+         stop-color="#060"
+         offset="1"
+         id="stop64-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="h-0"
+       x1="161.42"
+       x2="83.68"
+       y1="91.501999"
+       y2="123.7"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#099"
+         offset="0"
+         id="stop2-3" />
+      <stop
+         stop-color="#009797"
+         offset=".5149"
+         id="stop4-6" />
+      <stop
+         stop-color="#009090"
+         offset=".7003"
+         id="stop6-1" />
+      <stop
+         stop-color="#008585"
+         offset=".8325"
+         id="stop8-0" />
+      <stop
+         stop-color="#007474"
+         offset=".9387"
+         id="stop10-6" />
+      <stop
+         stop-color="#066"
+         offset="1"
+         id="stop12-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="g-1-1"
+       x1="107.34"
+       x2="74.809998"
+       y1="100.46"
+       y2="178.99001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#06c"
+         offset="0"
+         id="stop15-9-0" />
+      <stop
+         stop-color="#0064ca"
+         offset=".5149"
+         id="stop17-4-6" />
+      <stop
+         stop-color="#005dc3"
+         offset=".7003"
+         id="stop19-7-1" />
+      <stop
+         stop-color="#0052b8"
+         offset=".8325"
+         id="stop21-8-5" />
+      <stop
+         stop-color="#0041a7"
+         offset=".9387"
+         id="stop23-4-9" />
+      <stop
+         stop-color="#039"
+         offset="1"
+         id="stop25-5-4" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="a-3-9"
+       x1="75.961998"
+       x2="107.32"
+       y1="147.89999"
+       y2="226.71001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#939"
+         offset="0"
+         id="stop93-6-0" />
+      <stop
+         stop-color="#973197"
+         offset=".5149"
+         id="stop95-7-9" />
+      <stop
+         stop-color="#902a90"
+         offset=".7003"
+         id="stop97-5-1" />
+      <stop
+         stop-color="#851f85"
+         offset=".8325"
+         id="stop99-3-7" />
+      <stop
+         stop-color="#740e74"
+         offset=".9387"
+         id="stop101-5-7" />
+      <stop
+         stop-color="#606"
+         offset="1"
+         id="stop103-6-1" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="f-7-1"
+       x1="86.549004"
+       x2="164.52"
+       y1="204.21001"
+       y2="235.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#c33"
+         offset="0"
+         id="stop28-3-5" />
+      <stop
+         stop-color="#ca3131"
+         offset=".5149"
+         id="stop30-6-9" />
+      <stop
+         stop-color="#c32a2a"
+         offset=".7003"
+         id="stop32-1-7" />
+      <stop
+         stop-color="#b81f1f"
+         offset=".8325"
+         id="stop34-2-7" />
+      <stop
+         stop-color="#a70e0e"
+         offset=".9387"
+         id="stop36-9-6" />
+      <stop
+         stop-color="#900"
+         offset="1"
+         id="stop38-3-7" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="e-7-3"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#f93"
+         offset="0"
+         id="stop41-5-6" />
+      <stop
+         stop-color="#fd9731"
+         offset=".5149"
+         id="stop43-9-5" />
+      <stop
+         stop-color="#f6902a"
+         offset=".7003"
+         id="stop45-2-6" />
+      <stop
+         stop-color="#eb851f"
+         offset=".8325"
+         id="stop47-2-3" />
+      <stop
+         stop-color="#da740e"
+         offset=".9387"
+         id="stop49-8-9" />
+      <stop
+         stop-color="#c60"
+         offset="1"
+         id="stop51-9-4" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="c-3-8"
+       x1="186.36"
+       x2="219.41"
+       y1="222.75"
+       y2="147.33"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#fc0"
+         offset="0"
+         id="stop67-6-1" />
+      <stop
+         stop-color="#fdca00"
+         offset=".5149"
+         id="stop69-0-2" />
+      <stop
+         stop-color="#f6c300"
+         offset=".7003"
+         id="stop71-6-9" />
+      <stop
+         stop-color="#ebb800"
+         offset=".8325"
+         id="stop73-2-3" />
+      <stop
+         stop-color="#daa700"
+         offset=".9387"
+         id="stop75-6-9" />
+      <stop
+         stop-color="#c90"
+         offset="1"
+         id="stop77-1-0" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="b-2-8"
+       x1="218.00999"
+       x2="187.5"
+       y1="177.11"
+       y2="103.38"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#9c3"
+         offset="0"
+         id="stop80-9-8" />
+      <stop
+         stop-color="#97ca31"
+         offset=".5149"
+         id="stop82-1-5" />
+      <stop
+         stop-color="#90c32a"
+         offset=".7003"
+         id="stop84-2-0" />
+      <stop
+         stop-color="#85b81f"
+         offset=".8325"
+         id="stop86-7-9" />
+      <stop
+         stop-color="#74a70e"
+         offset=".9387"
+         id="stop88-0-6" />
+      <stop
+         stop-color="#690"
+         offset="1"
+         id="stop90-9-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="d-8-8"
+       x1="208.17"
+       x2="123.71"
+       y1="122.97"
+       y2="87.987999"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#093"
+         offset="0"
+         id="stop54-7-5" />
+      <stop
+         stop-color="#009731"
+         offset=".5149"
+         id="stop56-9-6" />
+      <stop
+         stop-color="#00902a"
+         offset=".7003"
+         id="stop58-2-1" />
+      <stop
+         stop-color="#00851f"
+         offset=".8325"
+         id="stop60-0-1" />
+      <stop
+         stop-color="#00740e"
+         offset=".9387"
+         id="stop62-2-5" />
+      <stop
+         stop-color="#060"
+         offset="1"
+         id="stop64-3-9" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="h-0-8"
+       x1="161.42"
+       x2="83.68"
+       y1="91.501999"
+       y2="123.7"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#099"
+         offset="0"
+         id="stop2-3-4" />
+      <stop
+         stop-color="#009797"
+         offset=".5149"
+         id="stop4-6-8" />
+      <stop
+         stop-color="#009090"
+         offset=".7003"
+         id="stop6-1-1" />
+      <stop
+         stop-color="#008585"
+         offset=".8325"
+         id="stop8-0-0" />
+      <stop
+         stop-color="#007474"
+         offset=".9387"
+         id="stop10-6-3" />
+      <stop
+         stop-color="#066"
+         offset="1"
+         id="stop12-3-0" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3382"
+       id="linearGradient3384"
+       x1="12.976564"
+       y1="27.989347"
+       x2="43.307491"
+       y2="27.856308"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-75.188904,26.100287)" />
+  </defs>
+  <path
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.84922767"
+     d="M 12.703125 20.558594 L 0 24 L 12.710938 27.443359 A 11.8125 11.8125 0 0 1 12.238281 25 L 18.03125 25 A 6.0520388 6.0520388 0 0 1 17.947266 24 A 6.0520388 6.0520388 0 0 1 18.037109 23 L 12.238281 23 A 11.8125 11.8125 0 0 1 12.703125 20.558594 z "
+     transform="matrix(1.1357348,0,0,1.1357348,-3.2576355,0)"
+     id="path2910"
+     inkscape:label="left" />
+  <path
+     inkscape:connector-curvature="0"
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.10023212"
+     d="m 36.830253,23.349109 14.42738,3.908525 -14.436253,3.910742 a 13.415867,13.415867 0 0 0 0.536812,-2.775008 h -6.579275 a 6.8735109,6.8735109 0 0 0 0.09538,-1.135734 6.8735109,6.8735109 0 0 0 -0.102035,-1.135735 h 6.58593 a 13.415867,13.415867 0 0 0 -0.527939,-2.77279 z"
+     id="path2910-3"
+     inkscape:label="right" />
+  <path
+     inkscape:connector-curvature="0"
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.10023212"
+     d="m 20.091475,40.087889 3.908524,14.42738 3.910743,-14.436254 a 13.415867,13.415867 0 0 1 -2.775008,0.536813 v -6.579276 a 6.8735109,6.8735109 0 0 1 -1.135735,0.09538 6.8735109,6.8735109 0 0 1 -1.135735,-0.102034 v 6.58593 a 13.415867,13.415867 0 0 1 -2.772789,-0.527939 z"
+     id="path2910-6"
+     inkscape:label="down" />
+  <path
+     inkscape:connector-curvature="0"
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.10023212"
+     d="M 20.090365,14.42738 23.998889,0 27.909632,14.436254 a 13.415867,13.415867 0 0 0 -2.775008,-0.536813 v 6.579276 a 6.8735109,6.8735109 0 0 0 -1.135734,-0.09538 6.8735109,6.8735109 0 0 0 -1.135735,0.102034 v -6.58593 a 13.415867,13.415867 0 0 0 -2.77279,0.527939 z"
+     id="path2910-6-9"
+     inkscape:label="up" />
+</svg>
diff --git a/cinelerra-5.1/plugins/theme_pinklady/data/clip_icon.svg b/cinelerra-5.1/plugins/theme_pinklady/data/clip_icon.svg
new file mode 100644 (file)
index 0000000..b8bc9fa
--- /dev/null
@@ -0,0 +1,1092 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   enable-background="new 0 0 299.26 339.88"
+   viewBox="0 0 47.999998 54.515269"
+   version="1.1"
+   id="svg124"
+   sodipodi:docname="move_icon_1.1.svg"
+   inkscape:version="0.92.3 (2405546, 2018-03-11)"
+   inkscape:export-filename="/home/spc/Bilder/Cinfinity_new_buttons/move-app-icon.png"
+   inkscape:export-xdpi="96"
+   inkscape:export-ydpi="96">
+  <title
+     id="title9470">Cinelerra GG Infinity move icon</title>
+  <metadata
+     id="metadata128">
+    <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>Cinelerra GG Infinity move icon</dc:title>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Sam D.</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:publisher>
+          <cc:Agent>
+            <dc:title>Sam D.</dc:title>
+          </cc:Agent>
+        </dc:publisher>
+        <dc:language>En</dc:language>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>Cinelerra GG Infinity move icon</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <dc:description>Cinelerra GG Infinity move icon</dc:description>
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#000000"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="2560"
+     inkscape:window-height="1369"
+     id="namedview126"
+     showgrid="false"
+     inkscape:snap-global="true"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:snap-bbox="true"
+     inkscape:bbox-paths="true"
+     inkscape:bbox-nodes="true"
+     inkscape:snap-bbox-edge-midpoints="true"
+     inkscape:snap-bbox-midpoints="true"
+     inkscape:object-paths="true"
+     inkscape:snap-intersection-paths="true"
+     inkscape:snap-smooth-nodes="true"
+     inkscape:snap-midpoints="true"
+     inkscape:pagecheckerboard="true"
+     inkscape:zoom="16"
+     inkscape:cx="29.021926"
+     inkscape:cy="24.297629"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg124"
+     inkscape:snap-page="true">
+    <sodipodi:guide
+       position="5.9999997,27.257635"
+       orientation="1,0"
+       id="guide9367"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="41.999998,27.257635"
+       orientation="1,0"
+       id="guide9369"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="23.999999,41.543049"
+       orientation="1,0"
+       id="guide9371"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="21.743533,47.70086"
+       orientation="0,1"
+       id="guide3370"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="19.180271,6.8144086"
+       orientation="0,1"
+       id="guide3372"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="23.999999,27.257635"
+       orientation="0,1"
+       id="guide7557"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+  </sodipodi:namedview>
+  <defs
+     id="defs106">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3382">
+      <stop
+         style="stop-color:#ff3434;stop-opacity:1"
+         offset="0"
+         id="stop3378" />
+      <stop
+         style="stop-color:#f2ed00;stop-opacity:1"
+         offset="1"
+         id="stop3380" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3259"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         style="stop-color:#ff7233;stop-opacity:1"
+         stop-color="#f93"
+         offset="0"
+         id="stop3247" />
+      <stop
+         style="stop-color:#fdf931;stop-opacity:1"
+         stop-color="#fd9731"
+         offset="0.13612744"
+         id="stop3249" />
+      <stop
+         style="stop-color:#2af62e;stop-opacity:1"
+         stop-color="#f6902a"
+         offset="0.34990042"
+         id="stop3251" />
+      <stop
+         style="stop-color:#338dff;stop-opacity:1"
+         stop-color="#eb851f"
+         offset="0.50524527"
+         id="stop3253" />
+      <stop
+         style="stop-color:#da0eae;stop-opacity:1"
+         stop-color="#da740e"
+         offset="0.80296719"
+         id="stop3255" />
+      <stop
+         style="stop-color:#cc0033;stop-opacity:1"
+         stop-color="#c60"
+         offset="1"
+         id="stop3257" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2579"
+       osb:paint="solid">
+      <stop
+         style="stop-color:#464646;stop-opacity:1;"
+         offset="0"
+         id="stop2577" />
+    </linearGradient>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="202.56"
+       y1="233.06"
+       x2="209.19"
+       x1="134.61"
+       id="linearGradient1109">
+      <stop
+         id="stop1097"
+         offset="0"
+         stop-color="#f93"
+         style="stop-color:#ff7233;stop-opacity:1" />
+      <stop
+         id="stop1099"
+         offset="0.1840131"
+         stop-color="#fd9731"
+         style="stop-color:#fdf931;stop-opacity:1" />
+      <stop
+         id="stop1101"
+         offset="0.37539905"
+         stop-color="#f6902a"
+         style="stop-color:#2af62e;stop-opacity:1" />
+      <stop
+         id="stop1103"
+         offset="0.59079379"
+         stop-color="#eb851f"
+         style="stop-color:#338dff;stop-opacity:1" />
+      <stop
+         id="stop1105"
+         offset="0.80296719"
+         stop-color="#da740e"
+         style="stop-color:#da0eae;stop-opacity:1" />
+      <stop
+         id="stop1107"
+         offset="1"
+         stop-color="#c60"
+         style="stop-color:#cc0033;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="h"
+       x1="161.42"
+       x2="83.68"
+       y1="91.501999"
+       y2="123.7"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#099"
+         offset="0"
+         id="stop2" />
+      <stop
+         stop-color="#009797"
+         offset=".5149"
+         id="stop4" />
+      <stop
+         stop-color="#009090"
+         offset=".7003"
+         id="stop6" />
+      <stop
+         stop-color="#008585"
+         offset=".8325"
+         id="stop8" />
+      <stop
+         stop-color="#007474"
+         offset=".9387"
+         id="stop10" />
+      <stop
+         stop-color="#066"
+         offset="1"
+         id="stop12" />
+    </linearGradient>
+    <linearGradient
+       id="g"
+       x1="107.34"
+       x2="74.809998"
+       y1="100.46"
+       y2="178.99001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#06c"
+         offset="0"
+         id="stop15" />
+      <stop
+         stop-color="#0064ca"
+         offset=".5149"
+         id="stop17" />
+      <stop
+         stop-color="#005dc3"
+         offset=".7003"
+         id="stop19" />
+      <stop
+         stop-color="#0052b8"
+         offset=".8325"
+         id="stop21" />
+      <stop
+         stop-color="#0041a7"
+         offset=".9387"
+         id="stop23" />
+      <stop
+         stop-color="#039"
+         offset="1"
+         id="stop25" />
+    </linearGradient>
+    <linearGradient
+       id="f"
+       x1="86.549004"
+       x2="164.52"
+       y1="204.21001"
+       y2="235.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#c33"
+         offset="0"
+         id="stop28" />
+      <stop
+         stop-color="#ca3131"
+         offset=".5149"
+         id="stop30" />
+      <stop
+         stop-color="#c32a2a"
+         offset=".7003"
+         id="stop32" />
+      <stop
+         stop-color="#b81f1f"
+         offset=".8325"
+         id="stop34" />
+      <stop
+         stop-color="#a70e0e"
+         offset=".9387"
+         id="stop36" />
+      <stop
+         stop-color="#900"
+         offset="1"
+         id="stop38" />
+    </linearGradient>
+    <linearGradient
+       id="e"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#f93"
+         offset="0"
+         id="stop41" />
+      <stop
+         stop-color="#fd9731"
+         offset=".5149"
+         id="stop43" />
+      <stop
+         stop-color="#f6902a"
+         offset=".7003"
+         id="stop45" />
+      <stop
+         stop-color="#eb851f"
+         offset=".8325"
+         id="stop47" />
+      <stop
+         stop-color="#da740e"
+         offset=".9387"
+         id="stop49" />
+      <stop
+         stop-color="#c60"
+         offset="1"
+         id="stop51" />
+    </linearGradient>
+    <linearGradient
+       id="d"
+       x1="208.17"
+       x2="123.71"
+       y1="122.97"
+       y2="87.987999"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#093"
+         offset="0"
+         id="stop54" />
+      <stop
+         stop-color="#009731"
+         offset=".5149"
+         id="stop56" />
+      <stop
+         stop-color="#00902a"
+         offset=".7003"
+         id="stop58" />
+      <stop
+         stop-color="#00851f"
+         offset=".8325"
+         id="stop60" />
+      <stop
+         stop-color="#00740e"
+         offset=".9387"
+         id="stop62" />
+      <stop
+         stop-color="#060"
+         offset="1"
+         id="stop64" />
+    </linearGradient>
+    <linearGradient
+       id="c"
+       x1="186.36"
+       x2="219.41"
+       y1="222.75"
+       y2="147.33"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#fc0"
+         offset="0"
+         id="stop67" />
+      <stop
+         stop-color="#fdca00"
+         offset=".5149"
+         id="stop69" />
+      <stop
+         stop-color="#f6c300"
+         offset=".7003"
+         id="stop71" />
+      <stop
+         stop-color="#ebb800"
+         offset=".8325"
+         id="stop73" />
+      <stop
+         stop-color="#daa700"
+         offset=".9387"
+         id="stop75" />
+      <stop
+         stop-color="#c90"
+         offset="1"
+         id="stop77" />
+    </linearGradient>
+    <linearGradient
+       id="b"
+       x1="218.00999"
+       x2="187.5"
+       y1="177.11"
+       y2="103.38"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#9c3"
+         offset="0"
+         id="stop80" />
+      <stop
+         stop-color="#97ca31"
+         offset=".5149"
+         id="stop82" />
+      <stop
+         stop-color="#90c32a"
+         offset=".7003"
+         id="stop84" />
+      <stop
+         stop-color="#85b81f"
+         offset=".8325"
+         id="stop86" />
+      <stop
+         stop-color="#74a70e"
+         offset=".9387"
+         id="stop88" />
+      <stop
+         stop-color="#690"
+         offset="1"
+         id="stop90" />
+    </linearGradient>
+    <linearGradient
+       id="a"
+       x1="75.961998"
+       x2="107.32"
+       y1="147.89999"
+       y2="226.71001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#939"
+         offset="0"
+         id="stop93" />
+      <stop
+         stop-color="#973197"
+         offset=".5149"
+         id="stop95" />
+      <stop
+         stop-color="#902a90"
+         offset=".7003"
+         id="stop97" />
+      <stop
+         stop-color="#851f85"
+         offset=".8325"
+         id="stop99" />
+      <stop
+         stop-color="#740e74"
+         offset=".9387"
+         id="stop101" />
+      <stop
+         stop-color="#606"
+         offset="1"
+         id="stop103" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath38">
+      <path
+         d="M 0,520 H 520 V 0 H 0 Z"
+         id="path36"
+         inkscape:connector-curvature="0" />
+    </clipPath>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1109"
+       id="linearGradient1095-2"
+       x1="15.731466"
+       y1="34.984047"
+       x2="34.50996"
+       y2="26.098288"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.77420991,0,0,0.77420991,16.41646,5.9424217)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1109"
+       id="linearGradient1728"
+       gradientUnits="userSpaceOnUse"
+       x1="6.6753492"
+       y1="39.298244"
+       x2="32.963676"
+       y2="22.047657" />
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="g-1"
+       x1="107.34"
+       x2="74.809998"
+       y1="100.46"
+       y2="178.99001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#06c"
+         offset="0"
+         id="stop15-9" />
+      <stop
+         stop-color="#0064ca"
+         offset=".5149"
+         id="stop17-4" />
+      <stop
+         stop-color="#005dc3"
+         offset=".7003"
+         id="stop19-7" />
+      <stop
+         stop-color="#0052b8"
+         offset=".8325"
+         id="stop21-8" />
+      <stop
+         stop-color="#0041a7"
+         offset=".9387"
+         id="stop23-4" />
+      <stop
+         stop-color="#039"
+         offset="1"
+         id="stop25-5" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="a-3"
+       x1="75.961998"
+       x2="107.32"
+       y1="147.89999"
+       y2="226.71001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#939"
+         offset="0"
+         id="stop93-6" />
+      <stop
+         stop-color="#973197"
+         offset=".5149"
+         id="stop95-7" />
+      <stop
+         stop-color="#902a90"
+         offset=".7003"
+         id="stop97-5" />
+      <stop
+         stop-color="#851f85"
+         offset=".8325"
+         id="stop99-3" />
+      <stop
+         stop-color="#740e74"
+         offset=".9387"
+         id="stop101-5" />
+      <stop
+         stop-color="#606"
+         offset="1"
+         id="stop103-6" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="f-7"
+       x1="86.549004"
+       x2="164.52"
+       y1="204.21001"
+       y2="235.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#c33"
+         offset="0"
+         id="stop28-3" />
+      <stop
+         stop-color="#ca3131"
+         offset=".5149"
+         id="stop30-6" />
+      <stop
+         stop-color="#c32a2a"
+         offset=".7003"
+         id="stop32-1" />
+      <stop
+         stop-color="#b81f1f"
+         offset=".8325"
+         id="stop34-2" />
+      <stop
+         stop-color="#a70e0e"
+         offset=".9387"
+         id="stop36-9" />
+      <stop
+         stop-color="#900"
+         offset="1"
+         id="stop38-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="e-7"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#f93"
+         offset="0"
+         id="stop41-5" />
+      <stop
+         stop-color="#fd9731"
+         offset=".5149"
+         id="stop43-9" />
+      <stop
+         stop-color="#f6902a"
+         offset=".7003"
+         id="stop45-2" />
+      <stop
+         stop-color="#eb851f"
+         offset=".8325"
+         id="stop47-2" />
+      <stop
+         stop-color="#da740e"
+         offset=".9387"
+         id="stop49-8" />
+      <stop
+         stop-color="#c60"
+         offset="1"
+         id="stop51-9" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="c-3"
+       x1="186.36"
+       x2="219.41"
+       y1="222.75"
+       y2="147.33"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#fc0"
+         offset="0"
+         id="stop67-6" />
+      <stop
+         stop-color="#fdca00"
+         offset=".5149"
+         id="stop69-0" />
+      <stop
+         stop-color="#f6c300"
+         offset=".7003"
+         id="stop71-6" />
+      <stop
+         stop-color="#ebb800"
+         offset=".8325"
+         id="stop73-2" />
+      <stop
+         stop-color="#daa700"
+         offset=".9387"
+         id="stop75-6" />
+      <stop
+         stop-color="#c90"
+         offset="1"
+         id="stop77-1" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="b-2"
+       x1="218.00999"
+       x2="187.5"
+       y1="177.11"
+       y2="103.38"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#9c3"
+         offset="0"
+         id="stop80-9" />
+      <stop
+         stop-color="#97ca31"
+         offset=".5149"
+         id="stop82-1" />
+      <stop
+         stop-color="#90c32a"
+         offset=".7003"
+         id="stop84-2" />
+      <stop
+         stop-color="#85b81f"
+         offset=".8325"
+         id="stop86-7" />
+      <stop
+         stop-color="#74a70e"
+         offset=".9387"
+         id="stop88-0" />
+      <stop
+         stop-color="#690"
+         offset="1"
+         id="stop90-9" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="d-8"
+       x1="208.17"
+       x2="123.71"
+       y1="122.97"
+       y2="87.987999"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#093"
+         offset="0"
+         id="stop54-7" />
+      <stop
+         stop-color="#009731"
+         offset=".5149"
+         id="stop56-9" />
+      <stop
+         stop-color="#00902a"
+         offset=".7003"
+         id="stop58-2" />
+      <stop
+         stop-color="#00851f"
+         offset=".8325"
+         id="stop60-0" />
+      <stop
+         stop-color="#00740e"
+         offset=".9387"
+         id="stop62-2" />
+      <stop
+         stop-color="#060"
+         offset="1"
+         id="stop64-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="h-0"
+       x1="161.42"
+       x2="83.68"
+       y1="91.501999"
+       y2="123.7"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#099"
+         offset="0"
+         id="stop2-3" />
+      <stop
+         stop-color="#009797"
+         offset=".5149"
+         id="stop4-6" />
+      <stop
+         stop-color="#009090"
+         offset=".7003"
+         id="stop6-1" />
+      <stop
+         stop-color="#008585"
+         offset=".8325"
+         id="stop8-0" />
+      <stop
+         stop-color="#007474"
+         offset=".9387"
+         id="stop10-6" />
+      <stop
+         stop-color="#066"
+         offset="1"
+         id="stop12-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="g-1-1"
+       x1="107.34"
+       x2="74.809998"
+       y1="100.46"
+       y2="178.99001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#06c"
+         offset="0"
+         id="stop15-9-0" />
+      <stop
+         stop-color="#0064ca"
+         offset=".5149"
+         id="stop17-4-6" />
+      <stop
+         stop-color="#005dc3"
+         offset=".7003"
+         id="stop19-7-1" />
+      <stop
+         stop-color="#0052b8"
+         offset=".8325"
+         id="stop21-8-5" />
+      <stop
+         stop-color="#0041a7"
+         offset=".9387"
+         id="stop23-4-9" />
+      <stop
+         stop-color="#039"
+         offset="1"
+         id="stop25-5-4" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="a-3-9"
+       x1="75.961998"
+       x2="107.32"
+       y1="147.89999"
+       y2="226.71001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#939"
+         offset="0"
+         id="stop93-6-0" />
+      <stop
+         stop-color="#973197"
+         offset=".5149"
+         id="stop95-7-9" />
+      <stop
+         stop-color="#902a90"
+         offset=".7003"
+         id="stop97-5-1" />
+      <stop
+         stop-color="#851f85"
+         offset=".8325"
+         id="stop99-3-7" />
+      <stop
+         stop-color="#740e74"
+         offset=".9387"
+         id="stop101-5-7" />
+      <stop
+         stop-color="#606"
+         offset="1"
+         id="stop103-6-1" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="f-7-1"
+       x1="86.549004"
+       x2="164.52"
+       y1="204.21001"
+       y2="235.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#c33"
+         offset="0"
+         id="stop28-3-5" />
+      <stop
+         stop-color="#ca3131"
+         offset=".5149"
+         id="stop30-6-9" />
+      <stop
+         stop-color="#c32a2a"
+         offset=".7003"
+         id="stop32-1-7" />
+      <stop
+         stop-color="#b81f1f"
+         offset=".8325"
+         id="stop34-2-7" />
+      <stop
+         stop-color="#a70e0e"
+         offset=".9387"
+         id="stop36-9-6" />
+      <stop
+         stop-color="#900"
+         offset="1"
+         id="stop38-3-7" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="e-7-3"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#f93"
+         offset="0"
+         id="stop41-5-6" />
+      <stop
+         stop-color="#fd9731"
+         offset=".5149"
+         id="stop43-9-5" />
+      <stop
+         stop-color="#f6902a"
+         offset=".7003"
+         id="stop45-2-6" />
+      <stop
+         stop-color="#eb851f"
+         offset=".8325"
+         id="stop47-2-3" />
+      <stop
+         stop-color="#da740e"
+         offset=".9387"
+         id="stop49-8-9" />
+      <stop
+         stop-color="#c60"
+         offset="1"
+         id="stop51-9-4" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="c-3-8"
+       x1="186.36"
+       x2="219.41"
+       y1="222.75"
+       y2="147.33"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#fc0"
+         offset="0"
+         id="stop67-6-1" />
+      <stop
+         stop-color="#fdca00"
+         offset=".5149"
+         id="stop69-0-2" />
+      <stop
+         stop-color="#f6c300"
+         offset=".7003"
+         id="stop71-6-9" />
+      <stop
+         stop-color="#ebb800"
+         offset=".8325"
+         id="stop73-2-3" />
+      <stop
+         stop-color="#daa700"
+         offset=".9387"
+         id="stop75-6-9" />
+      <stop
+         stop-color="#c90"
+         offset="1"
+         id="stop77-1-0" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="b-2-8"
+       x1="218.00999"
+       x2="187.5"
+       y1="177.11"
+       y2="103.38"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#9c3"
+         offset="0"
+         id="stop80-9-8" />
+      <stop
+         stop-color="#97ca31"
+         offset=".5149"
+         id="stop82-1-5" />
+      <stop
+         stop-color="#90c32a"
+         offset=".7003"
+         id="stop84-2-0" />
+      <stop
+         stop-color="#85b81f"
+         offset=".8325"
+         id="stop86-7-9" />
+      <stop
+         stop-color="#74a70e"
+         offset=".9387"
+         id="stop88-0-6" />
+      <stop
+         stop-color="#690"
+         offset="1"
+         id="stop90-9-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="d-8-8"
+       x1="208.17"
+       x2="123.71"
+       y1="122.97"
+       y2="87.987999"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#093"
+         offset="0"
+         id="stop54-7-5" />
+      <stop
+         stop-color="#009731"
+         offset=".5149"
+         id="stop56-9-6" />
+      <stop
+         stop-color="#00902a"
+         offset=".7003"
+         id="stop58-2-1" />
+      <stop
+         stop-color="#00851f"
+         offset=".8325"
+         id="stop60-0-1" />
+      <stop
+         stop-color="#00740e"
+         offset=".9387"
+         id="stop62-2-5" />
+      <stop
+         stop-color="#060"
+         offset="1"
+         id="stop64-3-9" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="h-0-8"
+       x1="161.42"
+       x2="83.68"
+       y1="91.501999"
+       y2="123.7"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#099"
+         offset="0"
+         id="stop2-3-4" />
+      <stop
+         stop-color="#009797"
+         offset=".5149"
+         id="stop4-6-8" />
+      <stop
+         stop-color="#009090"
+         offset=".7003"
+         id="stop6-1-1" />
+      <stop
+         stop-color="#008585"
+         offset=".8325"
+         id="stop8-0-0" />
+      <stop
+         stop-color="#007474"
+         offset=".9387"
+         id="stop10-6-3" />
+      <stop
+         stop-color="#066"
+         offset="1"
+         id="stop12-3-0" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3382"
+       id="linearGradient3384"
+       x1="12.976564"
+       y1="27.989347"
+       x2="43.307491"
+       y2="27.856308"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-75.188904,26.100287)" />
+  </defs>
+  <path
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.84922767"
+     d="M 12.703125 20.558594 L 0 24 L 12.710938 27.443359 A 11.8125 11.8125 0 0 1 12.238281 25 L 18.03125 25 A 6.0520388 6.0520388 0 0 1 17.947266 24 A 6.0520388 6.0520388 0 0 1 18.037109 23 L 12.238281 23 A 11.8125 11.8125 0 0 1 12.703125 20.558594 z "
+     transform="matrix(1.1357348,0,0,1.1357348,-3.2576355,0)"
+     id="path2910"
+     inkscape:label="left" />
+  <path
+     inkscape:connector-curvature="0"
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.10023212"
+     d="m 36.830253,23.349109 14.42738,3.908525 -14.436253,3.910742 a 13.415867,13.415867 0 0 0 0.536812,-2.775008 h -6.579275 a 6.8735109,6.8735109 0 0 0 0.09538,-1.135734 6.8735109,6.8735109 0 0 0 -0.102035,-1.135735 h 6.58593 a 13.415867,13.415867 0 0 0 -0.527939,-2.77279 z"
+     id="path2910-3"
+     inkscape:label="right" />
+  <path
+     inkscape:connector-curvature="0"
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.10023212"
+     d="m 20.091475,40.087889 3.908524,14.42738 3.910743,-14.436254 a 13.415867,13.415867 0 0 1 -2.775008,0.536813 v -6.579276 a 6.8735109,6.8735109 0 0 1 -1.135735,0.09538 6.8735109,6.8735109 0 0 1 -1.135735,-0.102034 v 6.58593 a 13.415867,13.415867 0 0 1 -2.772789,-0.527939 z"
+     id="path2910-6"
+     inkscape:label="down" />
+  <path
+     inkscape:connector-curvature="0"
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.10023212"
+     d="M 20.090365,14.42738 23.998889,0 27.909632,14.436254 a 13.415867,13.415867 0 0 0 -2.775008,-0.536813 v 6.579276 a 6.8735109,6.8735109 0 0 0 -1.135734,-0.09538 6.8735109,6.8735109 0 0 0 -1.135735,0.102034 v -6.58593 a 13.415867,13.415867 0 0 0 -2.77279,0.527939 z"
+     id="path2910-6-9"
+     inkscape:label="up" />
+</svg>
diff --git a/cinelerra-5.1/plugins/theme_suv/data/clip_icon.svg b/cinelerra-5.1/plugins/theme_suv/data/clip_icon.svg
new file mode 100644 (file)
index 0000000..b8bc9fa
--- /dev/null
@@ -0,0 +1,1092 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   enable-background="new 0 0 299.26 339.88"
+   viewBox="0 0 47.999998 54.515269"
+   version="1.1"
+   id="svg124"
+   sodipodi:docname="move_icon_1.1.svg"
+   inkscape:version="0.92.3 (2405546, 2018-03-11)"
+   inkscape:export-filename="/home/spc/Bilder/Cinfinity_new_buttons/move-app-icon.png"
+   inkscape:export-xdpi="96"
+   inkscape:export-ydpi="96">
+  <title
+     id="title9470">Cinelerra GG Infinity move icon</title>
+  <metadata
+     id="metadata128">
+    <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>Cinelerra GG Infinity move icon</dc:title>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Sam D.</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:publisher>
+          <cc:Agent>
+            <dc:title>Sam D.</dc:title>
+          </cc:Agent>
+        </dc:publisher>
+        <dc:language>En</dc:language>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>Cinelerra GG Infinity move icon</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <dc:description>Cinelerra GG Infinity move icon</dc:description>
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#000000"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="2560"
+     inkscape:window-height="1369"
+     id="namedview126"
+     showgrid="false"
+     inkscape:snap-global="true"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:snap-bbox="true"
+     inkscape:bbox-paths="true"
+     inkscape:bbox-nodes="true"
+     inkscape:snap-bbox-edge-midpoints="true"
+     inkscape:snap-bbox-midpoints="true"
+     inkscape:object-paths="true"
+     inkscape:snap-intersection-paths="true"
+     inkscape:snap-smooth-nodes="true"
+     inkscape:snap-midpoints="true"
+     inkscape:pagecheckerboard="true"
+     inkscape:zoom="16"
+     inkscape:cx="29.021926"
+     inkscape:cy="24.297629"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg124"
+     inkscape:snap-page="true">
+    <sodipodi:guide
+       position="5.9999997,27.257635"
+       orientation="1,0"
+       id="guide9367"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="41.999998,27.257635"
+       orientation="1,0"
+       id="guide9369"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="23.999999,41.543049"
+       orientation="1,0"
+       id="guide9371"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="21.743533,47.70086"
+       orientation="0,1"
+       id="guide3370"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="19.180271,6.8144086"
+       orientation="0,1"
+       id="guide3372"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="23.999999,27.257635"
+       orientation="0,1"
+       id="guide7557"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+  </sodipodi:namedview>
+  <defs
+     id="defs106">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3382">
+      <stop
+         style="stop-color:#ff3434;stop-opacity:1"
+         offset="0"
+         id="stop3378" />
+      <stop
+         style="stop-color:#f2ed00;stop-opacity:1"
+         offset="1"
+         id="stop3380" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3259"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         style="stop-color:#ff7233;stop-opacity:1"
+         stop-color="#f93"
+         offset="0"
+         id="stop3247" />
+      <stop
+         style="stop-color:#fdf931;stop-opacity:1"
+         stop-color="#fd9731"
+         offset="0.13612744"
+         id="stop3249" />
+      <stop
+         style="stop-color:#2af62e;stop-opacity:1"
+         stop-color="#f6902a"
+         offset="0.34990042"
+         id="stop3251" />
+      <stop
+         style="stop-color:#338dff;stop-opacity:1"
+         stop-color="#eb851f"
+         offset="0.50524527"
+         id="stop3253" />
+      <stop
+         style="stop-color:#da0eae;stop-opacity:1"
+         stop-color="#da740e"
+         offset="0.80296719"
+         id="stop3255" />
+      <stop
+         style="stop-color:#cc0033;stop-opacity:1"
+         stop-color="#c60"
+         offset="1"
+         id="stop3257" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2579"
+       osb:paint="solid">
+      <stop
+         style="stop-color:#464646;stop-opacity:1;"
+         offset="0"
+         id="stop2577" />
+    </linearGradient>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="202.56"
+       y1="233.06"
+       x2="209.19"
+       x1="134.61"
+       id="linearGradient1109">
+      <stop
+         id="stop1097"
+         offset="0"
+         stop-color="#f93"
+         style="stop-color:#ff7233;stop-opacity:1" />
+      <stop
+         id="stop1099"
+         offset="0.1840131"
+         stop-color="#fd9731"
+         style="stop-color:#fdf931;stop-opacity:1" />
+      <stop
+         id="stop1101"
+         offset="0.37539905"
+         stop-color="#f6902a"
+         style="stop-color:#2af62e;stop-opacity:1" />
+      <stop
+         id="stop1103"
+         offset="0.59079379"
+         stop-color="#eb851f"
+         style="stop-color:#338dff;stop-opacity:1" />
+      <stop
+         id="stop1105"
+         offset="0.80296719"
+         stop-color="#da740e"
+         style="stop-color:#da0eae;stop-opacity:1" />
+      <stop
+         id="stop1107"
+         offset="1"
+         stop-color="#c60"
+         style="stop-color:#cc0033;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="h"
+       x1="161.42"
+       x2="83.68"
+       y1="91.501999"
+       y2="123.7"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#099"
+         offset="0"
+         id="stop2" />
+      <stop
+         stop-color="#009797"
+         offset=".5149"
+         id="stop4" />
+      <stop
+         stop-color="#009090"
+         offset=".7003"
+         id="stop6" />
+      <stop
+         stop-color="#008585"
+         offset=".8325"
+         id="stop8" />
+      <stop
+         stop-color="#007474"
+         offset=".9387"
+         id="stop10" />
+      <stop
+         stop-color="#066"
+         offset="1"
+         id="stop12" />
+    </linearGradient>
+    <linearGradient
+       id="g"
+       x1="107.34"
+       x2="74.809998"
+       y1="100.46"
+       y2="178.99001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#06c"
+         offset="0"
+         id="stop15" />
+      <stop
+         stop-color="#0064ca"
+         offset=".5149"
+         id="stop17" />
+      <stop
+         stop-color="#005dc3"
+         offset=".7003"
+         id="stop19" />
+      <stop
+         stop-color="#0052b8"
+         offset=".8325"
+         id="stop21" />
+      <stop
+         stop-color="#0041a7"
+         offset=".9387"
+         id="stop23" />
+      <stop
+         stop-color="#039"
+         offset="1"
+         id="stop25" />
+    </linearGradient>
+    <linearGradient
+       id="f"
+       x1="86.549004"
+       x2="164.52"
+       y1="204.21001"
+       y2="235.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#c33"
+         offset="0"
+         id="stop28" />
+      <stop
+         stop-color="#ca3131"
+         offset=".5149"
+         id="stop30" />
+      <stop
+         stop-color="#c32a2a"
+         offset=".7003"
+         id="stop32" />
+      <stop
+         stop-color="#b81f1f"
+         offset=".8325"
+         id="stop34" />
+      <stop
+         stop-color="#a70e0e"
+         offset=".9387"
+         id="stop36" />
+      <stop
+         stop-color="#900"
+         offset="1"
+         id="stop38" />
+    </linearGradient>
+    <linearGradient
+       id="e"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#f93"
+         offset="0"
+         id="stop41" />
+      <stop
+         stop-color="#fd9731"
+         offset=".5149"
+         id="stop43" />
+      <stop
+         stop-color="#f6902a"
+         offset=".7003"
+         id="stop45" />
+      <stop
+         stop-color="#eb851f"
+         offset=".8325"
+         id="stop47" />
+      <stop
+         stop-color="#da740e"
+         offset=".9387"
+         id="stop49" />
+      <stop
+         stop-color="#c60"
+         offset="1"
+         id="stop51" />
+    </linearGradient>
+    <linearGradient
+       id="d"
+       x1="208.17"
+       x2="123.71"
+       y1="122.97"
+       y2="87.987999"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#093"
+         offset="0"
+         id="stop54" />
+      <stop
+         stop-color="#009731"
+         offset=".5149"
+         id="stop56" />
+      <stop
+         stop-color="#00902a"
+         offset=".7003"
+         id="stop58" />
+      <stop
+         stop-color="#00851f"
+         offset=".8325"
+         id="stop60" />
+      <stop
+         stop-color="#00740e"
+         offset=".9387"
+         id="stop62" />
+      <stop
+         stop-color="#060"
+         offset="1"
+         id="stop64" />
+    </linearGradient>
+    <linearGradient
+       id="c"
+       x1="186.36"
+       x2="219.41"
+       y1="222.75"
+       y2="147.33"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#fc0"
+         offset="0"
+         id="stop67" />
+      <stop
+         stop-color="#fdca00"
+         offset=".5149"
+         id="stop69" />
+      <stop
+         stop-color="#f6c300"
+         offset=".7003"
+         id="stop71" />
+      <stop
+         stop-color="#ebb800"
+         offset=".8325"
+         id="stop73" />
+      <stop
+         stop-color="#daa700"
+         offset=".9387"
+         id="stop75" />
+      <stop
+         stop-color="#c90"
+         offset="1"
+         id="stop77" />
+    </linearGradient>
+    <linearGradient
+       id="b"
+       x1="218.00999"
+       x2="187.5"
+       y1="177.11"
+       y2="103.38"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#9c3"
+         offset="0"
+         id="stop80" />
+      <stop
+         stop-color="#97ca31"
+         offset=".5149"
+         id="stop82" />
+      <stop
+         stop-color="#90c32a"
+         offset=".7003"
+         id="stop84" />
+      <stop
+         stop-color="#85b81f"
+         offset=".8325"
+         id="stop86" />
+      <stop
+         stop-color="#74a70e"
+         offset=".9387"
+         id="stop88" />
+      <stop
+         stop-color="#690"
+         offset="1"
+         id="stop90" />
+    </linearGradient>
+    <linearGradient
+       id="a"
+       x1="75.961998"
+       x2="107.32"
+       y1="147.89999"
+       y2="226.71001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#939"
+         offset="0"
+         id="stop93" />
+      <stop
+         stop-color="#973197"
+         offset=".5149"
+         id="stop95" />
+      <stop
+         stop-color="#902a90"
+         offset=".7003"
+         id="stop97" />
+      <stop
+         stop-color="#851f85"
+         offset=".8325"
+         id="stop99" />
+      <stop
+         stop-color="#740e74"
+         offset=".9387"
+         id="stop101" />
+      <stop
+         stop-color="#606"
+         offset="1"
+         id="stop103" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath38">
+      <path
+         d="M 0,520 H 520 V 0 H 0 Z"
+         id="path36"
+         inkscape:connector-curvature="0" />
+    </clipPath>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1109"
+       id="linearGradient1095-2"
+       x1="15.731466"
+       y1="34.984047"
+       x2="34.50996"
+       y2="26.098288"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.77420991,0,0,0.77420991,16.41646,5.9424217)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1109"
+       id="linearGradient1728"
+       gradientUnits="userSpaceOnUse"
+       x1="6.6753492"
+       y1="39.298244"
+       x2="32.963676"
+       y2="22.047657" />
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="g-1"
+       x1="107.34"
+       x2="74.809998"
+       y1="100.46"
+       y2="178.99001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#06c"
+         offset="0"
+         id="stop15-9" />
+      <stop
+         stop-color="#0064ca"
+         offset=".5149"
+         id="stop17-4" />
+      <stop
+         stop-color="#005dc3"
+         offset=".7003"
+         id="stop19-7" />
+      <stop
+         stop-color="#0052b8"
+         offset=".8325"
+         id="stop21-8" />
+      <stop
+         stop-color="#0041a7"
+         offset=".9387"
+         id="stop23-4" />
+      <stop
+         stop-color="#039"
+         offset="1"
+         id="stop25-5" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="a-3"
+       x1="75.961998"
+       x2="107.32"
+       y1="147.89999"
+       y2="226.71001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#939"
+         offset="0"
+         id="stop93-6" />
+      <stop
+         stop-color="#973197"
+         offset=".5149"
+         id="stop95-7" />
+      <stop
+         stop-color="#902a90"
+         offset=".7003"
+         id="stop97-5" />
+      <stop
+         stop-color="#851f85"
+         offset=".8325"
+         id="stop99-3" />
+      <stop
+         stop-color="#740e74"
+         offset=".9387"
+         id="stop101-5" />
+      <stop
+         stop-color="#606"
+         offset="1"
+         id="stop103-6" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="f-7"
+       x1="86.549004"
+       x2="164.52"
+       y1="204.21001"
+       y2="235.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#c33"
+         offset="0"
+         id="stop28-3" />
+      <stop
+         stop-color="#ca3131"
+         offset=".5149"
+         id="stop30-6" />
+      <stop
+         stop-color="#c32a2a"
+         offset=".7003"
+         id="stop32-1" />
+      <stop
+         stop-color="#b81f1f"
+         offset=".8325"
+         id="stop34-2" />
+      <stop
+         stop-color="#a70e0e"
+         offset=".9387"
+         id="stop36-9" />
+      <stop
+         stop-color="#900"
+         offset="1"
+         id="stop38-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="e-7"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#f93"
+         offset="0"
+         id="stop41-5" />
+      <stop
+         stop-color="#fd9731"
+         offset=".5149"
+         id="stop43-9" />
+      <stop
+         stop-color="#f6902a"
+         offset=".7003"
+         id="stop45-2" />
+      <stop
+         stop-color="#eb851f"
+         offset=".8325"
+         id="stop47-2" />
+      <stop
+         stop-color="#da740e"
+         offset=".9387"
+         id="stop49-8" />
+      <stop
+         stop-color="#c60"
+         offset="1"
+         id="stop51-9" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="c-3"
+       x1="186.36"
+       x2="219.41"
+       y1="222.75"
+       y2="147.33"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#fc0"
+         offset="0"
+         id="stop67-6" />
+      <stop
+         stop-color="#fdca00"
+         offset=".5149"
+         id="stop69-0" />
+      <stop
+         stop-color="#f6c300"
+         offset=".7003"
+         id="stop71-6" />
+      <stop
+         stop-color="#ebb800"
+         offset=".8325"
+         id="stop73-2" />
+      <stop
+         stop-color="#daa700"
+         offset=".9387"
+         id="stop75-6" />
+      <stop
+         stop-color="#c90"
+         offset="1"
+         id="stop77-1" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="b-2"
+       x1="218.00999"
+       x2="187.5"
+       y1="177.11"
+       y2="103.38"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#9c3"
+         offset="0"
+         id="stop80-9" />
+      <stop
+         stop-color="#97ca31"
+         offset=".5149"
+         id="stop82-1" />
+      <stop
+         stop-color="#90c32a"
+         offset=".7003"
+         id="stop84-2" />
+      <stop
+         stop-color="#85b81f"
+         offset=".8325"
+         id="stop86-7" />
+      <stop
+         stop-color="#74a70e"
+         offset=".9387"
+         id="stop88-0" />
+      <stop
+         stop-color="#690"
+         offset="1"
+         id="stop90-9" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="d-8"
+       x1="208.17"
+       x2="123.71"
+       y1="122.97"
+       y2="87.987999"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#093"
+         offset="0"
+         id="stop54-7" />
+      <stop
+         stop-color="#009731"
+         offset=".5149"
+         id="stop56-9" />
+      <stop
+         stop-color="#00902a"
+         offset=".7003"
+         id="stop58-2" />
+      <stop
+         stop-color="#00851f"
+         offset=".8325"
+         id="stop60-0" />
+      <stop
+         stop-color="#00740e"
+         offset=".9387"
+         id="stop62-2" />
+      <stop
+         stop-color="#060"
+         offset="1"
+         id="stop64-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="h-0"
+       x1="161.42"
+       x2="83.68"
+       y1="91.501999"
+       y2="123.7"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#099"
+         offset="0"
+         id="stop2-3" />
+      <stop
+         stop-color="#009797"
+         offset=".5149"
+         id="stop4-6" />
+      <stop
+         stop-color="#009090"
+         offset=".7003"
+         id="stop6-1" />
+      <stop
+         stop-color="#008585"
+         offset=".8325"
+         id="stop8-0" />
+      <stop
+         stop-color="#007474"
+         offset=".9387"
+         id="stop10-6" />
+      <stop
+         stop-color="#066"
+         offset="1"
+         id="stop12-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="g-1-1"
+       x1="107.34"
+       x2="74.809998"
+       y1="100.46"
+       y2="178.99001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#06c"
+         offset="0"
+         id="stop15-9-0" />
+      <stop
+         stop-color="#0064ca"
+         offset=".5149"
+         id="stop17-4-6" />
+      <stop
+         stop-color="#005dc3"
+         offset=".7003"
+         id="stop19-7-1" />
+      <stop
+         stop-color="#0052b8"
+         offset=".8325"
+         id="stop21-8-5" />
+      <stop
+         stop-color="#0041a7"
+         offset=".9387"
+         id="stop23-4-9" />
+      <stop
+         stop-color="#039"
+         offset="1"
+         id="stop25-5-4" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="a-3-9"
+       x1="75.961998"
+       x2="107.32"
+       y1="147.89999"
+       y2="226.71001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#939"
+         offset="0"
+         id="stop93-6-0" />
+      <stop
+         stop-color="#973197"
+         offset=".5149"
+         id="stop95-7-9" />
+      <stop
+         stop-color="#902a90"
+         offset=".7003"
+         id="stop97-5-1" />
+      <stop
+         stop-color="#851f85"
+         offset=".8325"
+         id="stop99-3-7" />
+      <stop
+         stop-color="#740e74"
+         offset=".9387"
+         id="stop101-5-7" />
+      <stop
+         stop-color="#606"
+         offset="1"
+         id="stop103-6-1" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="f-7-1"
+       x1="86.549004"
+       x2="164.52"
+       y1="204.21001"
+       y2="235.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#c33"
+         offset="0"
+         id="stop28-3-5" />
+      <stop
+         stop-color="#ca3131"
+         offset=".5149"
+         id="stop30-6-9" />
+      <stop
+         stop-color="#c32a2a"
+         offset=".7003"
+         id="stop32-1-7" />
+      <stop
+         stop-color="#b81f1f"
+         offset=".8325"
+         id="stop34-2-7" />
+      <stop
+         stop-color="#a70e0e"
+         offset=".9387"
+         id="stop36-9-6" />
+      <stop
+         stop-color="#900"
+         offset="1"
+         id="stop38-3-7" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="e-7-3"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#f93"
+         offset="0"
+         id="stop41-5-6" />
+      <stop
+         stop-color="#fd9731"
+         offset=".5149"
+         id="stop43-9-5" />
+      <stop
+         stop-color="#f6902a"
+         offset=".7003"
+         id="stop45-2-6" />
+      <stop
+         stop-color="#eb851f"
+         offset=".8325"
+         id="stop47-2-3" />
+      <stop
+         stop-color="#da740e"
+         offset=".9387"
+         id="stop49-8-9" />
+      <stop
+         stop-color="#c60"
+         offset="1"
+         id="stop51-9-4" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="c-3-8"
+       x1="186.36"
+       x2="219.41"
+       y1="222.75"
+       y2="147.33"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#fc0"
+         offset="0"
+         id="stop67-6-1" />
+      <stop
+         stop-color="#fdca00"
+         offset=".5149"
+         id="stop69-0-2" />
+      <stop
+         stop-color="#f6c300"
+         offset=".7003"
+         id="stop71-6-9" />
+      <stop
+         stop-color="#ebb800"
+         offset=".8325"
+         id="stop73-2-3" />
+      <stop
+         stop-color="#daa700"
+         offset=".9387"
+         id="stop75-6-9" />
+      <stop
+         stop-color="#c90"
+         offset="1"
+         id="stop77-1-0" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="b-2-8"
+       x1="218.00999"
+       x2="187.5"
+       y1="177.11"
+       y2="103.38"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#9c3"
+         offset="0"
+         id="stop80-9-8" />
+      <stop
+         stop-color="#97ca31"
+         offset=".5149"
+         id="stop82-1-5" />
+      <stop
+         stop-color="#90c32a"
+         offset=".7003"
+         id="stop84-2-0" />
+      <stop
+         stop-color="#85b81f"
+         offset=".8325"
+         id="stop86-7-9" />
+      <stop
+         stop-color="#74a70e"
+         offset=".9387"
+         id="stop88-0-6" />
+      <stop
+         stop-color="#690"
+         offset="1"
+         id="stop90-9-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="d-8-8"
+       x1="208.17"
+       x2="123.71"
+       y1="122.97"
+       y2="87.987999"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#093"
+         offset="0"
+         id="stop54-7-5" />
+      <stop
+         stop-color="#009731"
+         offset=".5149"
+         id="stop56-9-6" />
+      <stop
+         stop-color="#00902a"
+         offset=".7003"
+         id="stop58-2-1" />
+      <stop
+         stop-color="#00851f"
+         offset=".8325"
+         id="stop60-0-1" />
+      <stop
+         stop-color="#00740e"
+         offset=".9387"
+         id="stop62-2-5" />
+      <stop
+         stop-color="#060"
+         offset="1"
+         id="stop64-3-9" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="h-0-8"
+       x1="161.42"
+       x2="83.68"
+       y1="91.501999"
+       y2="123.7"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#099"
+         offset="0"
+         id="stop2-3-4" />
+      <stop
+         stop-color="#009797"
+         offset=".5149"
+         id="stop4-6-8" />
+      <stop
+         stop-color="#009090"
+         offset=".7003"
+         id="stop6-1-1" />
+      <stop
+         stop-color="#008585"
+         offset=".8325"
+         id="stop8-0-0" />
+      <stop
+         stop-color="#007474"
+         offset=".9387"
+         id="stop10-6-3" />
+      <stop
+         stop-color="#066"
+         offset="1"
+         id="stop12-3-0" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3382"
+       id="linearGradient3384"
+       x1="12.976564"
+       y1="27.989347"
+       x2="43.307491"
+       y2="27.856308"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-75.188904,26.100287)" />
+  </defs>
+  <path
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.84922767"
+     d="M 12.703125 20.558594 L 0 24 L 12.710938 27.443359 A 11.8125 11.8125 0 0 1 12.238281 25 L 18.03125 25 A 6.0520388 6.0520388 0 0 1 17.947266 24 A 6.0520388 6.0520388 0 0 1 18.037109 23 L 12.238281 23 A 11.8125 11.8125 0 0 1 12.703125 20.558594 z "
+     transform="matrix(1.1357348,0,0,1.1357348,-3.2576355,0)"
+     id="path2910"
+     inkscape:label="left" />
+  <path
+     inkscape:connector-curvature="0"
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.10023212"
+     d="m 36.830253,23.349109 14.42738,3.908525 -14.436253,3.910742 a 13.415867,13.415867 0 0 0 0.536812,-2.775008 h -6.579275 a 6.8735109,6.8735109 0 0 0 0.09538,-1.135734 6.8735109,6.8735109 0 0 0 -0.102035,-1.135735 h 6.58593 a 13.415867,13.415867 0 0 0 -0.527939,-2.77279 z"
+     id="path2910-3"
+     inkscape:label="right" />
+  <path
+     inkscape:connector-curvature="0"
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.10023212"
+     d="m 20.091475,40.087889 3.908524,14.42738 3.910743,-14.436254 a 13.415867,13.415867 0 0 1 -2.775008,0.536813 v -6.579276 a 6.8735109,6.8735109 0 0 1 -1.135735,0.09538 6.8735109,6.8735109 0 0 1 -1.135735,-0.102034 v 6.58593 a 13.415867,13.415867 0 0 1 -2.772789,-0.527939 z"
+     id="path2910-6"
+     inkscape:label="down" />
+  <path
+     inkscape:connector-curvature="0"
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.10023212"
+     d="M 20.090365,14.42738 23.998889,0 27.909632,14.436254 a 13.415867,13.415867 0 0 0 -2.775008,-0.536813 v 6.579276 a 6.8735109,6.8735109 0 0 0 -1.135734,-0.09538 6.8735109,6.8735109 0 0 0 -1.135735,0.102034 v -6.58593 a 13.415867,13.415867 0 0 0 -2.77279,0.527939 z"
+     id="path2910-6-9"
+     inkscape:label="up" />
+</svg>
diff --git a/cinelerra-5.1/plugins/theme_unflat/data/clip_icon.svg b/cinelerra-5.1/plugins/theme_unflat/data/clip_icon.svg
new file mode 100644 (file)
index 0000000..b8bc9fa
--- /dev/null
@@ -0,0 +1,1092 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:xlink="http://www.w3.org/1999/xlink"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="48"
+   height="48"
+   enable-background="new 0 0 299.26 339.88"
+   viewBox="0 0 47.999998 54.515269"
+   version="1.1"
+   id="svg124"
+   sodipodi:docname="move_icon_1.1.svg"
+   inkscape:version="0.92.3 (2405546, 2018-03-11)"
+   inkscape:export-filename="/home/spc/Bilder/Cinfinity_new_buttons/move-app-icon.png"
+   inkscape:export-xdpi="96"
+   inkscape:export-ydpi="96">
+  <title
+     id="title9470">Cinelerra GG Infinity move icon</title>
+  <metadata
+     id="metadata128">
+    <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>Cinelerra GG Infinity move icon</dc:title>
+        <cc:license
+           rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
+        <dc:creator>
+          <cc:Agent>
+            <dc:title>Sam D.</dc:title>
+          </cc:Agent>
+        </dc:creator>
+        <dc:publisher>
+          <cc:Agent>
+            <dc:title>Sam D.</dc:title>
+          </cc:Agent>
+        </dc:publisher>
+        <dc:language>En</dc:language>
+        <dc:subject>
+          <rdf:Bag>
+            <rdf:li>Cinelerra GG Infinity move icon</rdf:li>
+          </rdf:Bag>
+        </dc:subject>
+        <dc:description>Cinelerra GG Infinity move icon</dc:description>
+      </cc:Work>
+      <cc:License
+         rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Reproduction" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#Distribution" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Notice" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#Attribution" />
+        <cc:permits
+           rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
+        <cc:requires
+           rdf:resource="http://creativecommons.org/ns#ShareAlike" />
+      </cc:License>
+    </rdf:RDF>
+  </metadata>
+  <sodipodi:namedview
+     pagecolor="#000000"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="2560"
+     inkscape:window-height="1369"
+     id="namedview126"
+     showgrid="false"
+     inkscape:snap-global="true"
+     showguides="true"
+     inkscape:guide-bbox="true"
+     inkscape:snap-bbox="true"
+     inkscape:bbox-paths="true"
+     inkscape:bbox-nodes="true"
+     inkscape:snap-bbox-edge-midpoints="true"
+     inkscape:snap-bbox-midpoints="true"
+     inkscape:object-paths="true"
+     inkscape:snap-intersection-paths="true"
+     inkscape:snap-smooth-nodes="true"
+     inkscape:snap-midpoints="true"
+     inkscape:pagecheckerboard="true"
+     inkscape:zoom="16"
+     inkscape:cx="29.021926"
+     inkscape:cy="24.297629"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="svg124"
+     inkscape:snap-page="true">
+    <sodipodi:guide
+       position="5.9999997,27.257635"
+       orientation="1,0"
+       id="guide9367"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="41.999998,27.257635"
+       orientation="1,0"
+       id="guide9369"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="23.999999,41.543049"
+       orientation="1,0"
+       id="guide9371"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="21.743533,47.70086"
+       orientation="0,1"
+       id="guide3370"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="19.180271,6.8144086"
+       orientation="0,1"
+       id="guide3372"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+    <sodipodi:guide
+       position="23.999999,27.257635"
+       orientation="0,1"
+       id="guide7557"
+       inkscape:locked="false"
+       inkscape:label=""
+       inkscape:color="rgb(0,0,255)" />
+  </sodipodi:namedview>
+  <defs
+     id="defs106">
+    <linearGradient
+       inkscape:collect="always"
+       id="linearGradient3382">
+      <stop
+         style="stop-color:#ff3434;stop-opacity:1"
+         offset="0"
+         id="stop3378" />
+      <stop
+         style="stop-color:#f2ed00;stop-opacity:1"
+         offset="1"
+         id="stop3380" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient3259"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         style="stop-color:#ff7233;stop-opacity:1"
+         stop-color="#f93"
+         offset="0"
+         id="stop3247" />
+      <stop
+         style="stop-color:#fdf931;stop-opacity:1"
+         stop-color="#fd9731"
+         offset="0.13612744"
+         id="stop3249" />
+      <stop
+         style="stop-color:#2af62e;stop-opacity:1"
+         stop-color="#f6902a"
+         offset="0.34990042"
+         id="stop3251" />
+      <stop
+         style="stop-color:#338dff;stop-opacity:1"
+         stop-color="#eb851f"
+         offset="0.50524527"
+         id="stop3253" />
+      <stop
+         style="stop-color:#da0eae;stop-opacity:1"
+         stop-color="#da740e"
+         offset="0.80296719"
+         id="stop3255" />
+      <stop
+         style="stop-color:#cc0033;stop-opacity:1"
+         stop-color="#c60"
+         offset="1"
+         id="stop3257" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient2579"
+       osb:paint="solid">
+      <stop
+         style="stop-color:#464646;stop-opacity:1;"
+         offset="0"
+         id="stop2577" />
+    </linearGradient>
+    <linearGradient
+       gradientUnits="userSpaceOnUse"
+       y2="202.56"
+       y1="233.06"
+       x2="209.19"
+       x1="134.61"
+       id="linearGradient1109">
+      <stop
+         id="stop1097"
+         offset="0"
+         stop-color="#f93"
+         style="stop-color:#ff7233;stop-opacity:1" />
+      <stop
+         id="stop1099"
+         offset="0.1840131"
+         stop-color="#fd9731"
+         style="stop-color:#fdf931;stop-opacity:1" />
+      <stop
+         id="stop1101"
+         offset="0.37539905"
+         stop-color="#f6902a"
+         style="stop-color:#2af62e;stop-opacity:1" />
+      <stop
+         id="stop1103"
+         offset="0.59079379"
+         stop-color="#eb851f"
+         style="stop-color:#338dff;stop-opacity:1" />
+      <stop
+         id="stop1105"
+         offset="0.80296719"
+         stop-color="#da740e"
+         style="stop-color:#da0eae;stop-opacity:1" />
+      <stop
+         id="stop1107"
+         offset="1"
+         stop-color="#c60"
+         style="stop-color:#cc0033;stop-opacity:1" />
+    </linearGradient>
+    <linearGradient
+       id="h"
+       x1="161.42"
+       x2="83.68"
+       y1="91.501999"
+       y2="123.7"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#099"
+         offset="0"
+         id="stop2" />
+      <stop
+         stop-color="#009797"
+         offset=".5149"
+         id="stop4" />
+      <stop
+         stop-color="#009090"
+         offset=".7003"
+         id="stop6" />
+      <stop
+         stop-color="#008585"
+         offset=".8325"
+         id="stop8" />
+      <stop
+         stop-color="#007474"
+         offset=".9387"
+         id="stop10" />
+      <stop
+         stop-color="#066"
+         offset="1"
+         id="stop12" />
+    </linearGradient>
+    <linearGradient
+       id="g"
+       x1="107.34"
+       x2="74.809998"
+       y1="100.46"
+       y2="178.99001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#06c"
+         offset="0"
+         id="stop15" />
+      <stop
+         stop-color="#0064ca"
+         offset=".5149"
+         id="stop17" />
+      <stop
+         stop-color="#005dc3"
+         offset=".7003"
+         id="stop19" />
+      <stop
+         stop-color="#0052b8"
+         offset=".8325"
+         id="stop21" />
+      <stop
+         stop-color="#0041a7"
+         offset=".9387"
+         id="stop23" />
+      <stop
+         stop-color="#039"
+         offset="1"
+         id="stop25" />
+    </linearGradient>
+    <linearGradient
+       id="f"
+       x1="86.549004"
+       x2="164.52"
+       y1="204.21001"
+       y2="235.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#c33"
+         offset="0"
+         id="stop28" />
+      <stop
+         stop-color="#ca3131"
+         offset=".5149"
+         id="stop30" />
+      <stop
+         stop-color="#c32a2a"
+         offset=".7003"
+         id="stop32" />
+      <stop
+         stop-color="#b81f1f"
+         offset=".8325"
+         id="stop34" />
+      <stop
+         stop-color="#a70e0e"
+         offset=".9387"
+         id="stop36" />
+      <stop
+         stop-color="#900"
+         offset="1"
+         id="stop38" />
+    </linearGradient>
+    <linearGradient
+       id="e"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#f93"
+         offset="0"
+         id="stop41" />
+      <stop
+         stop-color="#fd9731"
+         offset=".5149"
+         id="stop43" />
+      <stop
+         stop-color="#f6902a"
+         offset=".7003"
+         id="stop45" />
+      <stop
+         stop-color="#eb851f"
+         offset=".8325"
+         id="stop47" />
+      <stop
+         stop-color="#da740e"
+         offset=".9387"
+         id="stop49" />
+      <stop
+         stop-color="#c60"
+         offset="1"
+         id="stop51" />
+    </linearGradient>
+    <linearGradient
+       id="d"
+       x1="208.17"
+       x2="123.71"
+       y1="122.97"
+       y2="87.987999"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#093"
+         offset="0"
+         id="stop54" />
+      <stop
+         stop-color="#009731"
+         offset=".5149"
+         id="stop56" />
+      <stop
+         stop-color="#00902a"
+         offset=".7003"
+         id="stop58" />
+      <stop
+         stop-color="#00851f"
+         offset=".8325"
+         id="stop60" />
+      <stop
+         stop-color="#00740e"
+         offset=".9387"
+         id="stop62" />
+      <stop
+         stop-color="#060"
+         offset="1"
+         id="stop64" />
+    </linearGradient>
+    <linearGradient
+       id="c"
+       x1="186.36"
+       x2="219.41"
+       y1="222.75"
+       y2="147.33"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#fc0"
+         offset="0"
+         id="stop67" />
+      <stop
+         stop-color="#fdca00"
+         offset=".5149"
+         id="stop69" />
+      <stop
+         stop-color="#f6c300"
+         offset=".7003"
+         id="stop71" />
+      <stop
+         stop-color="#ebb800"
+         offset=".8325"
+         id="stop73" />
+      <stop
+         stop-color="#daa700"
+         offset=".9387"
+         id="stop75" />
+      <stop
+         stop-color="#c90"
+         offset="1"
+         id="stop77" />
+    </linearGradient>
+    <linearGradient
+       id="b"
+       x1="218.00999"
+       x2="187.5"
+       y1="177.11"
+       y2="103.38"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#9c3"
+         offset="0"
+         id="stop80" />
+      <stop
+         stop-color="#97ca31"
+         offset=".5149"
+         id="stop82" />
+      <stop
+         stop-color="#90c32a"
+         offset=".7003"
+         id="stop84" />
+      <stop
+         stop-color="#85b81f"
+         offset=".8325"
+         id="stop86" />
+      <stop
+         stop-color="#74a70e"
+         offset=".9387"
+         id="stop88" />
+      <stop
+         stop-color="#690"
+         offset="1"
+         id="stop90" />
+    </linearGradient>
+    <linearGradient
+       id="a"
+       x1="75.961998"
+       x2="107.32"
+       y1="147.89999"
+       y2="226.71001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#939"
+         offset="0"
+         id="stop93" />
+      <stop
+         stop-color="#973197"
+         offset=".5149"
+         id="stop95" />
+      <stop
+         stop-color="#902a90"
+         offset=".7003"
+         id="stop97" />
+      <stop
+         stop-color="#851f85"
+         offset=".8325"
+         id="stop99" />
+      <stop
+         stop-color="#740e74"
+         offset=".9387"
+         id="stop101" />
+      <stop
+         stop-color="#606"
+         offset="1"
+         id="stop103" />
+    </linearGradient>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath38">
+      <path
+         d="M 0,520 H 520 V 0 H 0 Z"
+         id="path36"
+         inkscape:connector-curvature="0" />
+    </clipPath>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1109"
+       id="linearGradient1095-2"
+       x1="15.731466"
+       y1="34.984047"
+       x2="34.50996"
+       y2="26.098288"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="matrix(0.77420991,0,0,0.77420991,16.41646,5.9424217)" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient1109"
+       id="linearGradient1728"
+       gradientUnits="userSpaceOnUse"
+       x1="6.6753492"
+       y1="39.298244"
+       x2="32.963676"
+       y2="22.047657" />
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="g-1"
+       x1="107.34"
+       x2="74.809998"
+       y1="100.46"
+       y2="178.99001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#06c"
+         offset="0"
+         id="stop15-9" />
+      <stop
+         stop-color="#0064ca"
+         offset=".5149"
+         id="stop17-4" />
+      <stop
+         stop-color="#005dc3"
+         offset=".7003"
+         id="stop19-7" />
+      <stop
+         stop-color="#0052b8"
+         offset=".8325"
+         id="stop21-8" />
+      <stop
+         stop-color="#0041a7"
+         offset=".9387"
+         id="stop23-4" />
+      <stop
+         stop-color="#039"
+         offset="1"
+         id="stop25-5" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="a-3"
+       x1="75.961998"
+       x2="107.32"
+       y1="147.89999"
+       y2="226.71001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#939"
+         offset="0"
+         id="stop93-6" />
+      <stop
+         stop-color="#973197"
+         offset=".5149"
+         id="stop95-7" />
+      <stop
+         stop-color="#902a90"
+         offset=".7003"
+         id="stop97-5" />
+      <stop
+         stop-color="#851f85"
+         offset=".8325"
+         id="stop99-3" />
+      <stop
+         stop-color="#740e74"
+         offset=".9387"
+         id="stop101-5" />
+      <stop
+         stop-color="#606"
+         offset="1"
+         id="stop103-6" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="f-7"
+       x1="86.549004"
+       x2="164.52"
+       y1="204.21001"
+       y2="235.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#c33"
+         offset="0"
+         id="stop28-3" />
+      <stop
+         stop-color="#ca3131"
+         offset=".5149"
+         id="stop30-6" />
+      <stop
+         stop-color="#c32a2a"
+         offset=".7003"
+         id="stop32-1" />
+      <stop
+         stop-color="#b81f1f"
+         offset=".8325"
+         id="stop34-2" />
+      <stop
+         stop-color="#a70e0e"
+         offset=".9387"
+         id="stop36-9" />
+      <stop
+         stop-color="#900"
+         offset="1"
+         id="stop38-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="e-7"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#f93"
+         offset="0"
+         id="stop41-5" />
+      <stop
+         stop-color="#fd9731"
+         offset=".5149"
+         id="stop43-9" />
+      <stop
+         stop-color="#f6902a"
+         offset=".7003"
+         id="stop45-2" />
+      <stop
+         stop-color="#eb851f"
+         offset=".8325"
+         id="stop47-2" />
+      <stop
+         stop-color="#da740e"
+         offset=".9387"
+         id="stop49-8" />
+      <stop
+         stop-color="#c60"
+         offset="1"
+         id="stop51-9" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="c-3"
+       x1="186.36"
+       x2="219.41"
+       y1="222.75"
+       y2="147.33"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#fc0"
+         offset="0"
+         id="stop67-6" />
+      <stop
+         stop-color="#fdca00"
+         offset=".5149"
+         id="stop69-0" />
+      <stop
+         stop-color="#f6c300"
+         offset=".7003"
+         id="stop71-6" />
+      <stop
+         stop-color="#ebb800"
+         offset=".8325"
+         id="stop73-2" />
+      <stop
+         stop-color="#daa700"
+         offset=".9387"
+         id="stop75-6" />
+      <stop
+         stop-color="#c90"
+         offset="1"
+         id="stop77-1" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="b-2"
+       x1="218.00999"
+       x2="187.5"
+       y1="177.11"
+       y2="103.38"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#9c3"
+         offset="0"
+         id="stop80-9" />
+      <stop
+         stop-color="#97ca31"
+         offset=".5149"
+         id="stop82-1" />
+      <stop
+         stop-color="#90c32a"
+         offset=".7003"
+         id="stop84-2" />
+      <stop
+         stop-color="#85b81f"
+         offset=".8325"
+         id="stop86-7" />
+      <stop
+         stop-color="#74a70e"
+         offset=".9387"
+         id="stop88-0" />
+      <stop
+         stop-color="#690"
+         offset="1"
+         id="stop90-9" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="d-8"
+       x1="208.17"
+       x2="123.71"
+       y1="122.97"
+       y2="87.987999"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#093"
+         offset="0"
+         id="stop54-7" />
+      <stop
+         stop-color="#009731"
+         offset=".5149"
+         id="stop56-9" />
+      <stop
+         stop-color="#00902a"
+         offset=".7003"
+         id="stop58-2" />
+      <stop
+         stop-color="#00851f"
+         offset=".8325"
+         id="stop60-0" />
+      <stop
+         stop-color="#00740e"
+         offset=".9387"
+         id="stop62-2" />
+      <stop
+         stop-color="#060"
+         offset="1"
+         id="stop64-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(0.25116239,0.01177811,-0.01177811,0.25116239,-10.941533,-15.279551)"
+       id="h-0"
+       x1="161.42"
+       x2="83.68"
+       y1="91.501999"
+       y2="123.7"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#099"
+         offset="0"
+         id="stop2-3" />
+      <stop
+         stop-color="#009797"
+         offset=".5149"
+         id="stop4-6" />
+      <stop
+         stop-color="#009090"
+         offset=".7003"
+         id="stop6-1" />
+      <stop
+         stop-color="#008585"
+         offset=".8325"
+         id="stop8-0" />
+      <stop
+         stop-color="#007474"
+         offset=".9387"
+         id="stop10-6" />
+      <stop
+         stop-color="#066"
+         offset="1"
+         id="stop12-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="g-1-1"
+       x1="107.34"
+       x2="74.809998"
+       y1="100.46"
+       y2="178.99001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#06c"
+         offset="0"
+         id="stop15-9-0" />
+      <stop
+         stop-color="#0064ca"
+         offset=".5149"
+         id="stop17-4-6" />
+      <stop
+         stop-color="#005dc3"
+         offset=".7003"
+         id="stop19-7-1" />
+      <stop
+         stop-color="#0052b8"
+         offset=".8325"
+         id="stop21-8-5" />
+      <stop
+         stop-color="#0041a7"
+         offset=".9387"
+         id="stop23-4-9" />
+      <stop
+         stop-color="#039"
+         offset="1"
+         id="stop25-5-4" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="a-3-9"
+       x1="75.961998"
+       x2="107.32"
+       y1="147.89999"
+       y2="226.71001"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#939"
+         offset="0"
+         id="stop93-6-0" />
+      <stop
+         stop-color="#973197"
+         offset=".5149"
+         id="stop95-7-9" />
+      <stop
+         stop-color="#902a90"
+         offset=".7003"
+         id="stop97-5-1" />
+      <stop
+         stop-color="#851f85"
+         offset=".8325"
+         id="stop99-3-7" />
+      <stop
+         stop-color="#740e74"
+         offset=".9387"
+         id="stop101-5-7" />
+      <stop
+         stop-color="#606"
+         offset="1"
+         id="stop103-6-1" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="f-7-1"
+       x1="86.549004"
+       x2="164.52"
+       y1="204.21001"
+       y2="235.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#c33"
+         offset="0"
+         id="stop28-3-5" />
+      <stop
+         stop-color="#ca3131"
+         offset=".5149"
+         id="stop30-6-9" />
+      <stop
+         stop-color="#c32a2a"
+         offset=".7003"
+         id="stop32-1-7" />
+      <stop
+         stop-color="#b81f1f"
+         offset=".8325"
+         id="stop34-2-7" />
+      <stop
+         stop-color="#a70e0e"
+         offset=".9387"
+         id="stop36-9-6" />
+      <stop
+         stop-color="#900"
+         offset="1"
+         id="stop38-3-7" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="e-7-3"
+       x1="134.61"
+       x2="209.19"
+       y1="233.06"
+       y2="202.56"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#f93"
+         offset="0"
+         id="stop41-5-6" />
+      <stop
+         stop-color="#fd9731"
+         offset=".5149"
+         id="stop43-9-5" />
+      <stop
+         stop-color="#f6902a"
+         offset=".7003"
+         id="stop45-2-6" />
+      <stop
+         stop-color="#eb851f"
+         offset=".8325"
+         id="stop47-2-3" />
+      <stop
+         stop-color="#da740e"
+         offset=".9387"
+         id="stop49-8-9" />
+      <stop
+         stop-color="#c60"
+         offset="1"
+         id="stop51-9-4" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="c-3-8"
+       x1="186.36"
+       x2="219.41"
+       y1="222.75"
+       y2="147.33"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#fc0"
+         offset="0"
+         id="stop67-6-1" />
+      <stop
+         stop-color="#fdca00"
+         offset=".5149"
+         id="stop69-0-2" />
+      <stop
+         stop-color="#f6c300"
+         offset=".7003"
+         id="stop71-6-9" />
+      <stop
+         stop-color="#ebb800"
+         offset=".8325"
+         id="stop73-2-3" />
+      <stop
+         stop-color="#daa700"
+         offset=".9387"
+         id="stop75-6-9" />
+      <stop
+         stop-color="#c90"
+         offset="1"
+         id="stop77-1-0" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="b-2-8"
+       x1="218.00999"
+       x2="187.5"
+       y1="177.11"
+       y2="103.38"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#9c3"
+         offset="0"
+         id="stop80-9-8" />
+      <stop
+         stop-color="#97ca31"
+         offset=".5149"
+         id="stop82-1-5" />
+      <stop
+         stop-color="#90c32a"
+         offset=".7003"
+         id="stop84-2-0" />
+      <stop
+         stop-color="#85b81f"
+         offset=".8325"
+         id="stop86-7-9" />
+      <stop
+         stop-color="#74a70e"
+         offset=".9387"
+         id="stop88-0-6" />
+      <stop
+         stop-color="#690"
+         offset="1"
+         id="stop90-9-3" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="d-8-8"
+       x1="208.17"
+       x2="123.71"
+       y1="122.97"
+       y2="87.987999"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#093"
+         offset="0"
+         id="stop54-7-5" />
+      <stop
+         stop-color="#009731"
+         offset=".5149"
+         id="stop56-9-6" />
+      <stop
+         stop-color="#00902a"
+         offset=".7003"
+         id="stop58-2-1" />
+      <stop
+         stop-color="#00851f"
+         offset=".8325"
+         id="stop60-0-1" />
+      <stop
+         stop-color="#00740e"
+         offset=".9387"
+         id="stop62-2-5" />
+      <stop
+         stop-color="#060"
+         offset="1"
+         id="stop64-3-9" />
+    </linearGradient>
+    <linearGradient
+       gradientTransform="matrix(-0.07501632,-0.08489229,0.08489229,-0.07501632,85.868629,13.322177)"
+       id="h-0-8"
+       x1="161.42"
+       x2="83.68"
+       y1="91.501999"
+       y2="123.7"
+       gradientUnits="userSpaceOnUse">
+      <stop
+         stop-color="#099"
+         offset="0"
+         id="stop2-3-4" />
+      <stop
+         stop-color="#009797"
+         offset=".5149"
+         id="stop4-6-8" />
+      <stop
+         stop-color="#009090"
+         offset=".7003"
+         id="stop6-1-1" />
+      <stop
+         stop-color="#008585"
+         offset=".8325"
+         id="stop8-0-0" />
+      <stop
+         stop-color="#007474"
+         offset=".9387"
+         id="stop10-6-3" />
+      <stop
+         stop-color="#066"
+         offset="1"
+         id="stop12-3-0" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3382"
+       id="linearGradient3384"
+       x1="12.976564"
+       y1="27.989347"
+       x2="43.307491"
+       y2="27.856308"
+       gradientUnits="userSpaceOnUse"
+       gradientTransform="translate(-75.188904,26.100287)" />
+  </defs>
+  <path
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.84922767"
+     d="M 12.703125 20.558594 L 0 24 L 12.710938 27.443359 A 11.8125 11.8125 0 0 1 12.238281 25 L 18.03125 25 A 6.0520388 6.0520388 0 0 1 17.947266 24 A 6.0520388 6.0520388 0 0 1 18.037109 23 L 12.238281 23 A 11.8125 11.8125 0 0 1 12.703125 20.558594 z "
+     transform="matrix(1.1357348,0,0,1.1357348,-3.2576355,0)"
+     id="path2910"
+     inkscape:label="left" />
+  <path
+     inkscape:connector-curvature="0"
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.10023212"
+     d="m 36.830253,23.349109 14.42738,3.908525 -14.436253,3.910742 a 13.415867,13.415867 0 0 0 0.536812,-2.775008 h -6.579275 a 6.8735109,6.8735109 0 0 0 0.09538,-1.135734 6.8735109,6.8735109 0 0 0 -0.102035,-1.135735 h 6.58593 a 13.415867,13.415867 0 0 0 -0.527939,-2.77279 z"
+     id="path2910-3"
+     inkscape:label="right" />
+  <path
+     inkscape:connector-curvature="0"
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.10023212"
+     d="m 20.091475,40.087889 3.908524,14.42738 3.910743,-14.436254 a 13.415867,13.415867 0 0 1 -2.775008,0.536813 v -6.579276 a 6.8735109,6.8735109 0 0 1 -1.135735,0.09538 6.8735109,6.8735109 0 0 1 -1.135735,-0.102034 v 6.58593 a 13.415867,13.415867 0 0 1 -2.772789,-0.527939 z"
+     id="path2910-6"
+     inkscape:label="down" />
+  <path
+     inkscape:connector-curvature="0"
+     style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.10023212"
+     d="M 20.090365,14.42738 23.998889,0 27.909632,14.436254 a 13.415867,13.415867 0 0 0 -2.775008,-0.536813 v 6.579276 a 6.8735109,6.8735109 0 0 0 -1.135734,-0.09538 6.8735109,6.8735109 0 0 0 -1.135735,0.102034 v -6.58593 a 13.415867,13.415867 0 0 0 -2.77279,0.527939 z"
+     id="path2910-6-9"
+     inkscape:label="up" />
+</svg>