]> www.fi.muni.cz Git - slotcarman.git/commitdiff
Race state images; misc fixes.
authorJan "Yenya" Kasprzak <kas@fi.muni.cz>
Thu, 9 Dec 2010 16:53:06 +0000 (17:53 +0100)
committerJan "Yenya" Kasprzak <kas@fi.muni.cz>
Thu, 9 Dec 2010 16:53:06 +0000 (17:53 +0100)
SCX/Car.pm
SCX/GUI.pm
SCX/Track.pm
gui.pl
img/pit-go.svg [deleted file]
img/state-disqualified.svg [new file with mode: 0644]
img/state-finished.svg [new file with mode: 0644]
img/state-go.svg [new file with mode: 0644]
img/state-greenflag.svg [new file with mode: 0644]
img/state-stop.svg [moved from img/pit-stop.svg with 100% similarity]

index 9f58b5b720f79edd614fc7c853914838403f200f..31149a20dc95d97685578fe690df20363f66a815 100644 (file)
@@ -16,6 +16,7 @@ sub new {
                lap      => 0,
                laptime  => 0,
                avg_lap  => 0,
+               state    => 'greenflag',
                car_img  => $args->{car_img},
                id       => $args->{id},
                order    => $args->{id},
@@ -149,7 +150,7 @@ sub enter_pit_lane {
        return if $self->{in_pit_lane};
 
        $self->{in_pit_lane} = 1;
-       $self->gui->enter_pit_lane($self->{order});
+       $self->print_state;
 }
 
 sub leave_pit_lane {
@@ -158,7 +159,7 @@ sub leave_pit_lane {
        return if !$self->{in_pit_lane};
 
        $self->{in_pit_lane} = 0;
-       $self->gui->leave_pit_lane($self->{order});
+       $self->print_state;
 }
 
 sub set_order {
@@ -177,11 +178,30 @@ sub set_order {
        $self->gui->set_car_id($self->{order}, $self->{id} + 1);
        $self->gui->set_distance($self->{order},
                $self->{time_diff}, $self->{lap_diff});
+       $self->gui->set_state($self->{order}, $self->{state});
        if ($self->{in_pit_lane}) {
                $self->gui->enter_pit_lane;
        }
 }
 
+sub print_state {
+       my ($self) = @_;
+
+       if ($self->{in_pit_lane}) {
+               $self->{state} = 'pit';
+       } elsif ($self->{running}) {
+               $self->{state} = 'go';
+       } elsif ($self->{finished}) {
+               $self->{state} = 'finished';
+       } elsif ($self->{early_start}) {
+               $self->{state} = 'disqualified';
+       } else {
+               $self->{state} = 'greenflag';
+       }
+
+       $self->gui->set_state($self->{order}, $self->{state});
+}
+       
 sub reset {
        my ($self) = @_;
 
index 2f1aa5af7b08349f5038afd1c2f59167fb2d3f1f..da3f9f45eb6a9256625fe9dc37ae2191d0bce495 100755 (executable)
@@ -113,7 +113,8 @@ sub load_all_images {
        $self->{fuel_images} = [
                        load_image_set('img/fuel%d.svg', 8, int(0.6 * $h))
        ];
-       $self->{car_images} = load_image_dir('img/SCXCars', $h);
+       $self->{car_images} = load_images_glob('img/SCXCars/*', $h);
+       $self->{state_images} = load_images_glob('img/state*.svg', $h);
        $self->{semaphore_images} = [
                        load_image_set('img/semaphore%d.svg', 5, 1.5 * $h)
        ];
@@ -135,11 +136,11 @@ sub load_image_set {
        return @rv;
 }
 
-sub load_image_dir {
-       my ($dir, $height) = @_;
+sub load_images_glob {
+       my ($glob, $height) = @_;
 
        my %rv;
-       for my $file (<$dir/*>) {
+       for my $file (glob($glob)) {
                $file = Encode::decode('utf-8', $file);
                my $name = $file;
                $name =~ s/.*\///;
@@ -265,17 +266,6 @@ sub set_car_id {
        $self->set_label('label_car_id', $row, $text);
 }
 
-sub enter_pit_lane {
-       my ($self, $row) = @_;
-       $self->set_label('label_laptime', $row, 'PIT');
-}
-
-sub leave_pit_lane {
-       my ($self, $row) = @_;
-
-       $self->set_label('label_laptime', $row, 'GO!');
-}
-
 sub show_semaphore {
        my ($self, $num) = @_;
 
@@ -335,5 +325,11 @@ sub format_lap_time {
                : '--';
 }
 
+sub set_state {
+       my ($self, $num, $name) = @_;
+
+       $self->set_image('image_status', $num, 'state', 'state '.$name);
+}
+
 1;
 
index 2feed611c7b5394d482e1e6db8db0cbbf3cf398d..c5d464068b5e79e4418077d8a621e096205e1e54 100644 (file)
@@ -188,7 +188,7 @@ sub recalc_order {
        } (0..5);
 
        my $lap_max = $laps[$new_order[0]];
-       if (defined $lap_max && $lap_max != $self->{round}
+       if (defined $lap_max && $self->{round} && $lap_max != $self->{round}
                && (!$self->{race_rounds}
                        || $lap_max <= $self->{race_rounds})) {
                $self->{round} = $lap_max;
diff --git a/gui.pl b/gui.pl
index acdb94fd23154bae49e3f1d6ed7027c925068058..85b994d5e9f6c2ded95af22509928cb57eff0816 100755 (executable)
--- a/gui.pl
+++ b/gui.pl
@@ -50,7 +50,12 @@ if ($reader) {
        $track->{race_running_since} = $now;
        $track->{race_running} = 1;
 
-       $track->car(0)->finish_line($now + 2.5, 1);
+       $track->finish_line($now + 0.5, 1, 2);
+       $track->finish_line($now + 0.7, 1, 1);
+       $track->finish_line($now + 4.9, 1, 1);
+       $track->finish_line($now + 5.3, 1, 2);
+       $track->finish_line($now + 7.2, 1, 1);
+       $track->finish_line($now + 8.1, 0, 2);
 #      $track->car(0)->set_lap(13);
 #      $track->car(1)->set_lap(11);
 #      $track->car(2)->set_lap(10);
@@ -58,9 +63,9 @@ if ($reader) {
 #      $track->car(4)->set_lap(undef);
 #      $track->car(5)->set_lap(undef);
 
-#      $track->car(0)->set_laptime(9.12322);
-#      $track->car(1)->set_laptime(15.313);
-#      $track->car(2)->set_laptime(5.989);
+       $track->car(0)->set_laptime(9.12322);
+       $track->car(1)->set_laptime(15.313);
+       $track->car(2)->set_laptime(5.989);
 
        $track->car(0)->set_fuel(6);
        $track->car(1)->set_fuel(2);
diff --git a/img/pit-go.svg b/img/pit-go.svg
deleted file mode 100644 (file)
index 0a1e79c..0000000
+++ /dev/null
@@ -1,321 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<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="200"
-   height="200"
-   id="svg4265"
-   version="1.1"
-   inkscape:version="0.48.0 r9654"
-   sodipodi:docname="pit.svg">
-  <defs
-     id="defs4267">
-    <linearGradient
-       id="linearGradient3812">
-      <stop
-         style="stop-color:#0cff0f;stop-opacity:1;"
-         offset="0"
-         id="stop3814" />
-      <stop
-         style="stop-color:#05b507;stop-opacity:1;"
-         offset="1"
-         id="stop3816" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient3784">
-      <stop
-         style="stop-color:#b00000;stop-opacity:1;"
-         offset="0"
-         id="stop3786" />
-      <stop
-         style="stop-color:#f63a3a;stop-opacity:1;"
-         offset="1"
-         id="stop3788" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient6758">
-      <stop
-         style="stop-color:#000000;stop-opacity:1;"
-         offset="0"
-         id="stop6760" />
-      <stop
-         style="stop-color:#3a2f2f;stop-opacity:1;"
-         offset="1"
-         id="stop6762" />
-    </linearGradient>
-    <linearGradient
-       osb:paint="gradient"
-       id="linearGradient6391">
-      <stop
-         id="stop6393"
-         offset="0"
-         style="stop-color:#03ff18;stop-opacity:1;" />
-      <stop
-         style="stop-color:#ffcc00;stop-opacity:1;"
-         offset="0.62396693"
-         id="stop6395" />
-      <stop
-         id="stop6397"
-         offset="1"
-         style="stop-color:#d40000;stop-opacity:1;" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient6383"
-       osb:paint="solid">
-      <stop
-         style="stop-color:#000000;stop-opacity:1;"
-         offset="0"
-         id="stop6385" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient6348"
-       osb:paint="gradient">
-      <stop
-         style="stop-color:#03ff18;stop-opacity:1;"
-         offset="0"
-         id="stop6350" />
-      <stop
-         id="stop6364"
-         offset="0.62025315"
-         style="stop-color:#ffcc00;stop-opacity:1;" />
-      <stop
-         style="stop-color:#d40000;stop-opacity:1;"
-         offset="1"
-         id="stop6352" />
-    </linearGradient>
-    <linearGradient
-       id="linearGradient6306"
-       osb:paint="solid">
-      <stop
-         style="stop-color:#d40000;stop-opacity:1;"
-         offset="0"
-         id="stop6308" />
-    </linearGradient>
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6348"
-       id="linearGradient6362"
-       x1="42"
-       y1="103.7132"
-       x2="163"
-       y2="103.7132"
-       gradientUnits="userSpaceOnUse" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient6391"
-       id="linearGradient6389"
-       gradientUnits="userSpaceOnUse"
-       x1="42"
-       y1="103.7132"
-       x2="163"
-       y2="103.7132" />
-    <linearGradient
-       inkscape:collect="always"
-       xlink:href="#linearGradient3812"
-       id="linearGradient3818"
-       x1="60"
-       y1="40"
-       x2="150"
-       y2="145"
-       gradientUnits="userSpaceOnUse" />
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="5.3574286"
-     inkscape:cx="100"
-     inkscape:cy="99.64466"
-     inkscape:current-layer="layer1"
-     inkscape:document-units="px"
-     showgrid="false"
-     inkscape:window-width="1580"
-     inkscape:window-height="1121"
-     inkscape:window-x="0"
-     inkscape:window-y="0"
-     inkscape:window-maximized="1">
-    <inkscape:grid
-       type="xygrid"
-       id="grid4273"
-       empspacing="5"
-       visible="true"
-       enabled="true"
-       snapvisiblegridlinesonly="true" />
-  </sodipodi:namedview>
-  <metadata
-     id="metadata4270">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title></dc:title>
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     id="layer1"
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     transform="translate(0,-280)">
-    <path
-       style="fill:none;stroke:#666666;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-       d="m 100,295 0,15"
-       id="path5762"
-       inkscape:connector-curvature="0"
-       inkscape:transform-center-y="-92.5" />
-    <path
-       inkscape:transform-center-y="-85.458855"
-       inkscape:connector-curvature="0"
-       id="path6312"
-       d="m 138.26834,302.61205 -5.74025,13.85819"
-       style="fill:none;stroke:#666666;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-       inkscape:transform-center-x="-35.398215" />
-    <path
-       style="fill:none;stroke:#666666;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-       d="m 29.289322,465.71068 10.606602,-10.6066"
-       id="path6314"
-       inkscape:connector-curvature="0"
-       inkscape:transform-center-y="65.40738"
-       inkscape:transform-center-x="65.407377" />
-    <path
-       inkscape:transform-center-y="35.398215"
-       inkscape:connector-curvature="0"
-       id="path6316"
-       d="M 7.6120467,433.26834 21.47024,427.52809"
-       style="fill:none;stroke:#666666;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-       inkscape:transform-center-x="85.458857" />
-    <path
-       style="fill:none;stroke:#666666;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-       d="m 0,395 15,0"
-       id="path6318"
-       inkscape:connector-curvature="0"
-       inkscape:transform-center-x="92.5" />
-    <path
-       inkscape:transform-center-y="-35.398215"
-       inkscape:connector-curvature="0"
-       id="path6320"
-       d="M 7.6120467,356.73166 21.47024,362.47191"
-       style="fill:none;stroke:#666666;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-       inkscape:transform-center-x="85.458857" />
-    <path
-       style="fill:none;stroke:#666666;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-       d="m 29.289322,324.28932 10.606602,10.6066"
-       id="path6322"
-       inkscape:connector-curvature="0"
-       inkscape:transform-center-y="-65.40738"
-       inkscape:transform-center-x="65.407377" />
-    <path
-       inkscape:transform-center-y="-85.458855"
-       inkscape:connector-curvature="0"
-       id="path6324"
-       d="m 61.731657,302.61205 5.740251,13.85819"
-       style="fill:none;stroke:#666666;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-       inkscape:transform-center-x="35.398218" />
-    <path
-       inkscape:transform-center-x="-85.458855"
-       style="fill:none;stroke:#666666;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-       d="m 192.38795,356.73166 -13.85819,5.74025"
-       id="path6326"
-       inkscape:connector-curvature="0"
-       inkscape:transform-center-y="-35.398215" />
-    <path
-       inkscape:transform-center-y="-65.40738"
-       inkscape:connector-curvature="0"
-       id="path6328"
-       d="m 170.71067,324.28932 -10.6066,10.6066"
-       style="fill:none;stroke:#666666;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-       inkscape:transform-center-x="-65.40737" />
-    <path
-       inkscape:transform-center-y="65.40738"
-       inkscape:connector-curvature="0"
-       id="path6330"
-       d="m 170.71067,465.71068 -10.6066,-10.6066"
-       style="fill:none;stroke:#666666;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-       inkscape:transform-center-x="-65.40737" />
-    <path
-       inkscape:transform-center-x="-92.5"
-       style="fill:none;stroke:#666666;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-       d="m 200,395 -15,0"
-       id="path6332"
-       inkscape:connector-curvature="0" />
-    <path
-       inkscape:connector-curvature="0"
-       id="path6334"
-       d="m 192.38795,433.26834 -13.85819,-5.74025"
-       style="fill:none;stroke:#666666;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-       inkscape:transform-center-x="-85.458855"
-       inkscape:transform-center-y="35.398215" />
-    <path
-       sodipodi:type="arc"
-       style="fill:none;stroke:#666666;stroke-width:40;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-       id="path6731"
-       sodipodi:cx="97.5"
-       sodipodi:cy="102.5"
-       sodipodi:rx="60"
-       sodipodi:ry="60"
-       d="m 55.073593,144.92641 c -23.431458,-23.43146 -23.431457,-61.42136 10e-7,-84.852817 23.431457,-23.431458 61.421356,-23.431457 84.852816,10e-7 23.43145,23.431457 23.43145,61.421356 0,84.852816 0,0 0,0 0,0"
-       transform="translate(2.5,292.5)"
-       sodipodi:start="2.3561945"
-       sodipodi:end="7.0685835"
-       sodipodi:open="true" />
-    <text
-       xml:space="preserve"
-       style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Mono;-inkscape-font-specification:DejaVu Sans Mono Bold"
-       x="104.27819"
-       y="96.634529"
-       id="text3794"
-       sodipodi:linespacing="125%"
-       transform="translate(0,280)"><tspan
-         sodipodi:role="line"
-         id="tspan3796"
-         x="104.27819"
-         y="96.634529" /></text>
-    <text
-       xml:space="preserve"
-       style="font-size:64px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Mono;-inkscape-font-specification:DejaVu Sans Mono Bold"
-       x="99.942772"
-       y="104.16446"
-       id="text3802"
-       sodipodi:linespacing="125%"
-       transform="translate(0,280)"><tspan
-         sodipodi:role="line"
-         id="tspan3804"
-         x="99.942772"
-         y="104.16446" /></text>
-    <path
-       sodipodi:type="arc"
-       style="fill:url(#linearGradient3818);fill-opacity:1;stroke:#000000;stroke-width:6;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
-       id="path3810"
-       sodipodi:cx="100"
-       sodipodi:cy="97.5"
-       sodipodi:rx="70"
-       sodipodi:ry="72.5"
-       d="m 170,97.5 a 70,72.5 0 1 1 -140,0 70,72.5 0 1 1 140,0 z"
-       transform="translate(0,280)" />
-    <text
-       xml:space="preserve"
-       style="font-size:64px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:4;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;font-family:DejaVu Sans Mono;-inkscape-font-specification:DejaVu Sans Mono Bold"
-       x="105"
-       y="400"
-       id="text3806"
-       sodipodi:linespacing="125%"><tspan
-         sodipodi:role="line"
-         id="tspan3808"
-         x="105"
-         y="400">GO!</tspan></text>
-  </g>
-</svg>
diff --git a/img/state-disqualified.svg b/img/state-disqualified.svg
new file mode 100644 (file)
index 0000000..a78967a
--- /dev/null
@@ -0,0 +1,123 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="110.17202"
+   height="106.98372"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.0 r9654"
+   sodipodi:docname="flag-green.svg">
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="2.8"
+     inkscape:cx="55.492566"
+     inkscape:cy="57.544272"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     inkscape:window-width="1580"
+     inkscape:window-height="1121"
+     inkscape:window-x="1600"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0">
+    <inkscape:grid
+       snapvisiblegridlinesonly="true"
+       enabled="true"
+       visible="true"
+       empspacing="5"
+       id="grid2985"
+       type="xygrid" />
+  </sodipodi:namedview>
+  <defs
+     id="defs4">
+    <filter
+       inkscape:collect="always"
+       id="filter4450"
+       x="-0.38187307"
+       width="1.7637461"
+       y="-0.17529058"
+       height="1.3505812"
+       color-interpolation-filters="sRGB">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="5.8587928"
+         id="feGaussianBlur4452" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4460">
+      <g
+         style="fill:#39e31b;fill-opacity:1"
+         transform="matrix(0.88285815,0.33445807,-0.32834814,0.94284956,227.78713,-62.836707)"
+         id="g4462">
+        <path
+           inkscape:connector-curvature="0"
+           style="fill:#39e31b;fill-opacity:1;stroke:#000000;stroke-width:2.06040955;stroke-miterlimit:4;stroke-opacity:1"
+           d="m 250,529.86218 c 0,0 0.1483,-1.16701 1.43903,-2.56523 0.56876,-0.61613 1.38816,-1.22768 2.44041,-1.66694 0.83708,-0.34944 1.81007,-0.5948 2.8761,-0.7273 0.92867,-0.11542 1.92683,-0.0903 2.97361,-0.0508 0.95067,0.0359 1.90892,0.3476 2.86825,0.72976 0.89253,0.35555 1.73405,0.90161 2.58652,1.46668 0.8071,0.53499 1.59332,1.14474 2.39282,1.77237 0.76553,0.60096 1.52076,1.24854 2.26548,1.93219 0.72037,0.6613 1.4679,1.3173 2.1935,2.01615 0.70646,0.68043 1.42203,1.36963 2.14484,2.0658 0.70901,0.68288 1.42498,1.37246 2.14614,2.06705 0.71051,0.68433 1.43694,1.36203 2.16228,2.04764 0.71879,0.67944 1.4409,1.36201 2.16466,2.04615 0.72017,0.68073 1.47269,1.32928 2.21965,1.98393 0.74745,0.65508 1.52536,1.27368 2.2995,1.89328 0.77736,0.62218 1.57283,1.21808 2.39366,1.76959 0.82831,0.55655 1.67648,1.07426 2.54481,1.54182 0.88115,0.47446 1.77995,0.92095 2.7272,1.18623 0.96632,0.27062 1.9397,0.47247 2.91703,0.55672 1.00349,0.0865 2.00118,0.06 2.97464,-0.0317 1.00627,-0.0949 1.9938,-0.22768 2.94014,-0.45438 0.98813,-0.23671 1.948,-0.49556 2.86439,-0.80728 0.9682,-0.32934 1.89733,-0.68105 2.78629,-1.0461 0.95559,-0.39242 1.86638,-0.79695 2.70725,-1.24267 0.92579,-0.49073 1.80534,-0.95664 2.61458,-1.42686 0.92957,-0.54015 1.79354,-1.04005 2.54164,-1.55419 0.93919,-0.64546 1.76289,-1.21155 2.45395,-1.68649 1.56979,-1.07885 2.36163,-1.81541 2.36163,-1.81541 0,0 0,0.86948 0,2.41463 0,0.67933 0,1.48927 0,2.41333 0,0.7354 0,1.54309 0,2.41477 0,0.758 0,1.56439 0,2.41371 0,0.77057 0,1.57647 0,2.41363 0,0.7785 0,1.58404 0,2.41334 0,0.78453 0,1.59033 0,2.41461 0,0.7883 0,1.59352 0,2.41321 0,0.79165 0,1.59681 0,2.41329 0,0.79468 0,1.60009 0,2.4142 0,0.79684 0,1.60201 0,2.41363 0,0.79901 0,1.60427 0,2.41397 0,0.80054 0,1.60543 0,2.41291 0,0.80234 0,1.60724 0,2.41299 0,0.80434 0,1.60953 0,2.41388 0,0.80625 0,1.61165 0,2.41449 0,0.8075 0,1.61241 0,2.41298 0,0.80964 0,1.61483 0,2.41378 0,0.81192 0,1.61738 0,2.4145 0,0.81389 0,1.61908 0,2.41356 0,0.81648 0,1.62165 0,2.41331 0,0.81978 0,1.62509 0,2.41348 0,0.82387 0,1.62927 0,2.41343 0,0.8297 0,1.63562 0,2.41449 0,0.83694 0,1.64263 0,2.41301 0,0.84976 0,1.65655 0,2.41491 0,0.87175 0,1.6795 0,2.41494 0,0.92399 0,1.73384 0,2.41308 0,1.54472 0,2.41394 0,2.41394 0,0 -0.79125,0.73615 -2.36007,1.81433 -0.69129,0.4751 -1.51539,1.04147 -2.45513,1.68731 -0.74759,0.51379 -1.61089,1.01339 -2.53975,1.55312 -0.80917,0.47019 -1.68862,0.93616 -2.61437,1.42687 -0.84074,0.44565 -1.75127,0.85039 -2.70672,1.24275 -0.88892,0.36504 -1.81795,0.71692 -2.78613,1.04626 -0.91664,0.31181 -1.87672,0.571 -2.86515,0.80778 -0.94644,0.22672 -1.93402,0.35986 -2.9404,0.45476 -0.97348,0.0918 -1.9712,0.11863 -2.97472,0.0321 -0.97706,-0.0842 -1.95025,-0.28556 -2.91629,-0.5561 -0.94759,-0.26538 -1.84694,-0.71152 -2.72841,-1.18616 -0.86846,-0.46763 -1.71683,-0.98528 -2.54527,-1.54191 -0.82097,-0.55161 -1.61663,-1.14754 -2.39413,-1.76983 -0.77364,-0.61919 -1.55111,-1.23732 -2.29807,-1.89197 -0.74745,-0.65508 -1.50049,-1.30401 -2.22113,-1.98519 -0.72364,-0.68401 -1.44562,-1.36646 -2.16428,-2.04578 -0.72523,-0.68552 -1.45157,-1.36311 -2.16198,-2.04734 -0.72089,-0.69432 -1.43659,-1.38365 -2.14533,-2.06627 -0.72302,-0.69637 -1.4388,-1.38577 -2.14545,-2.06638 -0.72558,-0.69884 -1.47305,-1.35485 -2.1934,-2.01614 -0.74464,-0.68357 -1.49968,-1.33122 -2.26513,-1.93212 -0.79926,-0.62744 -1.5851,-1.23721 -2.39197,-1.77205 -0.8525,-0.56508 -1.69373,-1.11176 -2.58629,-1.46732 -0.95947,-0.38222 -1.91766,-0.69496 -2.86848,-0.73086 -1.04682,-0.0395 -2.04506,-0.0651 -2.9738,0.0503 -1.06685,0.1326 -2.04063,0.37776 -2.87829,0.72744 -1.05163,0.439 -1.87097,1.0498 -2.43954,1.66572 -1.29154,1.3991 -1.44032,2.56663 -1.44032,2.56663 0,0 0,-0.86948 0,-2.41463 0,-0.67933 0,-1.48927 0,-2.41333 0,-0.7354 0,-1.54309 0,-2.41477 0,-0.758 0,-1.56439 0,-2.41371 0,-0.77057 0,-1.57647 0,-2.41363 0,-0.7785 0,-1.58404 0,-2.41334 0,-0.78453 0,-1.59033 0,-2.41461 0,-0.7883 0,-1.59352 0,-2.41321 0,-0.79165 0,-1.59681 0,-2.41329 0,-0.79468 0,-1.60009 0,-2.4142 0,-0.79684 0,-1.60201 0,-2.41363 0,-0.79901 0,-1.60427 0,-2.41397 0,-0.80054 0,-1.60543 0,-2.41291 0,-0.80234 0,-1.60724 0,-2.41299 0,-0.80434 0,-1.60953 0,-2.41388 0,-0.80625 0,-1.61165 0,-2.41449 0,-0.8075 0,-1.61241 0,-2.41298 0,-0.80964 0,-1.61483 0,-2.41378 0,-0.81192 0,-1.61738 0,-2.4145 0,-0.81389 0,-1.61908 0,-2.41356 0,-0.81648 0,-1.62165 0,-2.41331 0,-0.81978 0,-1.62509 0,-2.41348 0,-0.82387 0,-1.62927 0,-2.41343 0,-0.8297 0,-1.63562 0,-2.41449 0,-0.83694 0,-1.64263 0,-2.41301 0,-0.84976 0,-1.65655 0,-2.41491 0,-0.87175 0,-1.6795 0,-2.41494 0,-0.92399 0,-1.73384 0,-2.41308 0,-1.54472 0,-2.41394 0,-2.41394"
+           id="path4464" />
+        <path
+           inkscape:connector-curvature="0"
+           id="path4466"
+           d="m 250,524.86218 c 0,0 0,0.86607 0,2.44091 0,0.68463 0,1.50321 0,2.44282 0,0.74089 0,1.55704 0,2.44209 0,0.76389 0,1.57912 0,2.4416 0,0.77681 0,1.59195 0,2.44246 0,0.7846 0,1.5993 0,2.44176 0,0.79038 0,1.60518 0,2.44249 0,0.79441 0,1.60908 0,2.44235 0,0.79712 0,1.61127 0,2.441 0,0.79997 0,1.61442 0,2.44207 0,0.80188 0,1.61615 0,2.44162 0,0.80366 0,1.61794 0,2.44177 0,0.80491 0,1.61893 0,2.44104 0,0.80647 0,1.62073 0,2.44182 0,0.80761 0,1.62184 0,2.44177 0,0.80896 0,1.62346 0,2.44264 0,0.80961 0,1.62378 0,2.44168 0,0.8105 0,1.62466 0,2.44165 0,0.81111 0,1.62502 0,2.44092 0,0.8122 0,1.62638 0,2.44174 0,0.81314 0,1.62746 0,2.44218 0,0.81413 0,1.62865 0,2.44278 0,0.8145 0,1.6286 0,2.44152 0,0.8155 0,1.62981 0,2.44215 0,0.81592 0,1.62984 0,2.44097 0,0.81678 0,1.63072 0,2.44101 0,0.8181 0,1.63248 0,2.44229 0,0.8191 0,1.63353 0,2.44241 0,0.82021 0,1.63471 0,2.4426 0,0.82093 0,1.63502 0,2.44134 0,0.82225 0,1.6364 0,2.44144 0,0.82395 0,1.63836 0,2.44215 0,0.82578 0,1.64034 0,2.44252 0,0.82723 0,1.64128 0,2.44086 0,0.83009 0,1.64459 0,2.44205 0,0.8331 0,1.64761 0,2.44186 0,0.83686 0,1.65123 0,2.44121 0,0.84268 0,1.6576 0,2.4424 0,0.85057 0,1.66578 0,2.44264 0,0.86251 0,1.67776 0,2.44167 0,0.88515 0,1.70137 0,2.44233 0,0.9387 0,1.75661 0,2.44083 0,1.5759 0,2.44259 0,2.44259"
+           style="fill:#39e31b;fill-opacity:1;stroke:#000000;stroke-width:4.12081909;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+      </g>
+    </clipPath>
+  </defs>
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     transform="translate(-237.33235,-515.75268)"
+     id="layer1"
+     inkscape:groupmode="layer"
+     inkscape:label="Layer 1">
+    <g
+       id="g3215"
+       transform="matrix(1.1323952,0.21775193,-0.31004846,0.98045514,151.52135,-51.28912)"
+       style="fill:#383838;fill-opacity:1">
+      <path
+         id="rect2987"
+         d="m 250,529.86218 c 0,0 0.1483,-1.16701 1.43903,-2.56523 0.56876,-0.61613 1.38816,-1.22768 2.44041,-1.66694 0.83708,-0.34944 1.81007,-0.5948 2.8761,-0.7273 0.92867,-0.11542 1.92683,-0.0903 2.97361,-0.0508 0.95067,0.0359 1.90892,0.3476 2.86825,0.72976 0.89253,0.35555 1.73405,0.90161 2.58652,1.46668 0.8071,0.53499 1.59332,1.14474 2.39282,1.77237 0.76553,0.60096 1.52076,1.24854 2.26548,1.93219 0.72037,0.6613 1.4679,1.3173 2.1935,2.01615 0.70646,0.68043 1.42203,1.36963 2.14484,2.0658 0.70901,0.68288 1.42498,1.37246 2.14614,2.06705 0.71051,0.68433 1.43694,1.36203 2.16228,2.04764 0.71879,0.67944 1.4409,1.36201 2.16466,2.04615 0.72017,0.68073 1.47269,1.32928 2.21965,1.98393 0.74745,0.65508 1.52536,1.27368 2.2995,1.89328 0.77736,0.62218 1.57283,1.21808 2.39366,1.76959 0.82831,0.55655 1.67648,1.07426 2.54481,1.54182 0.88115,0.47446 1.77995,0.92095 2.7272,1.18623 0.96632,0.27062 1.9397,0.47247 2.91703,0.55672 1.00349,0.0865 2.00118,0.06 2.97464,-0.0317 1.00627,-0.0949 1.9938,-0.22768 2.94014,-0.45438 0.98813,-0.23671 1.948,-0.49556 2.86439,-0.80728 0.9682,-0.32934 1.89733,-0.68105 2.78629,-1.0461 0.95559,-0.39242 1.86638,-0.79695 2.70725,-1.24267 0.92579,-0.49073 1.80534,-0.95664 2.61458,-1.42686 0.92957,-0.54015 1.79354,-1.04005 2.54164,-1.55419 0.93919,-0.64546 1.76289,-1.21155 2.45395,-1.68649 1.56979,-1.07885 2.36163,-1.81541 2.36163,-1.81541 0,0 0,0.86948 0,2.41463 0,0.67933 0,1.48927 0,2.41333 0,0.7354 0,1.54309 0,2.41477 0,0.758 0,1.56439 0,2.41371 0,0.77057 0,1.57647 0,2.41363 0,0.7785 0,1.58404 0,2.41334 0,0.78453 0,1.59033 0,2.41461 0,0.7883 0,1.59352 0,2.41321 0,0.79165 0,1.59681 0,2.41329 0,0.79468 0,1.60009 0,2.4142 0,0.79684 0,1.60201 0,2.41363 0,0.79901 0,1.60427 0,2.41397 0,0.80054 0,1.60543 0,2.41291 0,0.80234 0,1.60724 0,2.41299 0,0.80434 0,1.60953 0,2.41388 0,0.80625 0,1.61165 0,2.41449 0,0.8075 0,1.61241 0,2.41298 0,0.80964 0,1.61483 0,2.41378 0,0.81192 0,1.61738 0,2.4145 0,0.81389 0,1.61908 0,2.41356 0,0.81648 0,1.62165 0,2.41331 0,0.81978 0,1.62509 0,2.41348 0,0.82387 0,1.62927 0,2.41343 0,0.8297 0,1.63562 0,2.41449 0,0.83694 0,1.64263 0,2.41301 0,0.84976 0,1.65655 0,2.41491 0,0.87175 0,1.6795 0,2.41494 0,0.92399 0,1.73384 0,2.41308 0,1.54472 0,2.41394 0,2.41394 0,0 -0.79125,0.73615 -2.36007,1.81433 -0.69129,0.4751 -1.51539,1.04147 -2.45513,1.68731 -0.74759,0.51379 -1.61089,1.01339 -2.53975,1.55312 -0.80917,0.47019 -1.68862,0.93616 -2.61437,1.42687 -0.84074,0.44565 -1.75127,0.85039 -2.70672,1.24275 -0.88892,0.36504 -1.81795,0.71692 -2.78613,1.04626 -0.91664,0.31181 -1.87672,0.571 -2.86515,0.80778 -0.94644,0.22672 -1.93402,0.35986 -2.9404,0.45476 -0.97348,0.0918 -1.9712,0.11863 -2.97472,0.0321 -0.97706,-0.0842 -1.95025,-0.28556 -2.91629,-0.5561 -0.94759,-0.26538 -1.84694,-0.71152 -2.72841,-1.18616 -0.86846,-0.46763 -1.71683,-0.98528 -2.54527,-1.54191 -0.82097,-0.55161 -1.61663,-1.14754 -2.39413,-1.76983 -0.77364,-0.61919 -1.55111,-1.23732 -2.29807,-1.89197 -0.74745,-0.65508 -1.50049,-1.30401 -2.22113,-1.98519 -0.72364,-0.68401 -1.44562,-1.36646 -2.16428,-2.04578 -0.72523,-0.68552 -1.45157,-1.36311 -2.16198,-2.04734 -0.72089,-0.69432 -1.43659,-1.38365 -2.14533,-2.06627 -0.72302,-0.69637 -1.4388,-1.38577 -2.14545,-2.06638 -0.72558,-0.69884 -1.47305,-1.35485 -2.1934,-2.01614 -0.74464,-0.68357 -1.49968,-1.33122 -2.26513,-1.93212 -0.79926,-0.62744 -1.5851,-1.23721 -2.39197,-1.77205 -0.8525,-0.56508 -1.69373,-1.11176 -2.58629,-1.46732 -0.95947,-0.38222 -1.91766,-0.69496 -2.86848,-0.73086 -1.04682,-0.0395 -2.04506,-0.0651 -2.9738,0.0503 -1.06685,0.1326 -2.04063,0.37776 -2.87829,0.72744 -1.05163,0.439 -1.87097,1.0498 -2.43954,1.66572 -1.29154,1.3991 -1.44032,2.56663 -1.44032,2.56663 0,0 0,-0.86948 0,-2.41463 0,-0.67933 0,-1.48927 0,-2.41333 0,-0.7354 0,-1.54309 0,-2.41477 0,-0.758 0,-1.56439 0,-2.41371 0,-0.77057 0,-1.57647 0,-2.41363 0,-0.7785 0,-1.58404 0,-2.41334 0,-0.78453 0,-1.59033 0,-2.41461 0,-0.7883 0,-1.59352 0,-2.41321 0,-0.79165 0,-1.59681 0,-2.41329 0,-0.79468 0,-1.60009 0,-2.4142 0,-0.79684 0,-1.60201 0,-2.41363 0,-0.79901 0,-1.60427 0,-2.41397 0,-0.80054 0,-1.60543 0,-2.41291 0,-0.80234 0,-1.60724 0,-2.41299 0,-0.80434 0,-1.60953 0,-2.41388 0,-0.80625 0,-1.61165 0,-2.41449 0,-0.8075 0,-1.61241 0,-2.41298 0,-0.80964 0,-1.61483 0,-2.41378 0,-0.81192 0,-1.61738 0,-2.4145 0,-0.81389 0,-1.61908 0,-2.41356 0,-0.81648 0,-1.62165 0,-2.41331 0,-0.81978 0,-1.62509 0,-2.41348 0,-0.82387 0,-1.62927 0,-2.41343 0,-0.8297 0,-1.63562 0,-2.41449 0,-0.83694 0,-1.64263 0,-2.41301 0,-0.84976 0,-1.65655 0,-2.41491 0,-0.87175 0,-1.6795 0,-2.41494 0,-0.92399 0,-1.73384 0,-2.41308 0,-1.54472 0,-2.41394 0,-2.41394"
+         style="fill:#383838;fill-opacity:1;stroke:#000000;stroke-width:1.84288644999999995;stroke-miterlimit:4;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:#383838;fill-opacity:1;stroke:#000000;stroke-width:3.68577289999999991;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 250,524.86218 c 0,0 0,0.86607 0,2.44091 0,0.68463 0,1.50321 0,2.44282 0,0.74089 0,1.55704 0,2.44209 0,0.76389 0,1.57912 0,2.4416 0,0.77681 0,1.59195 0,2.44246 0,0.7846 0,1.5993 0,2.44176 0,0.79038 0,1.60518 0,2.44249 0,0.79441 0,1.60908 0,2.44235 0,0.79712 0,1.61127 0,2.441 0,0.79997 0,1.61442 0,2.44207 0,0.80188 0,1.61615 0,2.44162 0,0.80366 0,1.61794 0,2.44177 0,0.80491 0,1.61893 0,2.44104 0,0.80647 0,1.62073 0,2.44182 0,0.80761 0,1.62184 0,2.44177 0,0.80896 0,1.62346 0,2.44264 0,0.80961 0,1.62378 0,2.44168 0,0.8105 0,1.62466 0,2.44165 0,0.81111 0,1.62502 0,2.44092 0,0.8122 0,1.62638 0,2.44174 0,0.81314 0,1.62746 0,2.44218 0,0.81413 0,1.62865 0,2.44278 0,0.8145 0,1.6286 0,2.44152 0,0.8155 0,1.62981 0,2.44215 0,0.81592 0,1.62984 0,2.44097 0,0.81678 0,1.63072 0,2.44101 0,0.8181 0,1.63248 0,2.44229 0,0.8191 0,1.63353 0,2.44241 0,0.82021 0,1.63471 0,2.4426 0,0.82093 0,1.63502 0,2.44134 0,0.82225 0,1.6364 0,2.44144 0,0.82395 0,1.63836 0,2.44215 0,0.82578 0,1.64034 0,2.44252 0,0.82723 0,1.64128 0,2.44086 0,0.83009 0,1.64459 0,2.44205 0,0.8331 0,1.64761 0,2.44186 0,0.83686 0,1.65123 0,2.44121 0,0.84268 0,1.6576 0,2.4424 0,0.85057 0,1.66578 0,2.44264 0,0.86251 0,1.67776 0,2.44167 0,0.88515 0,1.70137 0,2.44233 0,0.9387 0,1.75661 0,2.44083 0,1.5759 0,2.44259 0,2.44259"
+         id="path3757"
+         inkscape:connector-curvature="0" />
+    </g>
+    <path
+       style="fill:#000000;fill-opacity:0.16599193;stroke:none;filter:url(#filter4450)"
+       d="m 290,532.36218 -20,57.77778 15,22.22222 25,-57.77778 z"
+       id="path4400"
+       inkscape:connector-curvature="0"
+       transform="matrix(1.2432077,-0.13013275,0.10410619,0.99456619,-125.12367,40.84871)"
+       clip-path="url(#clipPath4460)" />
+  </g>
+</svg>
diff --git a/img/state-finished.svg b/img/state-finished.svg
new file mode 100644 (file)
index 0000000..a45fba6
--- /dev/null
@@ -0,0 +1,242 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="110.17202"
+   height="106.98372"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.0 r9654"
+   sodipodi:docname="flag-checkered.svg">
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="2.8"
+     inkscape:cx="17.682061"
+     inkscape:cy="57.153769"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     inkscape:window-width="1580"
+     inkscape:window-height="1121"
+     inkscape:window-x="1600"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0">
+    <inkscape:grid
+       snapvisiblegridlinesonly="true"
+       enabled="true"
+       visible="true"
+       empspacing="5"
+       id="grid2985"
+       type="xygrid" />
+  </sodipodi:namedview>
+  <defs
+     id="defs4">
+    <filter
+       inkscape:collect="always"
+       id="filter4450"
+       x="-0.38187307"
+       width="1.7637461"
+       y="-0.17529058"
+       height="1.3505812"
+       color-interpolation-filters="sRGB">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="5.8587928"
+         id="feGaussianBlur4452" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4460">
+      <g
+         style="fill:#39e31b;fill-opacity:1"
+         transform="matrix(0.88285815,0.33445807,-0.32834814,0.94284956,227.78713,-62.836707)"
+         id="g4462">
+        <path
+           inkscape:connector-curvature="0"
+           style="fill:#39e31b;fill-opacity:1;stroke:#000000;stroke-width:2.06040955;stroke-miterlimit:4;stroke-opacity:1"
+           d="m 250,529.86218 c 0,0 0.1483,-1.16701 1.43903,-2.56523 0.56876,-0.61613 1.38816,-1.22768 2.44041,-1.66694 0.83708,-0.34944 1.81007,-0.5948 2.8761,-0.7273 0.92867,-0.11542 1.92683,-0.0903 2.97361,-0.0508 0.95067,0.0359 1.90892,0.3476 2.86825,0.72976 0.89253,0.35555 1.73405,0.90161 2.58652,1.46668 0.8071,0.53499 1.59332,1.14474 2.39282,1.77237 0.76553,0.60096 1.52076,1.24854 2.26548,1.93219 0.72037,0.6613 1.4679,1.3173 2.1935,2.01615 0.70646,0.68043 1.42203,1.36963 2.14484,2.0658 0.70901,0.68288 1.42498,1.37246 2.14614,2.06705 0.71051,0.68433 1.43694,1.36203 2.16228,2.04764 0.71879,0.67944 1.4409,1.36201 2.16466,2.04615 0.72017,0.68073 1.47269,1.32928 2.21965,1.98393 0.74745,0.65508 1.52536,1.27368 2.2995,1.89328 0.77736,0.62218 1.57283,1.21808 2.39366,1.76959 0.82831,0.55655 1.67648,1.07426 2.54481,1.54182 0.88115,0.47446 1.77995,0.92095 2.7272,1.18623 0.96632,0.27062 1.9397,0.47247 2.91703,0.55672 1.00349,0.0865 2.00118,0.06 2.97464,-0.0317 1.00627,-0.0949 1.9938,-0.22768 2.94014,-0.45438 0.98813,-0.23671 1.948,-0.49556 2.86439,-0.80728 0.9682,-0.32934 1.89733,-0.68105 2.78629,-1.0461 0.95559,-0.39242 1.86638,-0.79695 2.70725,-1.24267 0.92579,-0.49073 1.80534,-0.95664 2.61458,-1.42686 0.92957,-0.54015 1.79354,-1.04005 2.54164,-1.55419 0.93919,-0.64546 1.76289,-1.21155 2.45395,-1.68649 1.56979,-1.07885 2.36163,-1.81541 2.36163,-1.81541 0,0 0,0.86948 0,2.41463 0,0.67933 0,1.48927 0,2.41333 0,0.7354 0,1.54309 0,2.41477 0,0.758 0,1.56439 0,2.41371 0,0.77057 0,1.57647 0,2.41363 0,0.7785 0,1.58404 0,2.41334 0,0.78453 0,1.59033 0,2.41461 0,0.7883 0,1.59352 0,2.41321 0,0.79165 0,1.59681 0,2.41329 0,0.79468 0,1.60009 0,2.4142 0,0.79684 0,1.60201 0,2.41363 0,0.79901 0,1.60427 0,2.41397 0,0.80054 0,1.60543 0,2.41291 0,0.80234 0,1.60724 0,2.41299 0,0.80434 0,1.60953 0,2.41388 0,0.80625 0,1.61165 0,2.41449 0,0.8075 0,1.61241 0,2.41298 0,0.80964 0,1.61483 0,2.41378 0,0.81192 0,1.61738 0,2.4145 0,0.81389 0,1.61908 0,2.41356 0,0.81648 0,1.62165 0,2.41331 0,0.81978 0,1.62509 0,2.41348 0,0.82387 0,1.62927 0,2.41343 0,0.8297 0,1.63562 0,2.41449 0,0.83694 0,1.64263 0,2.41301 0,0.84976 0,1.65655 0,2.41491 0,0.87175 0,1.6795 0,2.41494 0,0.92399 0,1.73384 0,2.41308 0,1.54472 0,2.41394 0,2.41394 0,0 -0.79125,0.73615 -2.36007,1.81433 -0.69129,0.4751 -1.51539,1.04147 -2.45513,1.68731 -0.74759,0.51379 -1.61089,1.01339 -2.53975,1.55312 -0.80917,0.47019 -1.68862,0.93616 -2.61437,1.42687 -0.84074,0.44565 -1.75127,0.85039 -2.70672,1.24275 -0.88892,0.36504 -1.81795,0.71692 -2.78613,1.04626 -0.91664,0.31181 -1.87672,0.571 -2.86515,0.80778 -0.94644,0.22672 -1.93402,0.35986 -2.9404,0.45476 -0.97348,0.0918 -1.9712,0.11863 -2.97472,0.0321 -0.97706,-0.0842 -1.95025,-0.28556 -2.91629,-0.5561 -0.94759,-0.26538 -1.84694,-0.71152 -2.72841,-1.18616 -0.86846,-0.46763 -1.71683,-0.98528 -2.54527,-1.54191 -0.82097,-0.55161 -1.61663,-1.14754 -2.39413,-1.76983 -0.77364,-0.61919 -1.55111,-1.23732 -2.29807,-1.89197 -0.74745,-0.65508 -1.50049,-1.30401 -2.22113,-1.98519 -0.72364,-0.68401 -1.44562,-1.36646 -2.16428,-2.04578 -0.72523,-0.68552 -1.45157,-1.36311 -2.16198,-2.04734 -0.72089,-0.69432 -1.43659,-1.38365 -2.14533,-2.06627 -0.72302,-0.69637 -1.4388,-1.38577 -2.14545,-2.06638 -0.72558,-0.69884 -1.47305,-1.35485 -2.1934,-2.01614 -0.74464,-0.68357 -1.49968,-1.33122 -2.26513,-1.93212 -0.79926,-0.62744 -1.5851,-1.23721 -2.39197,-1.77205 -0.8525,-0.56508 -1.69373,-1.11176 -2.58629,-1.46732 -0.95947,-0.38222 -1.91766,-0.69496 -2.86848,-0.73086 -1.04682,-0.0395 -2.04506,-0.0651 -2.9738,0.0503 -1.06685,0.1326 -2.04063,0.37776 -2.87829,0.72744 -1.05163,0.439 -1.87097,1.0498 -2.43954,1.66572 -1.29154,1.3991 -1.44032,2.56663 -1.44032,2.56663 0,0 0,-0.86948 0,-2.41463 0,-0.67933 0,-1.48927 0,-2.41333 0,-0.7354 0,-1.54309 0,-2.41477 0,-0.758 0,-1.56439 0,-2.41371 0,-0.77057 0,-1.57647 0,-2.41363 0,-0.7785 0,-1.58404 0,-2.41334 0,-0.78453 0,-1.59033 0,-2.41461 0,-0.7883 0,-1.59352 0,-2.41321 0,-0.79165 0,-1.59681 0,-2.41329 0,-0.79468 0,-1.60009 0,-2.4142 0,-0.79684 0,-1.60201 0,-2.41363 0,-0.79901 0,-1.60427 0,-2.41397 0,-0.80054 0,-1.60543 0,-2.41291 0,-0.80234 0,-1.60724 0,-2.41299 0,-0.80434 0,-1.60953 0,-2.41388 0,-0.80625 0,-1.61165 0,-2.41449 0,-0.8075 0,-1.61241 0,-2.41298 0,-0.80964 0,-1.61483 0,-2.41378 0,-0.81192 0,-1.61738 0,-2.4145 0,-0.81389 0,-1.61908 0,-2.41356 0,-0.81648 0,-1.62165 0,-2.41331 0,-0.81978 0,-1.62509 0,-2.41348 0,-0.82387 0,-1.62927 0,-2.41343 0,-0.8297 0,-1.63562 0,-2.41449 0,-0.83694 0,-1.64263 0,-2.41301 0,-0.84976 0,-1.65655 0,-2.41491 0,-0.87175 0,-1.6795 0,-2.41494 0,-0.92399 0,-1.73384 0,-2.41308 0,-1.54472 0,-2.41394 0,-2.41394"
+           id="path4464" />
+        <path
+           inkscape:connector-curvature="0"
+           id="path4466"
+           d="m 250,524.86218 c 0,0 0,0.86607 0,2.44091 0,0.68463 0,1.50321 0,2.44282 0,0.74089 0,1.55704 0,2.44209 0,0.76389 0,1.57912 0,2.4416 0,0.77681 0,1.59195 0,2.44246 0,0.7846 0,1.5993 0,2.44176 0,0.79038 0,1.60518 0,2.44249 0,0.79441 0,1.60908 0,2.44235 0,0.79712 0,1.61127 0,2.441 0,0.79997 0,1.61442 0,2.44207 0,0.80188 0,1.61615 0,2.44162 0,0.80366 0,1.61794 0,2.44177 0,0.80491 0,1.61893 0,2.44104 0,0.80647 0,1.62073 0,2.44182 0,0.80761 0,1.62184 0,2.44177 0,0.80896 0,1.62346 0,2.44264 0,0.80961 0,1.62378 0,2.44168 0,0.8105 0,1.62466 0,2.44165 0,0.81111 0,1.62502 0,2.44092 0,0.8122 0,1.62638 0,2.44174 0,0.81314 0,1.62746 0,2.44218 0,0.81413 0,1.62865 0,2.44278 0,0.8145 0,1.6286 0,2.44152 0,0.8155 0,1.62981 0,2.44215 0,0.81592 0,1.62984 0,2.44097 0,0.81678 0,1.63072 0,2.44101 0,0.8181 0,1.63248 0,2.44229 0,0.8191 0,1.63353 0,2.44241 0,0.82021 0,1.63471 0,2.4426 0,0.82093 0,1.63502 0,2.44134 0,0.82225 0,1.6364 0,2.44144 0,0.82395 0,1.63836 0,2.44215 0,0.82578 0,1.64034 0,2.44252 0,0.82723 0,1.64128 0,2.44086 0,0.83009 0,1.64459 0,2.44205 0,0.8331 0,1.64761 0,2.44186 0,0.83686 0,1.65123 0,2.44121 0,0.84268 0,1.6576 0,2.4424 0,0.85057 0,1.66578 0,2.44264 0,0.86251 0,1.67776 0,2.44167 0,0.88515 0,1.70137 0,2.44233 0,0.9387 0,1.75661 0,2.44083 0,1.5759 0,2.44259 0,2.44259"
+           style="fill:#39e31b;fill-opacity:1;stroke:#000000;stroke-width:4.12081909;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+      </g>
+    </clipPath>
+  </defs>
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     transform="translate(-343,-515.36218)"
+     id="layer1"
+     inkscape:groupmode="layer"
+     inkscape:label="Layer 1">
+    <g
+       id="g3501"
+       transform="matrix(1.1323952,0.21775193,-0.31004846,0.98045514,122.85182,-82.71213)">
+      <path
+         id="path3767"
+         d="m 370,529.86218 c 0,0 0,0.86607 0,2.44091 0,0.68463 0,1.50321 0,2.44282 0,0.74089 0,1.55704 0,2.44209 0,0.76389 0,1.57912 0,2.4416 0,0.77681 0,1.59195 0,2.44246 0,0.7846 0,1.5993 0,2.44176 0,0.79038 0,1.60518 0,2.44249 0,0.79441 0,1.60908 0,2.44235 0,0.79712 0,1.61127 0,2.441 0,0.79997 0,1.61442 0,2.44207 0,0.80188 0,1.61615 0,2.44162 0,0.80366 0,1.61794 0,2.44177 0,0.80491 0,1.61893 0,2.44104 0,0.80647 0,1.62073 0,2.44182 0,0.80761 0,1.62184 0,2.44177 0,0.80896 0,1.62346 0,2.44264 0,0.80961 0,1.62378 0,2.44168 0,0.8105 0,1.62466 0,2.44165 0,0.81111 0,1.62502 0,2.44092 0,0.8122 0,1.62638 0,2.44174 0,0.81314 0,1.62746 0,2.44218 0,0.81413 0,1.62865 0,2.44278 0,0.8145 0,1.6286 0,2.44152 0,0.8155 0,1.62981 0,2.44215 0,0.81592 0,1.62984 0,2.44097 0,0.81678 0,1.63072 0,2.44101 0,0.8181 0,1.63248 0,2.44229 0,0.8191 0,1.63353 0,2.44241 0,0.82021 0,1.63471 0,2.4426 0,0.82093 0,1.63502 0,2.44134 0,0.82225 0,1.6364 0,2.44144 0,0.82395 0,1.63836 0,2.44215 0,0.82578 0,1.64034 0,2.44252 0,0.82723 0,1.64128 0,2.44086 0,0.83009 0,1.64459 0,2.44205 0,0.8331 0,1.64761 0,2.44186 0,0.83686 0,1.65123 0,2.44121 0,0.84268 0,1.6576 0,2.4424 0,0.85057 0,1.66578 0,2.44264 0,0.86251 0,1.67776 0,2.44167 0,0.88515 0,1.70137 0,2.44233 0,0.9387 0,1.75661 0,2.44083 0,1.5759 0,2.44259 0,2.44259"
+         style="fill:none;stroke:#000000;stroke-width:3.6857729;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect3765"
+         d="m 370,534.86218 c 0,0 0.1483,-1.16701 1.43903,-2.56524 0.56876,-0.61611 1.38816,-1.22767 2.44041,-1.66693 0.83709,-0.34945 1.81007,-0.5948 2.8761,-0.7273 0.92867,-0.11542 1.92683,-0.0903 2.9736,-0.0508 0.95067,0.0359 1.90893,0.3476 2.86827,0.72976 0.89252,0.35555 1.73405,0.90161 2.58652,1.46668 0.80709,0.53498 1.59331,1.14474 2.39281,1.77237 0.76553,0.60096 1.52076,1.24854 2.26549,1.9322 0.72036,0.66129 1.4679,1.31729 2.19349,2.01615 0.70646,0.68042 1.42203,1.36962 2.14485,2.0658 0.709,0.68287 1.42496,1.37245 2.14613,2.06704 0.71051,0.68432 1.43694,1.36202 2.16228,2.04765 0.71878,0.67943 1.44089,1.362 2.16467,2.04614 0.72016,0.68073 1.47267,1.32928 2.21964,1.98393 0.74745,0.65507 1.52536,1.27368 2.2995,1.89328 0.77736,0.62217 1.57283,1.21807 2.39366,1.76959 0.82832,0.55655 1.67648,1.07426 2.54481,1.54182 0.88115,0.47446 1.77995,0.92095 2.72719,1.18623 0.96633,0.27062 1.93971,0.47247 2.91704,0.55672 1.00349,0.0865 2.00119,0.06 2.97464,-0.0317 1.00627,-0.0949 1.99381,-0.22768 2.94014,-0.45438 0.98812,-0.23671 1.948,-0.49556 2.86439,-0.80728 0.9682,-0.32934 1.89734,-0.68105 2.78629,-1.0461 0.95559,-0.39242 1.86637,-0.79695 2.70725,-1.24267 0.92579,-0.49073 1.80534,-0.95664 2.61457,-1.42686 0.92957,-0.54015 1.79355,-1.04005 2.54165,-1.55419 0.93919,-0.64546 1.76289,-1.21156 2.45395,-1.68649 1.56979,-1.07885 2.36163,-1.81541 2.36163,-1.81541 0,0 0,0.86948 0,2.41463 0,0.67933 0,1.48927 0,2.41333 0,0.7354 0,1.54309 0,2.41477 0,0.758 0,1.56439 0,2.41371 0,0.77057 0,1.57647 0,2.41363 0,0.7785 0,1.58404 0,2.41334 0,0.78453 0,1.59033 0,2.41461 0,0.7883 0,1.59352 0,2.41321 0,0.79165 0,1.59681 0,2.41329 0,0.79468 0,1.60009 0,2.4142 0,0.79684 0,1.60201 0,2.41363 0,0.79901 0,1.60427 0,2.41397 0,0.80054 0,1.60543 0,2.41291 0,0.80234 0,1.60724 0,2.41299 0,0.80434 0,1.60953 0,2.41388 0,0.80625 0,1.61165 0,2.41449 0,0.8075 0,1.61241 0,2.41298 0,0.80964 0,1.61483 0,2.41378 0,0.81192 0,1.61738 0,2.4145 0,0.81389 0,1.61908 0,2.41356 0,0.81648 0,1.62165 0,2.41331 0,0.81978 0,1.62509 0,2.41348 0,0.82387 0,1.62927 0,2.41343 0,0.8297 0,1.63562 0,2.41449 0,0.83694 0,1.64263 0,2.41301 0,0.84976 0,1.65655 0,2.41491 0,0.87175 0,1.6795 0,2.41494 0,0.92399 0,1.73384 0,2.41308 0,1.54472 0,2.41394 0,2.41394 0,0 -0.79125,0.73615 -2.36007,1.81433 -0.69128,0.4751 -1.51539,1.04147 -2.45513,1.68731 -0.74759,0.51379 -1.61089,1.01339 -2.53975,1.55313 -0.80917,0.47018 -1.68862,0.93615 -2.61436,1.42686 -0.84075,0.44565 -1.75127,0.85038 -2.70673,1.24275 -0.88892,0.36504 -1.81795,0.71693 -2.78613,1.04626 -0.91664,0.31181 -1.87673,0.571 -2.86515,0.80778 -0.94644,0.22673 -1.93402,0.35986 -2.94041,0.45476 -0.97347,0.0918 -1.97119,0.11863 -2.97472,0.0321 -0.97705,-0.0842 -1.95024,-0.28556 -2.91629,-0.5561 -0.94758,-0.26538 -1.84692,-0.71152 -2.72841,-1.18616 -0.86845,-0.46763 -1.71682,-0.98528 -2.54526,-1.54191 -0.82096,-0.55161 -1.61663,-1.14754 -2.39414,-1.76983 -0.77363,-0.61919 -1.55109,-1.23731 -2.29806,-1.89197 -0.74744,-0.65507 -1.50049,-1.30401 -2.22113,-1.98519 -0.72363,-0.68401 -1.44561,-1.36646 -2.16429,-2.04578 -0.72522,-0.68552 -1.45156,-1.36311 -2.16197,-2.04733 -0.72089,-0.69433 -1.43659,-1.38366 -2.14533,-2.06628 -0.72302,-0.69637 -1.4388,-1.38577 -2.14545,-2.06639 -0.72557,-0.69883 -1.47306,-1.35485 -2.19341,-2.01613 -0.74463,-0.68357 -1.49967,-1.33122 -2.26512,-1.93212 -0.79926,-0.62744 -1.5851,-1.23721 -2.39197,-1.77205 -0.85249,-0.56508 -1.69373,-1.11176 -2.58629,-1.46733 -0.95947,-0.38221 -1.91766,-0.69495 -2.86848,-0.73085 -1.04682,-0.0395 -2.04506,-0.0651 -2.97379,0.0503 -1.06685,0.1326 -2.04064,0.37776 -2.87831,0.72744 -1.05162,0.439 -1.87097,1.04981 -2.43953,1.66572 -1.29154,1.3991 -1.44032,2.56663 -1.44032,2.56663 0,0 0,-0.86948 0,-2.41463 0,-0.67933 0,-1.48927 0,-2.41333 0,-0.7354 0,-1.54309 0,-2.41477 0,-0.758 0,-1.56439 0,-2.41371 0,-0.77057 0,-1.57647 0,-2.41363 0,-0.7785 0,-1.58404 0,-2.41334 0,-0.78453 0,-1.59033 0,-2.41461 0,-0.7883 0,-1.59352 0,-2.41321 0,-0.79165 0,-1.59681 0,-2.41329 0,-0.79468 0,-1.60009 0,-2.4142 0,-0.79684 0,-1.60201 0,-2.41363 0,-0.79901 0,-1.60427 0,-2.41397 0,-0.80054 0,-1.60543 0,-2.41291 0,-0.80234 0,-1.60724 0,-2.41299 0,-0.80434 0,-1.60953 0,-2.41388 0,-0.80625 0,-1.61165 0,-2.41449 0,-0.8075 0,-1.61241 0,-2.41298 0,-0.80964 0,-1.61483 0,-2.41378 0,-0.81192 0,-1.61738 0,-2.4145 0,-0.81389 0,-1.61908 0,-2.41356 0,-0.81648 0,-1.62165 0,-2.41331 0,-0.81978 0,-1.62509 0,-2.41348 0,-0.82387 0,-1.62927 0,-2.41343 0,-0.8297 0,-1.63562 0,-2.41449 0,-0.83694 0,-1.64263 0,-2.41301 0,-0.84976 0,-1.65655 0,-2.41491 0,-0.87175 0,-1.6795 0,-2.41494 0,-0.92399 0,-1.73384 0,-2.41308 0,-1.54472 0,-2.41394 0,-2.41394"
+         style="fill:none;stroke:#000000;stroke-width:1.84288645;stroke-miterlimit:4;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect3771"
+         d="m 379.73017,529.85199 c 0,0 1.28008,0.0975 2.86829,0.73014 0.84495,0.33659 1.72501,0.8959 2.58724,1.46743 0.86171,0.57119 1.67596,1.20984 2.39113,1.77127 1.34485,1.05574 2.2662,1.93287 2.2662,1.93287 0,0 0,1.06547 0,2.50085 0,0.76364 0,1.63197 0,2.50027 0,0.86779 0,1.73553 0,2.49867 0,1.43505 0,2.50021 0,2.50021 0,0 -0.92164,-0.87735 -2.2668,-1.93334 -0.71564,-0.5618 -1.53053,-1.20074 -2.39276,-1.77228 -0.86172,-0.57119 -1.74133,-1.12986 -2.58572,-1.46623 -1.58785,-0.63254 -2.86758,-0.72986 -2.86758,-0.72986 0,0 0,-1.06547 0,-2.50085 0,-0.76364 0,-1.63197 0,-2.50027 0,-0.86779 0,-1.73553 0,-2.49867 0,-1.43505 0,-2.50021 0,-2.50021"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect3995"
+         d="m 398.48935,603.94995 c 0,0 0.9225,0.87199 2.16528,2.04672 0.66118,0.62498 1.44273,1.30296 2.22071,1.9848 0.77753,0.68144 1.58785,1.32354 2.29765,1.89164 1.33474,1.06828 2.39417,1.76991 2.39417,1.76991 0,0 0,1.06547 0,2.50085 0,0.76364 0,1.63197 0,2.50027 0,0.86779 0,1.73553 0,2.49867 0,1.43505 0,2.50021 0,2.50021 0,0 -1.05972,-0.70186 -2.39477,-1.77039 -0.71026,-0.56847 -1.52107,-1.21108 -2.29905,-1.89292 -0.77753,-0.68144 -1.55852,-1.359 -2.21926,-1.98356 -1.2425,-1.17446 -2.16473,-2.0462 -2.16473,-2.0462 0,0 0,-1.06547 0,-2.50085 0,-0.76364 0,-1.63197 0,-2.50027 0,-0.86779 0,-1.73553 0,-2.49867 0,-1.43505 0,-2.50021 0,-2.50021"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect3997"
+         d="m 418.73118,614.89547 c 0,0 1.27909,-0.0566 2.94212,-0.45502 0.88476,-0.21195 1.8858,-0.4747 2.86505,-0.8078 0.97868,-0.33291 1.94428,-0.70059 2.78527,-1.04595 1.58142,-0.64943 2.70616,-1.24241 2.70616,-1.24241 0,0 0,1.06547 0,2.50085 0,0.76364 0,1.63197 0,2.50027 0,0.86779 0,1.73553 0,2.49867 0,1.43505 0,2.50021 0,2.50021 0,0 -1.12508,0.59313 -2.70687,1.2427 -0.84153,0.34558 -1.80783,0.71341 -2.78709,1.04652 -0.97867,0.3329 -1.97908,0.59531 -2.86326,0.80712 -1.66265,0.3983 -2.94138,0.45484 -2.94138,0.45484 0,0 0,-1.06547 0,-2.50085 0,-0.76364 0,-1.63197 0,-2.50027 0,-0.86779 0,-1.73553 0,-2.49867 0,-1.43505 0,-2.50021 0,-2.50021"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect3999"
+         d="m 430.02978,601.34429 c 0,0 1.13629,-0.56795 2.6149,-1.42713 0.78664,-0.45709 1.68839,-0.96798 2.5409,-1.55388 0.85201,-0.58555 1.70397,-1.17106 2.45323,-1.686 1.40895,-0.96831 2.36119,-1.8151 2.36119,-1.8151 0,0 0,1.06547 0,2.50085 0,0.76364 0,1.63197 0,2.50027 0,0.86779 0,1.73553 0,2.49867 0,1.43505 0,2.50021 0,2.50021 0,0 -0.95254,0.847 -2.36182,1.81554 -0.74975,0.51527 -1.60229,1.10118 -2.4548,1.68707 -0.852,0.58555 -1.75323,1.09596 -2.53936,1.55275 -1.47827,0.85898 -2.61424,1.42675 -2.61424,1.42675 0,0 0,-1.06547 0,-2.50085 0,-0.76364 0,-1.63197 0,-2.50027 0,-0.86779 0,-1.73553 0,-2.49867 0,-1.43505 0,-2.50021 0,-2.50021"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect4001"
+         d="m 418.73118,594.89547 c 0,0 1.27909,-0.0566 2.94212,-0.45502 0.88476,-0.21195 1.8858,-0.4747 2.86505,-0.8078 0.97868,-0.33291 1.94428,-0.70059 2.78527,-1.04595 1.58142,-0.64943 2.70616,-1.24241 2.70616,-1.24241 0,0 0,0.82432 0,1.99961 0,0.59705 0,1.28467 0,2.00081 0,0.65867 0,1.34147 0,2.00012 0,0.71611 0,1.40366 0,2.00062 0,1.17488 0,1.99884 0,1.99884 0,0 -1.12508,0.59313 -2.70687,1.2427 -0.84153,0.34558 -1.80783,0.71341 -2.78709,1.04652 -0.97867,0.3329 -1.97908,0.59531 -2.86326,0.80712 -1.66265,0.3983 -2.94138,0.45484 -2.94138,0.45484 0,0 0,-0.82432 0,-1.99961 0,-0.59705 0,-1.28467 0,-2.00081 0,-0.65867 0,-1.34147 0,-2.00012 0,-0.71611 0,-1.40366 0,-2.00062 0,-1.17488 0,-1.99884 0,-1.99884"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect4003"
+         d="m 398.48935,583.94995 c 0,0 0.9225,0.87199 2.16528,2.04672 0.66118,0.62498 1.44273,1.30296 2.22071,1.9848 0.77753,0.68144 1.58785,1.32354 2.29765,1.89164 1.33474,1.06828 2.39417,1.76991 2.39417,1.76991 0,0 0,0.82432 0,1.99961 0,0.59705 0,1.28467 0,2.00081 0,0.65867 0,1.34147 0,2.00012 0,0.71611 0,1.40366 0,2.00062 0,1.17488 0,1.99884 0,1.99884 0,0 -1.05972,-0.70186 -2.39477,-1.77039 -0.71026,-0.56847 -1.52107,-1.21108 -2.29905,-1.89292 -0.77753,-0.68144 -1.55852,-1.359 -2.21926,-1.98356 -1.2425,-1.17446 -2.16473,-2.0462 -2.16473,-2.0462 0,0 0,-0.82432 0,-1.99961 0,-0.59705 0,-1.28467 0,-2.00081 0,-0.65867 0,-1.34147 0,-2.00012 0,-0.71611 0,-1.40366 0,-2.00062 0,-1.17488 0,-1.99884 0,-1.99884"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect4005"
+         d="m 407.56716,601.64302 c 0,0 1.04103,0.73199 2.54661,1.54269 0.80098,0.4313 1.7319,0.90685 2.72777,1.18574 0.99528,0.27873 2.00971,0.47791 2.91543,0.55598 1.70318,0.14682 2.97421,-0.032 2.97421,-0.032 0,0 0,1.06547 0,2.50085 0,0.76364 0,1.63197 0,2.50027 0,0.86779 0,1.73553 0,2.49867 0,1.43505 0,2.50021 0,2.50021 0,0 -1.2714,0.17875 -2.97497,0.0319 -0.90632,-0.0781 -1.92137,-0.27774 -2.91724,-0.55664 -0.99529,-0.27873 -1.92541,-0.75436 -2.72587,-1.18538 -1.50524,-0.81051 -2.54594,-1.54233 -2.54594,-1.54233 0,0 0,-1.06547 0,-2.50085 0,-0.76364 0,-1.63197 0,-2.50027 0,-0.86779 0,-1.73553 0,-2.49867 0,-1.43505 0,-2.50021 0,-2.50021"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect4007"
+         d="m 379.73017,569.85199 c 0,0 1.28008,0.0975 2.86829,0.73014 0.84495,0.33659 1.72501,0.8959 2.58724,1.46743 0.86171,0.57119 1.67596,1.20984 2.39113,1.77127 1.34485,1.05574 2.2662,1.93287 2.2662,1.93287 0,0 0,0.82432 0,1.99961 0,0.59705 0,1.28467 0,2.00081 0,0.65867 0,1.34147 0,2.00012 0,0.71611 0,1.40366 0,2.00062 0,1.17488 0,1.99884 0,1.99884 0,0 -0.92164,-0.87735 -2.2668,-1.93334 -0.71564,-0.5618 -1.53053,-1.20074 -2.39276,-1.77228 -0.86172,-0.57119 -1.74133,-1.12986 -2.58572,-1.46623 -1.58785,-0.63254 -2.86758,-0.72986 -2.86758,-0.72986 0,0 0,-0.82432 0,-1.99961 0,-0.59705 0,-1.28467 0,-2.00081 0,-0.65867 0,-1.34147 0,-2.00012 0,-0.71611 0,-1.40366 0,-2.00062 0,-1.17488 0,-1.99884 0,-1.99884"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect4009"
+         d="m 389.84303,585.7537 c 0,0 0.9619,0.82997 2.19366,2.01634 0.65531,0.63116 1.40047,1.34885 2.14559,2.06652 0.74469,0.71725 1.48934,1.43445 2.14422,2.0652 1.23148,1.18609 2.16285,2.04819 2.16285,2.04819 0,0 0,1.06547 0,2.50085 0,0.76364 0,1.63197 0,2.50027 0,0.86779 0,1.73553 0,2.49867 0,1.43505 0,2.50021 0,2.50021 0,0 -0.93163,-0.86235 -2.1634,-2.04872 -0.65531,-0.63116 -1.40046,-1.34885 -2.14559,-2.06652 -0.74469,-0.71725 -1.48933,-1.43445 -2.14422,-2.0652 -1.23148,-1.18609 -2.19311,-2.01581 -2.19311,-2.01581 0,0 0,-1.06547 0,-2.50085 0,-0.76364 0,-1.63197 0,-2.50027 0,-0.86779 0,-1.73553 0,-2.49867 0,-1.43505 0,-2.50021 0,-2.50021"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect4011"
+         d="m 370,584.86218 c 0,0 0.281,-1.31076 1.44047,-2.56679 0.61686,-0.66823 1.48598,-1.26756 2.44055,-1.66604 0.95401,-0.39825 1.97349,-0.61464 2.8757,-0.72678 1.69659,-0.21087 2.97345,-0.0506 2.97345,-0.0506 0,0 0,1.06547 0,2.50085 0,0.76364 0,1.63197 0,2.50027 0,0.86779 0,1.73553 0,2.49867 0,1.43505 0,2.50021 0,2.50021 0,0 -1.27723,-0.16025 -2.9742,0.0507 -0.90281,0.11221 -1.92284,0.32923 -2.87741,0.72772 -0.95401,0.39825 -1.82215,0.99778 -2.4386,1.66557 -1.15921,1.25574 -1.43996,2.56623 -1.43996,2.56623 0,0 0,-1.06547 0,-2.50085 0,-0.76364 0,-1.63197 0,-2.50027 0,-0.86779 0,-1.73553 0,-2.49867 0,-1.43505 0,-2.50021 0,-2.50021"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect4013"
+         d="m 430.02978,581.34429 c 0,0 1.13629,-0.56795 2.6149,-1.42713 0.78664,-0.45709 1.68839,-0.96798 2.5409,-1.55388 0.85201,-0.58555 1.70397,-1.17106 2.45323,-1.686 1.40895,-0.96831 2.36119,-1.8151 2.36119,-1.8151 0,0 0,1.06547 0,2.50085 0,0.76364 0,1.63197 0,2.50027 0,0.86779 0,1.73553 0,2.49867 0,1.43505 0,2.50021 0,2.50021 0,0 -0.95254,0.847 -2.36182,1.81554 -0.74975,0.51527 -1.60229,1.10118 -2.4548,1.68707 -0.852,0.58555 -1.75323,1.09596 -2.53936,1.55275 -1.47827,0.85898 -2.61424,1.42675 -2.61424,1.42675 0,0 0,-1.06547 0,-2.50085 0,-0.76364 0,-1.63197 0,-2.50027 0,-0.86779 0,-1.73553 0,-2.49867 0,-1.43505 0,-2.50021 0,-2.50021"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect4015"
+         d="m 407.56716,581.64302 c 0,0 1.04103,0.73199 2.54661,1.54269 0.80098,0.4313 1.7319,0.90685 2.72777,1.18574 0.99528,0.27873 2.00971,0.47791 2.91543,0.55598 1.70318,0.14682 2.97421,-0.032 2.97421,-0.032 0,0 0,1.06547 0,2.50085 0,0.76364 0,1.63197 0,2.50027 0,0.86779 0,1.73553 0,2.49867 0,1.43505 0,2.50021 0,2.50021 0,0 -1.2714,0.17875 -2.97497,0.0319 -0.90632,-0.0781 -1.92137,-0.27774 -2.91724,-0.55664 -0.99529,-0.27873 -1.92541,-0.75436 -2.72587,-1.18538 -1.50524,-0.81051 -2.54594,-1.54233 -2.54594,-1.54233 0,0 0,-1.06547 0,-2.50085 0,-0.76364 0,-1.63197 0,-2.50027 0,-0.86779 0,-1.73553 0,-2.49867 0,-1.43505 0,-2.50021 0,-2.50021"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect4017"
+         d="m 398.48935,563.94995 c 0,0 0.9225,0.87199 2.16528,2.04672 0.66118,0.62498 1.44273,1.30296 2.22071,1.9848 0.77753,0.68144 1.58785,1.32354 2.29765,1.89164 1.33474,1.06828 2.39417,1.76991 2.39417,1.76991 0,0 0,1.06547 0,2.50085 0,0.76364 0,1.63197 0,2.50027 0,0.86779 0,1.73553 0,2.49867 0,1.43505 0,2.50021 0,2.50021 0,0 -1.05972,-0.70186 -2.39477,-1.77039 -0.71026,-0.56847 -1.52107,-1.21108 -2.29905,-1.89292 -0.77753,-0.68144 -1.55852,-1.359 -2.21926,-1.98356 -1.2425,-1.17446 -2.16473,-2.0462 -2.16473,-2.0462 0,0 0,-1.06547 0,-2.50085 0,-0.76364 0,-1.63197 0,-2.50027 0,-0.86779 0,-1.73553 0,-2.49867 0,-1.43505 0,-2.50021 0,-2.50021"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect4019"
+         d="m 389.84303,565.7537 c 0,0 0.9619,0.82997 2.19366,2.01634 0.65531,0.63116 1.40047,1.34885 2.14559,2.06652 0.74469,0.71725 1.48934,1.43445 2.14422,2.0652 1.23148,1.18609 2.16285,2.04819 2.16285,2.04819 0,0 0,1.06547 0,2.50085 0,0.76364 0,1.63197 0,2.50027 0,0.86779 0,1.73553 0,2.49867 0,1.43505 0,2.50021 0,2.50021 0,0 -0.93163,-0.86235 -2.1634,-2.04872 -0.65531,-0.63116 -1.40046,-1.34885 -2.14559,-2.06652 -0.74469,-0.71725 -1.48933,-1.43445 -2.14422,-2.0652 -1.23148,-1.18609 -2.19311,-2.01581 -2.19311,-2.01581 0,0 0,-1.06547 0,-2.50085 0,-0.76364 0,-1.63197 0,-2.50027 0,-0.86779 0,-1.73553 0,-2.49867 0,-1.43505 0,-2.50021 0,-2.50021"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect4021"
+         d="m 379.73017,549.85199 c 0,0 1.28008,0.0975 2.86829,0.73014 0.84495,0.33659 1.72501,0.8959 2.58724,1.46743 0.86171,0.57119 1.67596,1.20984 2.39113,1.77127 1.34485,1.05574 2.2662,1.93287 2.2662,1.93287 0,0 0,1.06547 0,2.50085 0,0.76364 0,1.63197 0,2.50027 0,0.86779 0,1.73553 0,2.49867 0,1.43505 0,2.50021 0,2.50021 0,0 -0.92164,-0.87735 -2.2668,-1.93334 -0.71564,-0.5618 -1.53053,-1.20074 -2.39276,-1.77228 -0.86172,-0.57119 -1.74133,-1.12986 -2.58572,-1.46623 -1.58785,-0.63254 -2.86758,-0.72986 -2.86758,-0.72986 0,0 0,-1.06547 0,-2.50085 0,-0.76364 0,-1.63197 0,-2.50027 0,-0.86779 0,-1.73553 0,-2.49867 0,-1.43505 0,-2.50021 0,-2.50021"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect4023"
+         d="m 370,564.86218 c 0,0 0.281,-1.31076 1.44047,-2.56679 0.61686,-0.66823 1.48598,-1.26756 2.44055,-1.66604 0.95401,-0.39825 1.97349,-0.61464 2.8757,-0.72678 1.69659,-0.21087 2.97345,-0.0506 2.97345,-0.0506 0,0 0,1.06547 0,2.50085 0,0.76364 0,1.63197 0,2.50027 0,0.86779 0,1.73553 0,2.49867 0,1.43505 0,2.50021 0,2.50021 0,0 -1.27723,-0.16025 -2.9742,0.0507 -0.90281,0.11221 -1.92284,0.32923 -2.87741,0.72772 -0.95401,0.39825 -1.82215,0.99778 -2.4386,1.66557 -1.15921,1.25574 -1.43996,2.56623 -1.43996,2.56623 0,0 0,-1.06547 0,-2.50085 0,-0.76364 0,-1.63197 0,-2.50027 0,-0.86779 0,-1.73553 0,-2.49867 0,-1.43505 0,-2.50021 0,-2.50021"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect4025"
+         d="m 430.02978,561.34429 c 0,0 1.13629,-0.56795 2.6149,-1.42713 0.78664,-0.45709 1.68839,-0.96798 2.5409,-1.55388 0.85201,-0.58555 1.70397,-1.17106 2.45323,-1.686 1.40895,-0.96831 2.36119,-1.8151 2.36119,-1.8151 0,0 0,1.06547 0,2.50085 0,0.76364 0,1.63197 0,2.50027 0,0.86779 0,1.73553 0,2.49867 0,1.43505 0,2.50021 0,2.50021 0,0 -0.95254,0.847 -2.36182,1.81554 -0.74975,0.51527 -1.60229,1.10118 -2.4548,1.68707 -0.852,0.58555 -1.75323,1.09596 -2.53936,1.55275 -1.47827,0.85898 -2.61424,1.42675 -2.61424,1.42675 0,0 0,-1.06547 0,-2.50085 0,-0.76364 0,-1.63197 0,-2.50027 0,-0.86779 0,-1.73553 0,-2.49867 0,-1.43505 0,-2.50021 0,-2.50021"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect4027"
+         d="m 407.56716,561.64302 c 0,0 1.04103,0.73199 2.54661,1.54269 0.80098,0.4313 1.7319,0.90685 2.72777,1.18574 0.99528,0.27873 2.00971,0.47791 2.91543,0.55598 1.70318,0.14682 2.97421,-0.032 2.97421,-0.032 0,0 0,1.06547 0,2.50085 0,0.76364 0,1.63197 0,2.50027 0,0.86779 0,1.73553 0,2.49867 0,1.43505 0,2.50021 0,2.50021 0,0 -1.2714,0.17875 -2.97497,0.0319 -0.90632,-0.0781 -1.92137,-0.27774 -2.91724,-0.55664 -0.99529,-0.27873 -1.92541,-0.75436 -2.72587,-1.18538 -1.50524,-0.81051 -2.54594,-1.54233 -2.54594,-1.54233 0,0 0,-1.06547 0,-2.50085 0,-0.76364 0,-1.63197 0,-2.50027 0,-0.86779 0,-1.73553 0,-2.49867 0,-1.43505 0,-2.50021 0,-2.50021"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect4029"
+         d="m 389.84303,545.7537 c 0,0 0.9619,0.82997 2.19366,2.01634 0.65531,0.63116 1.40047,1.34885 2.14559,2.06652 0.74469,0.71725 1.48934,1.43445 2.14422,2.0652 1.23148,1.18609 2.16285,2.04819 2.16285,2.04819 0,0 0,1.06547 0,2.50085 0,0.76364 0,1.63197 0,2.50027 0,0.86779 0,1.73553 0,2.49867 0,1.43505 0,2.50021 0,2.50021 0,0 -0.93163,-0.86235 -2.1634,-2.04872 -0.65531,-0.63116 -1.40046,-1.34885 -2.14559,-2.06652 -0.74469,-0.71725 -1.48933,-1.43445 -2.14422,-2.0652 -1.23148,-1.18609 -2.19311,-2.01581 -2.19311,-2.01581 0,0 0,-1.06547 0,-2.50085 0,-0.76364 0,-1.63197 0,-2.50027 0,-0.86779 0,-1.73553 0,-2.49867 0,-1.43505 0,-2.50021 0,-2.50021"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect4031"
+         d="m 370,544.86218 c 0,0 0.281,-1.31076 1.44047,-2.56679 0.61686,-0.66823 1.48598,-1.26756 2.44055,-1.66604 0.95401,-0.39825 1.97349,-0.61464 2.8757,-0.72678 1.69659,-0.21087 2.97345,-0.0506 2.97345,-0.0506 0,0 0,1.06547 0,2.50085 0,0.76364 0,1.63197 0,2.50027 0,0.86779 0,1.73553 0,2.49867 0,1.43505 0,2.50021 0,2.50021 0,0 -1.27723,-0.16025 -2.9742,0.0507 -0.90281,0.11221 -1.92284,0.32923 -2.87741,0.72772 -0.95401,0.39825 -1.82215,0.99778 -2.4386,1.66557 -1.15921,1.25574 -1.43996,2.56623 -1.43996,2.56623 0,0 0,-1.06547 0,-2.50085 0,-0.76364 0,-1.63197 0,-2.50027 0,-0.86779 0,-1.73553 0,-2.49867 0,-1.43505 0,-2.50021 0,-2.50021"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect4033"
+         d="m 418.73118,554.89547 c 0,0 1.27909,-0.0566 2.94212,-0.45502 0.88476,-0.21195 1.8858,-0.4747 2.86505,-0.8078 0.97868,-0.33291 1.94428,-0.70059 2.78527,-1.04595 1.58142,-0.64943 2.70616,-1.24241 2.70616,-1.24241 0,0 0,1.06547 0,2.50085 0,0.76364 0,1.63197 0,2.50027 0,0.86779 0,1.73553 0,2.49867 0,1.43505 0,2.50021 0,2.50021 0,0 -1.12508,0.59313 -2.70687,1.2427 -0.84153,0.34558 -1.80783,0.71341 -2.78709,1.04652 -0.97867,0.3329 -1.97908,0.59531 -2.86326,0.80712 -1.66265,0.3983 -2.94138,0.45484 -2.94138,0.45484 0,0 0,-1.06547 0,-2.50085 0,-0.76364 0,-1.63197 0,-2.50027 0,-0.86779 0,-1.73553 0,-2.49867 0,-1.43505 0,-2.50021 0,-2.50021"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect4035"
+         d="m 398.48935,543.94995 c 0,0 0.9225,0.87199 2.16528,2.04672 0.66118,0.62498 1.44273,1.30296 2.22071,1.9848 0.77753,0.68144 1.58785,1.32354 2.29765,1.89164 1.33474,1.06828 2.39417,1.76991 2.39417,1.76991 0,0 0,1.06547 0,2.50085 0,0.76364 0,1.63197 0,2.50027 0,0.86779 0,1.73553 0,2.49867 0,1.43505 0,2.50021 0,2.50021 0,0 -1.05972,-0.70186 -2.39477,-1.77039 -0.71026,-0.56847 -1.52107,-1.21108 -2.29905,-1.89292 -0.77753,-0.68144 -1.55852,-1.359 -2.21926,-1.98356 -1.2425,-1.17446 -2.16473,-2.0462 -2.16473,-2.0462 0,0 0,-1.06547 0,-2.50085 0,-0.76364 0,-1.63197 0,-2.50027 0,-0.86779 0,-1.73553 0,-2.49867 0,-1.43505 0,-2.50021 0,-2.50021"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect4037"
+         d="m 379.73017,589.85199 c 0,0 1.28008,0.0975 2.86829,0.73014 0.84495,0.33659 1.72501,0.8959 2.58724,1.46743 0.86171,0.57119 1.67596,1.20984 2.39113,1.77127 1.34485,1.05574 2.2662,1.93287 2.2662,1.93287 0,0 0,1.06547 0,2.50085 0,0.76364 0,1.63197 0,2.50027 0,0.86779 0,1.73553 0,2.49867 0,1.43505 0,2.50021 0,2.50021 0,0 -0.92164,-0.87735 -2.2668,-1.93334 -0.71564,-0.5618 -1.53053,-1.20074 -2.39276,-1.77228 -0.86172,-0.57119 -1.74133,-1.12986 -2.58572,-1.46623 -1.58785,-0.63254 -2.86758,-0.72986 -2.86758,-0.72986 0,0 0,-1.06547 0,-2.50085 0,-0.76364 0,-1.63197 0,-2.50027 0,-0.86779 0,-1.73553 0,-2.49867 0,-1.43505 0,-2.50021 0,-2.50021"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+      <path
+         id="rect4050"
+         d="m 418.73118,574.89547 c 0,0 1.27909,-0.0566 2.94212,-0.45502 0.88476,-0.21195 1.8858,-0.4747 2.86505,-0.8078 0.97868,-0.33291 1.94428,-0.70059 2.78527,-1.04595 1.58142,-0.64943 2.70616,-1.24241 2.70616,-1.24241 0,0 0,1.06547 0,2.50085 0,0.76364 0,1.63197 0,2.50027 0,0.86779 0,1.73553 0,2.49867 0,1.43505 0,2.50021 0,2.50021 0,0 -1.12508,0.59313 -2.70687,1.2427 -0.84153,0.34558 -1.80783,0.71341 -2.78709,1.04652 -0.97867,0.3329 -1.97908,0.59531 -2.86326,0.80712 -1.66265,0.3983 -2.94138,0.45484 -2.94138,0.45484 0,0 0,-1.06547 0,-2.50085 0,-0.76364 0,-1.63197 0,-2.50027 0,-0.86779 0,-1.73553 0,-2.49867 0,-1.43505 0,-2.50021 0,-2.50021"
+         style="fill:#000000;fill-opacity:1;stroke:none"
+         inkscape:connector-curvature="0" />
+    </g>
+    <path
+       clip-path="url(#clipPath4460)"
+       transform="matrix(1.2432077,-0.13013275,0.10410619,0.99456619,-17.798227,40.923414)"
+       inkscape:connector-curvature="0"
+       id="path4468"
+       d="m 290,532.36218 -20,57.77778 15,22.22222 25,-57.77778 z"
+       style="fill:#000000;fill-opacity:0.16599193;stroke:none;filter:url(#filter4450)" />
+  </g>
+</svg>
diff --git a/img/state-go.svg b/img/state-go.svg
new file mode 100644 (file)
index 0000000..e959d97
--- /dev/null
@@ -0,0 +1,232 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<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="142.5"
+   height="142.5"
+   id="svg4265"
+   version="1.1"
+   inkscape:version="0.48.0 r9654"
+   sodipodi:docname="pit-stop.svg">
+  <defs
+     id="defs4267">
+    <linearGradient
+       id="linearGradient6294">
+      <stop
+         style="stop-color:#342d2d;stop-opacity:1;"
+         offset="0"
+         id="stop6296" />
+      <stop
+         style="stop-color:#484545;stop-opacity:1;"
+         offset="1"
+         id="stop6298" />
+    </linearGradient>
+    <marker
+       inkscape:stockid="EmptyTriangleOutL"
+       orient="auto"
+       refY="0.0"
+       refX="0.0"
+       id="EmptyTriangleOutL"
+       style="overflow:visible">
+      <path
+         id="path6005"
+         d="M 5.77,0.0 L -2.88,5.0 L -2.88,-5.0 L 5.77,0.0 z "
+         style="fill-rule:evenodd;fill:#FFFFFF;stroke:#000000;stroke-width:1.0pt;marker-start:none"
+         transform="scale(0.8) translate(-6,0)" />
+    </marker>
+    <linearGradient
+       id="linearGradient3784">
+      <stop
+         style="stop-color:#b00000;stop-opacity:1;"
+         offset="0"
+         id="stop3786" />
+      <stop
+         style="stop-color:#f63a3a;stop-opacity:1;"
+         offset="1"
+         id="stop3788" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6758">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6760" />
+      <stop
+         style="stop-color:#3a2f2f;stop-opacity:1;"
+         offset="1"
+         id="stop6762" />
+    </linearGradient>
+    <linearGradient
+       osb:paint="gradient"
+       id="linearGradient6391">
+      <stop
+         id="stop6393"
+         offset="0"
+         style="stop-color:#03ff18;stop-opacity:1;" />
+      <stop
+         style="stop-color:#ffcc00;stop-opacity:1;"
+         offset="0.62396693"
+         id="stop6395" />
+      <stop
+         id="stop6397"
+         offset="1"
+         style="stop-color:#d40000;stop-opacity:1;" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6383"
+       osb:paint="solid">
+      <stop
+         style="stop-color:#000000;stop-opacity:1;"
+         offset="0"
+         id="stop6385" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6348"
+       osb:paint="gradient">
+      <stop
+         style="stop-color:#03ff18;stop-opacity:1;"
+         offset="0"
+         id="stop6350" />
+      <stop
+         id="stop6364"
+         offset="0.62025315"
+         style="stop-color:#ffcc00;stop-opacity:1;" />
+      <stop
+         style="stop-color:#d40000;stop-opacity:1;"
+         offset="1"
+         id="stop6352" />
+    </linearGradient>
+    <linearGradient
+       id="linearGradient6306"
+       osb:paint="solid">
+      <stop
+         style="stop-color:#d40000;stop-opacity:1;"
+         offset="0"
+         id="stop6308" />
+    </linearGradient>
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6348"
+       id="linearGradient6362"
+       x1="42"
+       y1="103.7132"
+       x2="163"
+       y2="103.7132"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6391"
+       id="linearGradient6389"
+       gradientUnits="userSpaceOnUse"
+       x1="42"
+       y1="103.7132"
+       x2="163"
+       y2="103.7132" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient3784"
+       id="linearGradient3792"
+       x1="95"
+       y1="80"
+       x2="25"
+       y2="20"
+       gradientUnits="userSpaceOnUse" />
+    <linearGradient
+       inkscape:collect="always"
+       xlink:href="#linearGradient6294"
+       id="linearGradient6300"
+       x1="105"
+       y1="122.5"
+       x2="35"
+       y2="22.5"
+       gradientUnits="userSpaceOnUse" />
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="3.0989011"
+     inkscape:cx="66.571195"
+     inkscape:cy="76.001711"
+     inkscape:current-layer="layer1"
+     inkscape:document-units="px"
+     showgrid="false"
+     inkscape:window-width="1580"
+     inkscape:window-height="1121"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0">
+    <inkscape:grid
+       type="xygrid"
+       id="grid4273"
+       empspacing="5"
+       visible="true"
+       enabled="true"
+       snapvisiblegridlinesonly="true" />
+  </sodipodi:namedview>
+  <metadata
+     id="metadata4270">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     id="layer1"
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     transform="translate(-28.749999,-306.25)">
+    <path
+       style="fill:#4aff0f;stroke:url(#linearGradient6300);stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none;fill-opacity:1"
+       d="m 70,7.5 -45,40 30,0 -25,85 80,0 -25,-85 30,0 -45,-40"
+       id="path6292"
+       inkscape:connector-curvature="0"
+       transform="translate(28.749999,306.25)"
+       sodipodi:nodetypes="cccccccc" />
+    <text
+       xml:space="preserve"
+       style="font-size:48px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Mono;-inkscape-font-specification:DejaVu Sans Mono Bold"
+       x="104.27819"
+       y="96.634529"
+       id="text3794"
+       sodipodi:linespacing="125%"
+       transform="translate(0,280)"><tspan
+         sodipodi:role="line"
+         id="tspan3796"
+         x="104.27819"
+         y="96.634529" /></text>
+    <text
+       xml:space="preserve"
+       style="font-size:64px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans Mono;-inkscape-font-specification:DejaVu Sans Mono Bold"
+       x="99.942772"
+       y="104.16446"
+       id="text3802"
+       sodipodi:linespacing="125%"
+       transform="translate(0,280)"><tspan
+         sodipodi:role="line"
+         id="tspan3804"
+         x="99.942772"
+         y="104.16446" /></text>
+  </g>
+</svg>
diff --git a/img/state-greenflag.svg b/img/state-greenflag.svg
new file mode 100644 (file)
index 0000000..0644a0f
--- /dev/null
@@ -0,0 +1,123 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="110.17202"
+   height="106.98372"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.0 r9654"
+   sodipodi:docname="state-greenflag.svg">
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="2.8"
+     inkscape:cx="124.59971"
+     inkscape:cy="57.544272"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="true"
+     inkscape:window-width="1580"
+     inkscape:window-height="1121"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0">
+    <inkscape:grid
+       snapvisiblegridlinesonly="true"
+       enabled="true"
+       visible="true"
+       empspacing="5"
+       id="grid2985"
+       type="xygrid" />
+  </sodipodi:namedview>
+  <defs
+     id="defs4">
+    <filter
+       inkscape:collect="always"
+       id="filter4450"
+       x="-0.38187307"
+       width="1.7637461"
+       y="-0.17529058"
+       height="1.3505812"
+       color-interpolation-filters="sRGB">
+      <feGaussianBlur
+         inkscape:collect="always"
+         stdDeviation="5.8587928"
+         id="feGaussianBlur4452" />
+    </filter>
+    <clipPath
+       clipPathUnits="userSpaceOnUse"
+       id="clipPath4460">
+      <g
+         style="fill:#39e31b;fill-opacity:1"
+         transform="matrix(0.88285815,0.33445807,-0.32834814,0.94284956,227.78713,-62.836707)"
+         id="g4462">
+        <path
+           inkscape:connector-curvature="0"
+           style="fill:#39e31b;fill-opacity:1;stroke:#000000;stroke-width:2.06040955;stroke-miterlimit:4;stroke-opacity:1"
+           d="m 250,529.86218 c 0,0 0.1483,-1.16701 1.43903,-2.56523 0.56876,-0.61613 1.38816,-1.22768 2.44041,-1.66694 0.83708,-0.34944 1.81007,-0.5948 2.8761,-0.7273 0.92867,-0.11542 1.92683,-0.0903 2.97361,-0.0508 0.95067,0.0359 1.90892,0.3476 2.86825,0.72976 0.89253,0.35555 1.73405,0.90161 2.58652,1.46668 0.8071,0.53499 1.59332,1.14474 2.39282,1.77237 0.76553,0.60096 1.52076,1.24854 2.26548,1.93219 0.72037,0.6613 1.4679,1.3173 2.1935,2.01615 0.70646,0.68043 1.42203,1.36963 2.14484,2.0658 0.70901,0.68288 1.42498,1.37246 2.14614,2.06705 0.71051,0.68433 1.43694,1.36203 2.16228,2.04764 0.71879,0.67944 1.4409,1.36201 2.16466,2.04615 0.72017,0.68073 1.47269,1.32928 2.21965,1.98393 0.74745,0.65508 1.52536,1.27368 2.2995,1.89328 0.77736,0.62218 1.57283,1.21808 2.39366,1.76959 0.82831,0.55655 1.67648,1.07426 2.54481,1.54182 0.88115,0.47446 1.77995,0.92095 2.7272,1.18623 0.96632,0.27062 1.9397,0.47247 2.91703,0.55672 1.00349,0.0865 2.00118,0.06 2.97464,-0.0317 1.00627,-0.0949 1.9938,-0.22768 2.94014,-0.45438 0.98813,-0.23671 1.948,-0.49556 2.86439,-0.80728 0.9682,-0.32934 1.89733,-0.68105 2.78629,-1.0461 0.95559,-0.39242 1.86638,-0.79695 2.70725,-1.24267 0.92579,-0.49073 1.80534,-0.95664 2.61458,-1.42686 0.92957,-0.54015 1.79354,-1.04005 2.54164,-1.55419 0.93919,-0.64546 1.76289,-1.21155 2.45395,-1.68649 1.56979,-1.07885 2.36163,-1.81541 2.36163,-1.81541 0,0 0,0.86948 0,2.41463 0,0.67933 0,1.48927 0,2.41333 0,0.7354 0,1.54309 0,2.41477 0,0.758 0,1.56439 0,2.41371 0,0.77057 0,1.57647 0,2.41363 0,0.7785 0,1.58404 0,2.41334 0,0.78453 0,1.59033 0,2.41461 0,0.7883 0,1.59352 0,2.41321 0,0.79165 0,1.59681 0,2.41329 0,0.79468 0,1.60009 0,2.4142 0,0.79684 0,1.60201 0,2.41363 0,0.79901 0,1.60427 0,2.41397 0,0.80054 0,1.60543 0,2.41291 0,0.80234 0,1.60724 0,2.41299 0,0.80434 0,1.60953 0,2.41388 0,0.80625 0,1.61165 0,2.41449 0,0.8075 0,1.61241 0,2.41298 0,0.80964 0,1.61483 0,2.41378 0,0.81192 0,1.61738 0,2.4145 0,0.81389 0,1.61908 0,2.41356 0,0.81648 0,1.62165 0,2.41331 0,0.81978 0,1.62509 0,2.41348 0,0.82387 0,1.62927 0,2.41343 0,0.8297 0,1.63562 0,2.41449 0,0.83694 0,1.64263 0,2.41301 0,0.84976 0,1.65655 0,2.41491 0,0.87175 0,1.6795 0,2.41494 0,0.92399 0,1.73384 0,2.41308 0,1.54472 0,2.41394 0,2.41394 0,0 -0.79125,0.73615 -2.36007,1.81433 -0.69129,0.4751 -1.51539,1.04147 -2.45513,1.68731 -0.74759,0.51379 -1.61089,1.01339 -2.53975,1.55312 -0.80917,0.47019 -1.68862,0.93616 -2.61437,1.42687 -0.84074,0.44565 -1.75127,0.85039 -2.70672,1.24275 -0.88892,0.36504 -1.81795,0.71692 -2.78613,1.04626 -0.91664,0.31181 -1.87672,0.571 -2.86515,0.80778 -0.94644,0.22672 -1.93402,0.35986 -2.9404,0.45476 -0.97348,0.0918 -1.9712,0.11863 -2.97472,0.0321 -0.97706,-0.0842 -1.95025,-0.28556 -2.91629,-0.5561 -0.94759,-0.26538 -1.84694,-0.71152 -2.72841,-1.18616 -0.86846,-0.46763 -1.71683,-0.98528 -2.54527,-1.54191 -0.82097,-0.55161 -1.61663,-1.14754 -2.39413,-1.76983 -0.77364,-0.61919 -1.55111,-1.23732 -2.29807,-1.89197 -0.74745,-0.65508 -1.50049,-1.30401 -2.22113,-1.98519 -0.72364,-0.68401 -1.44562,-1.36646 -2.16428,-2.04578 -0.72523,-0.68552 -1.45157,-1.36311 -2.16198,-2.04734 -0.72089,-0.69432 -1.43659,-1.38365 -2.14533,-2.06627 -0.72302,-0.69637 -1.4388,-1.38577 -2.14545,-2.06638 -0.72558,-0.69884 -1.47305,-1.35485 -2.1934,-2.01614 -0.74464,-0.68357 -1.49968,-1.33122 -2.26513,-1.93212 -0.79926,-0.62744 -1.5851,-1.23721 -2.39197,-1.77205 -0.8525,-0.56508 -1.69373,-1.11176 -2.58629,-1.46732 -0.95947,-0.38222 -1.91766,-0.69496 -2.86848,-0.73086 -1.04682,-0.0395 -2.04506,-0.0651 -2.9738,0.0503 -1.06685,0.1326 -2.04063,0.37776 -2.87829,0.72744 -1.05163,0.439 -1.87097,1.0498 -2.43954,1.66572 -1.29154,1.3991 -1.44032,2.56663 -1.44032,2.56663 0,0 0,-0.86948 0,-2.41463 0,-0.67933 0,-1.48927 0,-2.41333 0,-0.7354 0,-1.54309 0,-2.41477 0,-0.758 0,-1.56439 0,-2.41371 0,-0.77057 0,-1.57647 0,-2.41363 0,-0.7785 0,-1.58404 0,-2.41334 0,-0.78453 0,-1.59033 0,-2.41461 0,-0.7883 0,-1.59352 0,-2.41321 0,-0.79165 0,-1.59681 0,-2.41329 0,-0.79468 0,-1.60009 0,-2.4142 0,-0.79684 0,-1.60201 0,-2.41363 0,-0.79901 0,-1.60427 0,-2.41397 0,-0.80054 0,-1.60543 0,-2.41291 0,-0.80234 0,-1.60724 0,-2.41299 0,-0.80434 0,-1.60953 0,-2.41388 0,-0.80625 0,-1.61165 0,-2.41449 0,-0.8075 0,-1.61241 0,-2.41298 0,-0.80964 0,-1.61483 0,-2.41378 0,-0.81192 0,-1.61738 0,-2.4145 0,-0.81389 0,-1.61908 0,-2.41356 0,-0.81648 0,-1.62165 0,-2.41331 0,-0.81978 0,-1.62509 0,-2.41348 0,-0.82387 0,-1.62927 0,-2.41343 0,-0.8297 0,-1.63562 0,-2.41449 0,-0.83694 0,-1.64263 0,-2.41301 0,-0.84976 0,-1.65655 0,-2.41491 0,-0.87175 0,-1.6795 0,-2.41494 0,-0.92399 0,-1.73384 0,-2.41308 0,-1.54472 0,-2.41394 0,-2.41394"
+           id="path4464" />
+        <path
+           inkscape:connector-curvature="0"
+           id="path4466"
+           d="m 250,524.86218 c 0,0 0,0.86607 0,2.44091 0,0.68463 0,1.50321 0,2.44282 0,0.74089 0,1.55704 0,2.44209 0,0.76389 0,1.57912 0,2.4416 0,0.77681 0,1.59195 0,2.44246 0,0.7846 0,1.5993 0,2.44176 0,0.79038 0,1.60518 0,2.44249 0,0.79441 0,1.60908 0,2.44235 0,0.79712 0,1.61127 0,2.441 0,0.79997 0,1.61442 0,2.44207 0,0.80188 0,1.61615 0,2.44162 0,0.80366 0,1.61794 0,2.44177 0,0.80491 0,1.61893 0,2.44104 0,0.80647 0,1.62073 0,2.44182 0,0.80761 0,1.62184 0,2.44177 0,0.80896 0,1.62346 0,2.44264 0,0.80961 0,1.62378 0,2.44168 0,0.8105 0,1.62466 0,2.44165 0,0.81111 0,1.62502 0,2.44092 0,0.8122 0,1.62638 0,2.44174 0,0.81314 0,1.62746 0,2.44218 0,0.81413 0,1.62865 0,2.44278 0,0.8145 0,1.6286 0,2.44152 0,0.8155 0,1.62981 0,2.44215 0,0.81592 0,1.62984 0,2.44097 0,0.81678 0,1.63072 0,2.44101 0,0.8181 0,1.63248 0,2.44229 0,0.8191 0,1.63353 0,2.44241 0,0.82021 0,1.63471 0,2.4426 0,0.82093 0,1.63502 0,2.44134 0,0.82225 0,1.6364 0,2.44144 0,0.82395 0,1.63836 0,2.44215 0,0.82578 0,1.64034 0,2.44252 0,0.82723 0,1.64128 0,2.44086 0,0.83009 0,1.64459 0,2.44205 0,0.8331 0,1.64761 0,2.44186 0,0.83686 0,1.65123 0,2.44121 0,0.84268 0,1.6576 0,2.4424 0,0.85057 0,1.66578 0,2.44264 0,0.86251 0,1.67776 0,2.44167 0,0.88515 0,1.70137 0,2.44233 0,0.9387 0,1.75661 0,2.44083 0,1.5759 0,2.44259 0,2.44259"
+           style="fill:#39e31b;fill-opacity:1;stroke:#000000;stroke-width:4.12081909;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
+      </g>
+    </clipPath>
+  </defs>
+  <metadata
+     id="metadata7">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     transform="translate(-237.33235,-515.75268)"
+     id="layer1"
+     inkscape:groupmode="layer"
+     inkscape:label="Layer 1">
+    <g
+       id="g3215"
+       transform="matrix(1.1323952,0.21775193,-0.31004846,0.98045514,151.52135,-51.28912)"
+       style="fill:#39e31b;fill-opacity:1">
+      <path
+         id="rect2987"
+         d="m 250,529.86218 c 0,0 0.1483,-1.16701 1.43903,-2.56523 0.56876,-0.61613 1.38816,-1.22768 2.44041,-1.66694 0.83708,-0.34944 1.81007,-0.5948 2.8761,-0.7273 0.92867,-0.11542 1.92683,-0.0903 2.97361,-0.0508 0.95067,0.0359 1.90892,0.3476 2.86825,0.72976 0.89253,0.35555 1.73405,0.90161 2.58652,1.46668 0.8071,0.53499 1.59332,1.14474 2.39282,1.77237 0.76553,0.60096 1.52076,1.24854 2.26548,1.93219 0.72037,0.6613 1.4679,1.3173 2.1935,2.01615 0.70646,0.68043 1.42203,1.36963 2.14484,2.0658 0.70901,0.68288 1.42498,1.37246 2.14614,2.06705 0.71051,0.68433 1.43694,1.36203 2.16228,2.04764 0.71879,0.67944 1.4409,1.36201 2.16466,2.04615 0.72017,0.68073 1.47269,1.32928 2.21965,1.98393 0.74745,0.65508 1.52536,1.27368 2.2995,1.89328 0.77736,0.62218 1.57283,1.21808 2.39366,1.76959 0.82831,0.55655 1.67648,1.07426 2.54481,1.54182 0.88115,0.47446 1.77995,0.92095 2.7272,1.18623 0.96632,0.27062 1.9397,0.47247 2.91703,0.55672 1.00349,0.0865 2.00118,0.06 2.97464,-0.0317 1.00627,-0.0949 1.9938,-0.22768 2.94014,-0.45438 0.98813,-0.23671 1.948,-0.49556 2.86439,-0.80728 0.9682,-0.32934 1.89733,-0.68105 2.78629,-1.0461 0.95559,-0.39242 1.86638,-0.79695 2.70725,-1.24267 0.92579,-0.49073 1.80534,-0.95664 2.61458,-1.42686 0.92957,-0.54015 1.79354,-1.04005 2.54164,-1.55419 0.93919,-0.64546 1.76289,-1.21155 2.45395,-1.68649 1.56979,-1.07885 2.36163,-1.81541 2.36163,-1.81541 0,0 0,0.86948 0,2.41463 0,0.67933 0,1.48927 0,2.41333 0,0.7354 0,1.54309 0,2.41477 0,0.758 0,1.56439 0,2.41371 0,0.77057 0,1.57647 0,2.41363 0,0.7785 0,1.58404 0,2.41334 0,0.78453 0,1.59033 0,2.41461 0,0.7883 0,1.59352 0,2.41321 0,0.79165 0,1.59681 0,2.41329 0,0.79468 0,1.60009 0,2.4142 0,0.79684 0,1.60201 0,2.41363 0,0.79901 0,1.60427 0,2.41397 0,0.80054 0,1.60543 0,2.41291 0,0.80234 0,1.60724 0,2.41299 0,0.80434 0,1.60953 0,2.41388 0,0.80625 0,1.61165 0,2.41449 0,0.8075 0,1.61241 0,2.41298 0,0.80964 0,1.61483 0,2.41378 0,0.81192 0,1.61738 0,2.4145 0,0.81389 0,1.61908 0,2.41356 0,0.81648 0,1.62165 0,2.41331 0,0.81978 0,1.62509 0,2.41348 0,0.82387 0,1.62927 0,2.41343 0,0.8297 0,1.63562 0,2.41449 0,0.83694 0,1.64263 0,2.41301 0,0.84976 0,1.65655 0,2.41491 0,0.87175 0,1.6795 0,2.41494 0,0.92399 0,1.73384 0,2.41308 0,1.54472 0,2.41394 0,2.41394 0,0 -0.79125,0.73615 -2.36007,1.81433 -0.69129,0.4751 -1.51539,1.04147 -2.45513,1.68731 -0.74759,0.51379 -1.61089,1.01339 -2.53975,1.55312 -0.80917,0.47019 -1.68862,0.93616 -2.61437,1.42687 -0.84074,0.44565 -1.75127,0.85039 -2.70672,1.24275 -0.88892,0.36504 -1.81795,0.71692 -2.78613,1.04626 -0.91664,0.31181 -1.87672,0.571 -2.86515,0.80778 -0.94644,0.22672 -1.93402,0.35986 -2.9404,0.45476 -0.97348,0.0918 -1.9712,0.11863 -2.97472,0.0321 -0.97706,-0.0842 -1.95025,-0.28556 -2.91629,-0.5561 -0.94759,-0.26538 -1.84694,-0.71152 -2.72841,-1.18616 -0.86846,-0.46763 -1.71683,-0.98528 -2.54527,-1.54191 -0.82097,-0.55161 -1.61663,-1.14754 -2.39413,-1.76983 -0.77364,-0.61919 -1.55111,-1.23732 -2.29807,-1.89197 -0.74745,-0.65508 -1.50049,-1.30401 -2.22113,-1.98519 -0.72364,-0.68401 -1.44562,-1.36646 -2.16428,-2.04578 -0.72523,-0.68552 -1.45157,-1.36311 -2.16198,-2.04734 -0.72089,-0.69432 -1.43659,-1.38365 -2.14533,-2.06627 -0.72302,-0.69637 -1.4388,-1.38577 -2.14545,-2.06638 -0.72558,-0.69884 -1.47305,-1.35485 -2.1934,-2.01614 -0.74464,-0.68357 -1.49968,-1.33122 -2.26513,-1.93212 -0.79926,-0.62744 -1.5851,-1.23721 -2.39197,-1.77205 -0.8525,-0.56508 -1.69373,-1.11176 -2.58629,-1.46732 -0.95947,-0.38222 -1.91766,-0.69496 -2.86848,-0.73086 -1.04682,-0.0395 -2.04506,-0.0651 -2.9738,0.0503 -1.06685,0.1326 -2.04063,0.37776 -2.87829,0.72744 -1.05163,0.439 -1.87097,1.0498 -2.43954,1.66572 -1.29154,1.3991 -1.44032,2.56663 -1.44032,2.56663 0,0 0,-0.86948 0,-2.41463 0,-0.67933 0,-1.48927 0,-2.41333 0,-0.7354 0,-1.54309 0,-2.41477 0,-0.758 0,-1.56439 0,-2.41371 0,-0.77057 0,-1.57647 0,-2.41363 0,-0.7785 0,-1.58404 0,-2.41334 0,-0.78453 0,-1.59033 0,-2.41461 0,-0.7883 0,-1.59352 0,-2.41321 0,-0.79165 0,-1.59681 0,-2.41329 0,-0.79468 0,-1.60009 0,-2.4142 0,-0.79684 0,-1.60201 0,-2.41363 0,-0.79901 0,-1.60427 0,-2.41397 0,-0.80054 0,-1.60543 0,-2.41291 0,-0.80234 0,-1.60724 0,-2.41299 0,-0.80434 0,-1.60953 0,-2.41388 0,-0.80625 0,-1.61165 0,-2.41449 0,-0.8075 0,-1.61241 0,-2.41298 0,-0.80964 0,-1.61483 0,-2.41378 0,-0.81192 0,-1.61738 0,-2.4145 0,-0.81389 0,-1.61908 0,-2.41356 0,-0.81648 0,-1.62165 0,-2.41331 0,-0.81978 0,-1.62509 0,-2.41348 0,-0.82387 0,-1.62927 0,-2.41343 0,-0.8297 0,-1.63562 0,-2.41449 0,-0.83694 0,-1.64263 0,-2.41301 0,-0.84976 0,-1.65655 0,-2.41491 0,-0.87175 0,-1.6795 0,-2.41494 0,-0.92399 0,-1.73384 0,-2.41308 0,-1.54472 0,-2.41394 0,-2.41394"
+         style="fill:#39e31b;fill-opacity:1;stroke:#000000;stroke-width:1.84288645;stroke-miterlimit:4;stroke-opacity:1"
+         inkscape:connector-curvature="0" />
+      <path
+         style="fill:#39e31b;fill-opacity:1;stroke:#000000;stroke-width:3.6857729;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
+         d="m 250,524.86218 c 0,0 0,0.86607 0,2.44091 0,0.68463 0,1.50321 0,2.44282 0,0.74089 0,1.55704 0,2.44209 0,0.76389 0,1.57912 0,2.4416 0,0.77681 0,1.59195 0,2.44246 0,0.7846 0,1.5993 0,2.44176 0,0.79038 0,1.60518 0,2.44249 0,0.79441 0,1.60908 0,2.44235 0,0.79712 0,1.61127 0,2.441 0,0.79997 0,1.61442 0,2.44207 0,0.80188 0,1.61615 0,2.44162 0,0.80366 0,1.61794 0,2.44177 0,0.80491 0,1.61893 0,2.44104 0,0.80647 0,1.62073 0,2.44182 0,0.80761 0,1.62184 0,2.44177 0,0.80896 0,1.62346 0,2.44264 0,0.80961 0,1.62378 0,2.44168 0,0.8105 0,1.62466 0,2.44165 0,0.81111 0,1.62502 0,2.44092 0,0.8122 0,1.62638 0,2.44174 0,0.81314 0,1.62746 0,2.44218 0,0.81413 0,1.62865 0,2.44278 0,0.8145 0,1.6286 0,2.44152 0,0.8155 0,1.62981 0,2.44215 0,0.81592 0,1.62984 0,2.44097 0,0.81678 0,1.63072 0,2.44101 0,0.8181 0,1.63248 0,2.44229 0,0.8191 0,1.63353 0,2.44241 0,0.82021 0,1.63471 0,2.4426 0,0.82093 0,1.63502 0,2.44134 0,0.82225 0,1.6364 0,2.44144 0,0.82395 0,1.63836 0,2.44215 0,0.82578 0,1.64034 0,2.44252 0,0.82723 0,1.64128 0,2.44086 0,0.83009 0,1.64459 0,2.44205 0,0.8331 0,1.64761 0,2.44186 0,0.83686 0,1.65123 0,2.44121 0,0.84268 0,1.6576 0,2.4424 0,0.85057 0,1.66578 0,2.44264 0,0.86251 0,1.67776 0,2.44167 0,0.88515 0,1.70137 0,2.44233 0,0.9387 0,1.75661 0,2.44083 0,1.5759 0,2.44259 0,2.44259"
+         id="path3757"
+         inkscape:connector-curvature="0" />
+    </g>
+    <path
+       style="fill:#000000;fill-opacity:0.16599193;stroke:none;filter:url(#filter4450)"
+       d="m 290,532.36218 -20,57.77778 15,22.22222 25,-57.77778 z"
+       id="path4400"
+       inkscape:connector-curvature="0"
+       transform="matrix(1.2432077,-0.13013275,0.10410619,0.99456619,-125.12367,40.84871)"
+       clip-path="url(#clipPath4460)" />
+  </g>
+</svg>
similarity index 100%
rename from img/pit-stop.svg
rename to img/state-stop.svg