]> granicus.if.org Git - graphviz/commitdiff
Use "none" instead of "transparent" when painting in SVG
authorRoger Nesbitt <roger@seriousorange.com>
Wed, 23 Feb 2022 16:42:25 +0000 (05:42 +1300)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 13 Aug 2022 15:22:50 +0000 (08:22 -0700)
The SVG 1.1 spec, which SVGs generated by gvrender_core_svg.c are
labeled as, does not have the color "transparent" available which is
causing issues with SVG 1.1 parsers.

When specifying paint in the fill or stroke attributes, use "none"
instead of "transparent".  When specifying a gradient color that has
zero opacity, use that color at zero opacity instead of "transparent".
When specifying a gradient with the graphviz transparent color, use
a zero-opacity black as this is how SVG interprets "transparent" in
gradients in SVG 2.0.

77 files changed:
CHANGELOG.md
plugin/core/gvrender_core_svg.c
tests/linux.x86/grdangles_dot.svg
tests/linux.x86/grdcluster_dot.svg
tests/linux.x86/grdcolors_dot.svg
tests/linux.x86/grdfillcolor_dot.svg
tests/linux.x86/grdlinear_angle_dot.svg
tests/linux.x86/grdlinear_dot.svg
tests/linux.x86/grdlinear_node_dot.svg
tests/linux.x86/grdradial_angle_dot.svg
tests/linux.x86/grdradial_dot.svg
tests/linux.x86/grdradial_node_dot.svg
tests/linux.x86/grdshapes_dot.svg
tests/linux.x86/html2_dot.svg
tests/linux.x86/url_dot.svg
tests/nshare/html2_dot.svg
tests/nshare/url_dot.svg
tests/regression_tests/shapes/reference/Mcircle.svg
tests/regression_tests/shapes/reference/Mdiamond.svg
tests/regression_tests/shapes/reference/Msquare.svg
tests/regression_tests/shapes/reference/assembly.svg
tests/regression_tests/shapes/reference/box.svg
tests/regression_tests/shapes/reference/box3d.svg
tests/regression_tests/shapes/reference/cds.svg
tests/regression_tests/shapes/reference/circle.svg
tests/regression_tests/shapes/reference/component.svg
tests/regression_tests/shapes/reference/cylinder.svg
tests/regression_tests/shapes/reference/diamond.svg
tests/regression_tests/shapes/reference/doublecircle.svg
tests/regression_tests/shapes/reference/doubleoctagon.svg
tests/regression_tests/shapes/reference/egg.svg
tests/regression_tests/shapes/reference/ellipse.svg
tests/regression_tests/shapes/reference/fivepoverhang.svg
tests/regression_tests/shapes/reference/folder.svg
tests/regression_tests/shapes/reference/hexagon.svg
tests/regression_tests/shapes/reference/house.svg
tests/regression_tests/shapes/reference/insulator.svg
tests/regression_tests/shapes/reference/invhouse.svg
tests/regression_tests/shapes/reference/invtrapezium.svg
tests/regression_tests/shapes/reference/invtriangle.svg
tests/regression_tests/shapes/reference/larrow.svg
tests/regression_tests/shapes/reference/lpromoter.svg
tests/regression_tests/shapes/reference/none.svg
tests/regression_tests/shapes/reference/note.svg
tests/regression_tests/shapes/reference/noverhang.svg
tests/regression_tests/shapes/reference/octagon.svg
tests/regression_tests/shapes/reference/oval.svg
tests/regression_tests/shapes/reference/parallelogram.svg
tests/regression_tests/shapes/reference/pentagon.svg
tests/regression_tests/shapes/reference/plain.svg
tests/regression_tests/shapes/reference/plaintext.svg
tests/regression_tests/shapes/reference/point.svg
tests/regression_tests/shapes/reference/polygon.svg
tests/regression_tests/shapes/reference/primersite.svg
tests/regression_tests/shapes/reference/promoter.svg
tests/regression_tests/shapes/reference/proteasesite.svg
tests/regression_tests/shapes/reference/proteinstab.svg
tests/regression_tests/shapes/reference/rarrow.svg
tests/regression_tests/shapes/reference/rect.svg
tests/regression_tests/shapes/reference/rectangle.svg
tests/regression_tests/shapes/reference/restrictionsite.svg
tests/regression_tests/shapes/reference/ribosite.svg
tests/regression_tests/shapes/reference/rnastab.svg
tests/regression_tests/shapes/reference/rpromoter.svg
tests/regression_tests/shapes/reference/septagon.svg
tests/regression_tests/shapes/reference/signature.svg
tests/regression_tests/shapes/reference/square.svg
tests/regression_tests/shapes/reference/star.svg
tests/regression_tests/shapes/reference/tab.svg
tests/regression_tests/shapes/reference/terminator.svg
tests/regression_tests/shapes/reference/threepoverhang.svg
tests/regression_tests/shapes/reference/trapezium.svg
tests/regression_tests/shapes/reference/triangle.svg
tests/regression_tests/shapes/reference/tripleoctagon.svg
tests/regression_tests/shapes/reference/underline.svg
tests/regression_tests/shapes/reference/utr.svg
tests/usershape.svg

index 134809f6781a107254d57ab3c7be65f159e2693d..e6fad005106fdd293090363a0ccca8e0c0697356 100644 (file)
@@ -18,6 +18,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 - Memory leak in dot when using clusters
 - Memory leak in patchwork when using clusters
 - Subgraph layout and rendering
+- Generated SVG files no longer use `transparent` paint or color as this keyword
+  does not exist in SVG 1.1, and instead use `none` or a zero-opacity color.
 
 ## [5.0.0] â€“ 2022-07-07
 
index 6c1a65223a89ba8cfb6436c086bb382c06b67d54..4ebd205d80ced039c7f837cb8dc0eb8c4ccf66d4 100644 (file)
@@ -50,6 +50,10 @@ static char *sdasharray = "5,2";
 /* SVG dot array */
 static char *sdotarray = "1,5";
 
+static char *transparent = "transparent";
+static char *none = "none";
+static char *black = "black";
+
 static void svg_bzptarray(GVJ_t * job, pointf * A, int n)
 {
     int i;
@@ -103,15 +107,21 @@ static void svg_print_id_class(GVJ_t * job, char* id, char* idx, char* kind, voi
     gvputc(job, '"');
 }
 
-static void svg_print_color(GVJ_t * job, gvcolor_t color)
+/* svg_print_paint assumes the caller will set the opacity if the alpha channel
+ * is greater than 0 and less than 255
+ */
+static void svg_print_paint(GVJ_t * job, gvcolor_t color)
 {
     switch (color.type) {
     case COLOR_STRING:
-       gvputs(job, color.u.string);
+       if (!strcmp(color.u.string, transparent))
+           gvputs(job, none);
+       else
+           gvputs(job, color.u.string);
        break;
     case RGBA_BYTE:
        if (color.u.rgba[3] == 0)       /* transparent */
-           gvputs(job, "transparent");
+           gvputs(job, none);
        else
            gvprintf(job, "#%02x%02x%02x",
                     color.u.rgba[0], color.u.rgba[1], color.u.rgba[2]);
@@ -121,6 +131,31 @@ static void svg_print_color(GVJ_t * job, gvcolor_t color)
     }
 }
 
+/* svg_print_gradient_color assumes the caller will set the opacity if the
+ * alpha channel is less than 255.
+ *
+ * "transparent" in SVG 2 gradients is considered to be black with 0 opacity,
+ * so for compatibility with SVG 1.1 output we use black when the color string
+ * is transparent and assume the caller will also check and set opacity 0.
+ */
+static void svg_print_gradient_color(GVJ_t * job, gvcolor_t color)
+{
+    switch (color.type) {
+    case COLOR_STRING:
+       if (!strcmp(color.u.string, transparent))
+           gvputs(job, black);
+       else
+           gvputs(job, color.u.string);
+       break;
+    case RGBA_BYTE:
+       gvprintf(job, "#%02x%02x%02x",
+                color.u.rgba[0], color.u.rgba[1], color.u.rgba[2]);
+       break;
+    default:
+       assert(0);              /* internal error */
+    }
+}
+
 static void svg_grstyle(GVJ_t * job, int filled, int gid)
 {
     obj_state_t *obj = job->obj;
@@ -131,7 +166,7 @@ static void svg_grstyle(GVJ_t * job, int filled, int gid)
     } else if (filled == RGRADIENT) {
        gvprintf(job, "url(#r_%d)", gid);
     } else if (filled) {
-       svg_print_color(job, obj->fillcolor);
+       svg_print_paint(job, obj->fillcolor);
        if (obj->fillcolor.type == RGBA_BYTE
            && obj->fillcolor.u.rgba[3] > 0
            && obj->fillcolor.u.rgba[3] < 255)
@@ -141,7 +176,7 @@ static void svg_grstyle(GVJ_t * job, int filled, int gid)
        gvputs(job, "none");
     }
     gvputs(job, "\" stroke=\"");
-    svg_print_color(job, obj->pencolor);
+    svg_print_paint(job, obj->pencolor);
     if (obj->penwidth != PENWIDTH_NORMAL) {
        gvputs(job, "\" stroke-width=\"");
         gvprintdouble(job, obj->penwidth);
@@ -484,6 +519,25 @@ static void svg_textspan(GVJ_t * job, pointf p, textspan_t * span)
     gvputs(job, "</text>\n");
 }
 
+static void svg_print_stop(GVJ_t * job, double offset, gvcolor_t color)
+{
+    if (offset == 0.0)
+       gvputs(job, "<stop offset=\"0\" style=\"stop-color:");
+    else if (offset == 1.0)
+       gvputs(job, "<stop offset=\"1\" style=\"stop-color:");
+    else
+       gvprintf(job, "<stop offset=\"%.03f\" style=\"stop-color:", offset);
+    svg_print_gradient_color(job, color);
+    gvputs(job, ";stop-opacity:");
+    if (color.type == RGBA_BYTE && color.u.rgba[3] < 255)
+       gvprintf(job, "%f", ((float) color.u.rgba[3] / 255.0));
+    else if (color.type == COLOR_STRING && !strcmp(color.u.string, transparent))
+       gvputs(job, "0");
+    else
+       gvputs(job, "1.");
+    gvputs(job, ";\"/>\n");
+}
+
 /* svg_gradstyle
  * Outputs the SVG statements that define the gradient pattern
  */
@@ -509,30 +563,11 @@ static int svg_gradstyle(GVJ_t * job, pointf * A, int n)
     gvputs(job, "\" y2=\"");
     gvprintdouble(job, G[1].y);
     gvputs(job, "\" >\n");
-    if (obj->gradient_frac > 0)
-       gvprintf(job, "<stop offset=\"%.03f\" style=\"stop-color:", obj->gradient_frac - 0.001);
-    else
-       gvputs(job, "<stop offset=\"0\" style=\"stop-color:");
-    svg_print_color(job, obj->fillcolor);
-    gvputs(job, ";stop-opacity:");
-    if (obj->fillcolor.type == RGBA_BYTE && obj->fillcolor.u.rgba[3] > 0
-       && obj->fillcolor.u.rgba[3] < 255)
-       gvprintf(job, "%f", ((float) obj->fillcolor.u.rgba[3] / 255.0));
-    else
-       gvputs(job, "1.");
-    gvputs(job, ";\"/>\n");
-    if (obj->gradient_frac > 0)
-       gvprintf(job, "<stop offset=\"%.03f\" style=\"stop-color:", obj->gradient_frac);
-    else
-       gvputs(job, "<stop offset=\"1\" style=\"stop-color:");
-    svg_print_color(job, obj->stopcolor);
-    gvputs(job, ";stop-opacity:");
-    if (obj->stopcolor.type == RGBA_BYTE && obj->stopcolor.u.rgba[3] > 0
-       && obj->stopcolor.u.rgba[3] < 255)
-       gvprintf(job, "%f", ((float) obj->stopcolor.u.rgba[3] / 255.0));
-    else
-       gvputs(job, "1.");
-    gvputs(job, ";\"/>\n</linearGradient>\n</defs>\n");
+
+    svg_print_stop(job, obj->gradient_frac > 0 ? obj->gradient_frac - 0.001 : 0.0, obj->fillcolor);
+    svg_print_stop(job, obj->gradient_frac > 0 ? obj->gradient_frac : 1.0, obj->stopcolor);
+
+    gvputs(job, "</linearGradient>\n</defs>\n");
     return id;
 }
 
@@ -557,24 +592,11 @@ static int svg_rgradstyle(GVJ_t * job)
             "<defs>\n<radialGradient id=\"r_%d\" cx=\"50%%\" cy=\"50%%\" r=\"75%%\" "
             "fx=\"%.0f%%\" fy=\"%.0f%%\">\n",
             id, ifx, ify);
-    gvputs(job, "<stop offset=\"0\" style=\"stop-color:");
-    svg_print_color(job, obj->fillcolor);
-    gvputs(job, ";stop-opacity:");
-    if (obj->fillcolor.type == RGBA_BYTE && obj->fillcolor.u.rgba[3] > 0
-       && obj->fillcolor.u.rgba[3] < 255)
-       gvprintf(job, "%f", ((float) obj->fillcolor.u.rgba[3] / 255.0));
-    else
-       gvputs(job, "1.");
-    gvputs(job, ";\"/>\n"
-                "<stop offset=\"1\" style=\"stop-color:");
-    svg_print_color(job, obj->stopcolor);
-    gvputs(job, ";stop-opacity:");
-    if (obj->stopcolor.type == RGBA_BYTE && obj->stopcolor.u.rgba[3] > 0
-       && obj->stopcolor.u.rgba[3] < 255)
-       gvprintf(job, "%f", ((float) obj->stopcolor.u.rgba[3] / 255.0));
-    else
-       gvputs(job, "1.");
-    gvputs(job, ";\"/>\n</radialGradient>\n</defs>\n");
+
+    svg_print_stop(job, 0.0, obj->fillcolor);
+    svg_print_stop(job, 1.0, obj->stopcolor);
+
+    gvputs(job, "</radialGradient>\n</defs>\n");
     return id;
 }
 
index f93afbb647ae72a59f823e73ae0c61be0f6c3d0b..6ada3c6b8b65da5131066b9a87a17a21bd35fa7b 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 880.00 259.49" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 255.4867)">
 <title>G</title>
-<polygon fill="#0000ff" stroke="transparent" points="-4,4 -4,-255.4867 876,-255.4867 876,4 -4,4"/>
+<polygon fill="#0000ff" stroke="none" points="-4,4 -4,-255.4867 876,-255.4867 876,4 -4,4"/>
 <g id="clust1" class="cluster">
 <title>cluster_1</title>
 <polygon fill="#0000ff" stroke="#000000" points="49,-134.293 49,-243.4867 823,-243.4867 823,-134.293 49,-134.293"/>
index ae540cdcb0e91deda3626475c707e7c82977e90f..8b986922603ded91825cca6722c952d476127871 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 172.00 364.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 360)">
 <title>G</title>
-<polygon fill="#ffffff" stroke="transparent" points="-4,4 -4,-360 168,-360 168,4 -4,4"/>
+<polygon fill="#ffffff" stroke="none" points="-4,4 -4,-360 168,-360 168,4 -4,4"/>
 <g id="clust1" class="cluster">
 <title>cluster0</title>
 <defs>
@@ -27,7 +27,7 @@
 <stop offset="1" style="stop-color:#ff0000;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_1)" stroke="transparent" points="8,-224 8,-276 78,-276 78,-224 8,-224"/>
+<polygon fill="url(#l_1)" stroke="none" points="8,-224 8,-276 78,-276 78,-224 8,-224"/>
 </g>
 <g id="clust3" class="cluster">
 <title>cluster2</title>
@@ -35,7 +35,7 @@
 </g>
 <g id="clust4" class="cluster">
 <title>cluster3</title>
-<path fill="#ff0000" stroke="transparent" d="M20,-80C20,-80 66,-80 66,-80 72,-80 78,-86 78,-92 78,-92 78,-120 78,-120 78,-126 72,-132 66,-132 66,-132 20,-132 20,-132 14,-132 8,-126 8,-120 8,-120 8,-92 8,-92 8,-86 14,-80 20,-80"/>
+<path fill="#ff0000" stroke="none" d="M20,-80C20,-80 66,-80 66,-80 72,-80 78,-86 78,-92 78,-92 78,-120 78,-120 78,-126 72,-132 66,-132 66,-132 20,-132 20,-132 14,-132 8,-126 8,-120 8,-120 8,-92 8,-92 8,-86 14,-80 20,-80"/>
 </g>
 <g id="clust5" class="cluster">
 <title>cluster4</title>
@@ -45,7 +45,7 @@
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_2)" stroke="transparent" points="8,-8 8,-60 78,-60 78,-8 8,-8"/>
+<polygon fill="url(#l_2)" stroke="none" points="8,-8 8,-60 78,-60 78,-8 8,-8"/>
 </g>
 <g id="clust6" class="cluster">
 <title>cluster5</title>
index 344adaa563bd9634c4504bad77f5268d3d589bed..a5815f5c2188794e879fd60cae6039a61c6f6f27 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 510.00 392.19" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 388.1915)">
 <title>G</title>
-<polygon fill="#0000ff" stroke="transparent" points="-4,4 -4,-388.1915 506,-388.1915 506,4 -4,4"/>
+<polygon fill="#0000ff" stroke="none" points="-4,4 -4,-388.1915 506,-388.1915 506,4 -4,4"/>
 <g id="clust1" class="cluster">
 <title>cluster_1</title>
 <polygon fill="#0000ff" stroke="#000000" points="49,-291.1915 49,-376.1915 489,-376.1915 489,-291.1915 49,-291.1915"/>
index 0fce6c07830f9ab11424b221feeba26fd02fc106..ba15d794617a837bbb8630615d8c3786cf9ae545 100644 (file)
@@ -14,7 +14,7 @@
 <stop offset="1" style="stop-color:#ffc0cb;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_0)" stroke="transparent" points="-4,4 -4,-738.8641 738,-738.8641 738,4 -4,4"/>
+<polygon fill="url(#l_0)" stroke="none" points="-4,4 -4,-738.8641 738,-738.8641 738,4 -4,4"/>
 <g id="clust1" class="cluster">
 <title>cluster1</title>
 <defs>
@@ -41,8 +41,8 @@
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<path fill="url(#l_3)" stroke="transparent" d="M144,-127.9321C144,-127.9321 590,-127.9321 590,-127.9321 596,-127.9321 602,-133.9321 602,-139.9321 602,-139.9321 602,-594.9321 602,-594.9321 602,-600.9321 596,-606.9321 590,-606.9321 590,-606.9321 144,-606.9321 144,-606.9321 138,-606.9321 132,-600.9321 132,-594.9321 132,-594.9321 132,-139.9321 132,-139.9321 132,-133.9321 138,-127.9321 144,-127.9321"/>
-<polygon fill="#ffff00" stroke="transparent" points="147,-550.4321 147,-591.4321 187,-591.4321 187,-550.4321 147,-550.4321"/>
+<path fill="url(#l_3)" stroke="none" d="M144,-127.9321C144,-127.9321 590,-127.9321 590,-127.9321 596,-127.9321 602,-133.9321 602,-139.9321 602,-139.9321 602,-594.9321 602,-594.9321 602,-600.9321 596,-606.9321 590,-606.9321 590,-606.9321 144,-606.9321 144,-606.9321 138,-606.9321 132,-600.9321 132,-594.9321 132,-594.9321 132,-139.9321 132,-139.9321 132,-133.9321 138,-127.9321 144,-127.9321"/>
+<polygon fill="#ffff00" stroke="none" points="147,-550.4321 147,-591.4321 187,-591.4321 187,-550.4321 147,-550.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-551.9321 148.5,-589.9321 185.5,-589.9321 185.5,-551.9321 148.5,-551.9321"/>
 <text text-anchor="start" x="160" y="-567.2321" font-family="Times,serif" font-size="14.00" fill="#000000">00</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_4)" stroke="transparent" stroke-width="3" points="197,-550.4321 197,-591.4321 237,-591.4321 237,-550.4321 197,-550.4321"/>
+<polygon fill="url(#l_4)" stroke="none" stroke-width="3" points="197,-550.4321 197,-591.4321 237,-591.4321 237,-550.4321 197,-550.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-551.9321 198.5,-589.9321 235.5,-589.9321 235.5,-551.9321 198.5,-551.9321"/>
 <text text-anchor="start" x="210" y="-567.2321" font-family="Times,serif" font-size="14.00" fill="#000000">01</text>
-<polygon fill="#00ff00" stroke="transparent" stroke-width="3" points="247,-550.4321 247,-591.4321 287,-591.4321 287,-550.4321 247,-550.4321"/>
+<polygon fill="#00ff00" stroke="none" stroke-width="3" points="247,-550.4321 247,-591.4321 287,-591.4321 287,-550.4321 247,-550.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-551.9321 248.5,-589.9321 285.5,-589.9321 285.5,-551.9321 248.5,-551.9321"/>
 <text text-anchor="start" x="260" y="-567.2321" font-family="Times,serif" font-size="14.00" fill="#000000">02</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_5)" stroke="transparent" stroke-width="3" points="297,-550.4321 297,-591.4321 337,-591.4321 337,-550.4321 297,-550.4321"/>
+<polygon fill="url(#l_5)" stroke="none" stroke-width="3" points="297,-550.4321 297,-591.4321 337,-591.4321 337,-550.4321 297,-550.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-551.9321 298.5,-589.9321 335.5,-589.9321 335.5,-551.9321 298.5,-551.9321"/>
 <text text-anchor="start" x="310" y="-567.2321" font-family="Times,serif" font-size="14.00" fill="#000000">03</text>
-<polygon fill="#0000ff" stroke="transparent" stroke-width="3" points="347,-550.4321 347,-591.4321 387,-591.4321 387,-550.4321 347,-550.4321"/>
+<polygon fill="#0000ff" stroke="none" stroke-width="3" points="347,-550.4321 347,-591.4321 387,-591.4321 387,-550.4321 347,-550.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-551.9321 348.5,-589.9321 385.5,-589.9321 385.5,-551.9321 348.5,-551.9321"/>
 <text text-anchor="start" x="360" y="-567.2321" font-family="Times,serif" font-size="14.00" fill="#000000">04</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_6)" stroke="transparent" stroke-width="3" points="397,-550.4321 397,-591.4321 437,-591.4321 437,-550.4321 397,-550.4321"/>
+<polygon fill="url(#l_6)" stroke="none" stroke-width="3" points="397,-550.4321 397,-591.4321 437,-591.4321 437,-550.4321 397,-550.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-551.9321 398.5,-589.9321 435.5,-589.9321 435.5,-551.9321 398.5,-551.9321"/>
 <text text-anchor="start" x="410" y="-567.2321" font-family="Times,serif" font-size="14.00" fill="#000000">05</text>
-<polygon fill="#a020f0" stroke="transparent" stroke-width="3" points="447,-550.4321 447,-591.4321 487,-591.4321 487,-550.4321 447,-550.4321"/>
+<polygon fill="#a020f0" stroke="none" stroke-width="3" points="447,-550.4321 447,-591.4321 487,-591.4321 487,-550.4321 447,-550.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-551.9321 448.5,-589.9321 485.5,-589.9321 485.5,-551.9321 448.5,-551.9321"/>
 <text text-anchor="start" x="460" y="-567.2321" font-family="Times,serif" font-size="14.00" fill="#000000">06</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_7)" stroke="transparent" stroke-width="3" points="497,-550.4321 497,-591.4321 537,-591.4321 537,-550.4321 497,-550.4321"/>
+<polygon fill="url(#l_7)" stroke="none" stroke-width="3" points="497,-550.4321 497,-591.4321 537,-591.4321 537,-550.4321 497,-550.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-551.9321 498.5,-589.9321 535.5,-589.9321 535.5,-551.9321 498.5,-551.9321"/>
 <text text-anchor="start" x="510" y="-567.2321" font-family="Times,serif" font-size="14.00" fill="#000000">07</text>
-<polygon fill="#ee82ee" stroke="transparent" stroke-width="3" points="547,-550.4321 547,-591.4321 587,-591.4321 587,-550.4321 547,-550.4321"/>
+<polygon fill="#ee82ee" stroke="none" stroke-width="3" points="547,-550.4321 547,-591.4321 587,-591.4321 587,-550.4321 547,-550.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-551.9321 548.5,-589.9321 585.5,-589.9321 585.5,-551.9321 548.5,-551.9321"/>
 <text text-anchor="start" x="560" y="-567.2321" font-family="Times,serif" font-size="14.00" fill="#000000">08</text>
 <defs>
@@ -99,7 +99,7 @@
 <stop offset="1" style="stop-color:#ffd700;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_8)" stroke="transparent" stroke-width="3" points="147,-499.4321 147,-540.4321 187,-540.4321 187,-499.4321 147,-499.4321"/>
+<polygon fill="url(#l_8)" stroke="none" stroke-width="3" points="147,-499.4321 147,-540.4321 187,-540.4321 187,-499.4321 147,-499.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-500.9321 148.5,-538.9321 185.5,-538.9321 185.5,-500.9321 148.5,-500.9321"/>
 <text text-anchor="start" x="160" y="-516.2321" font-family="Times,serif" font-size="14.00" fill="#000000">10</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_9)" stroke="transparent" stroke-width="3" points="197,-499.4321 197,-540.4321 237,-540.4321 237,-499.4321 197,-499.4321"/>
+<polygon fill="url(#l_9)" stroke="none" stroke-width="3" points="197,-499.4321 197,-540.4321 237,-540.4321 237,-499.4321 197,-499.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-500.9321 198.5,-538.9321 235.5,-538.9321 235.5,-500.9321 198.5,-500.9321"/>
 <text text-anchor="start" x="210" y="-516.2321" font-family="Times,serif" font-size="14.00" fill="#000000">11</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_10)" stroke="transparent" stroke-width="3" points="247,-499.4321 247,-540.4321 287,-540.4321 287,-499.4321 247,-499.4321"/>
+<polygon fill="url(#l_10)" stroke="none" stroke-width="3" points="247,-499.4321 247,-540.4321 287,-540.4321 287,-499.4321 247,-499.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-500.9321 248.5,-538.9321 285.5,-538.9321 285.5,-500.9321 248.5,-500.9321"/>
 <text text-anchor="start" x="260" y="-516.2321" font-family="Times,serif" font-size="14.00" fill="#000000">12</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_11)" stroke="transparent" stroke-width="3" points="297,-499.4321 297,-540.4321 337,-540.4321 337,-499.4321 297,-499.4321"/>
+<polygon fill="url(#l_11)" stroke="none" stroke-width="3" points="297,-499.4321 297,-540.4321 337,-540.4321 337,-499.4321 297,-499.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-500.9321 298.5,-538.9321 335.5,-538.9321 335.5,-500.9321 298.5,-500.9321"/>
 <text text-anchor="start" x="310" y="-516.2321" font-family="Times,serif" font-size="14.00" fill="#000000">13</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_12)" stroke="transparent" stroke-width="3" points="347,-499.4321 347,-540.4321 387,-540.4321 387,-499.4321 347,-499.4321"/>
+<polygon fill="url(#l_12)" stroke="none" stroke-width="3" points="347,-499.4321 347,-540.4321 387,-540.4321 387,-499.4321 347,-499.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-500.9321 348.5,-538.9321 385.5,-538.9321 385.5,-500.9321 348.5,-500.9321"/>
 <text text-anchor="start" x="360" y="-516.2321" font-family="Times,serif" font-size="14.00" fill="#000000">14</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_13)" stroke="transparent" stroke-width="3" points="397,-499.4321 397,-540.4321 437,-540.4321 437,-499.4321 397,-499.4321"/>
+<polygon fill="url(#l_13)" stroke="none" stroke-width="3" points="397,-499.4321 397,-540.4321 437,-540.4321 437,-499.4321 397,-499.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-500.9321 398.5,-538.9321 435.5,-538.9321 435.5,-500.9321 398.5,-500.9321"/>
 <text text-anchor="start" x="410" y="-516.2321" font-family="Times,serif" font-size="14.00" fill="#000000">15</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_14)" stroke="transparent" stroke-width="3" points="447,-499.4321 447,-540.4321 487,-540.4321 487,-499.4321 447,-499.4321"/>
+<polygon fill="url(#l_14)" stroke="none" stroke-width="3" points="447,-499.4321 447,-540.4321 487,-540.4321 487,-499.4321 447,-499.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-500.9321 448.5,-538.9321 485.5,-538.9321 485.5,-500.9321 448.5,-500.9321"/>
 <text text-anchor="start" x="460" y="-516.2321" font-family="Times,serif" font-size="14.00" fill="#000000">16</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_15)" stroke="transparent" stroke-width="3" points="497,-499.4321 497,-540.4321 537,-540.4321 537,-499.4321 497,-499.4321"/>
+<polygon fill="url(#l_15)" stroke="none" stroke-width="3" points="497,-499.4321 497,-540.4321 537,-540.4321 537,-499.4321 497,-499.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-500.9321 498.5,-538.9321 535.5,-538.9321 535.5,-500.9321 498.5,-500.9321"/>
 <text text-anchor="start" x="510" y="-516.2321" font-family="Times,serif" font-size="14.00" fill="#000000">17</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_16)" stroke="transparent" stroke-width="3" points="547,-499.4321 547,-540.4321 587,-540.4321 587,-499.4321 547,-499.4321"/>
+<polygon fill="url(#l_16)" stroke="none" stroke-width="3" points="547,-499.4321 547,-540.4321 587,-540.4321 587,-499.4321 547,-499.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-500.9321 548.5,-538.9321 585.5,-538.9321 585.5,-500.9321 548.5,-500.9321"/>
 <text text-anchor="start" x="560" y="-516.2321" font-family="Times,serif" font-size="14.00" fill="#000000">18</text>
-<polygon fill="#ffd700" stroke="transparent" stroke-width="3" points="147,-448.4321 147,-489.4321 187,-489.4321 187,-448.4321 147,-448.4321"/>
+<polygon fill="#ffd700" stroke="none" stroke-width="3" points="147,-448.4321 147,-489.4321 187,-489.4321 187,-448.4321 147,-448.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-449.9321 148.5,-487.9321 185.5,-487.9321 185.5,-449.9321 148.5,-449.9321"/>
 <text text-anchor="start" x="160" y="-465.2321" font-family="Times,serif" font-size="14.00" fill="#000000">20</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_17)" stroke="transparent" stroke-width="3" points="197,-448.4321 197,-489.4321 237,-489.4321 237,-448.4321 197,-448.4321"/>
+<polygon fill="url(#l_17)" stroke="none" stroke-width="3" points="197,-448.4321 197,-489.4321 237,-489.4321 237,-448.4321 197,-448.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-449.9321 198.5,-487.9321 235.5,-487.9321 235.5,-449.9321 198.5,-449.9321"/>
 <text text-anchor="start" x="210" y="-465.2321" font-family="Times,serif" font-size="14.00" fill="#000000">21</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_18)" stroke="transparent" stroke-width="3" points="247,-448.4321 247,-489.4321 287,-489.4321 287,-448.4321 247,-448.4321"/>
+<polygon fill="url(#l_18)" stroke="none" stroke-width="3" points="247,-448.4321 247,-489.4321 287,-489.4321 287,-448.4321 247,-448.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-449.9321 248.5,-487.9321 285.5,-487.9321 285.5,-449.9321 248.5,-449.9321"/>
 <text text-anchor="start" x="260" y="-465.2321" font-family="Times,serif" font-size="14.00" fill="#000000">22</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_19)" stroke="transparent" stroke-width="3" points="297,-448.4321 297,-489.4321 337,-489.4321 337,-448.4321 297,-448.4321"/>
+<polygon fill="url(#l_19)" stroke="none" stroke-width="3" points="297,-448.4321 297,-489.4321 337,-489.4321 337,-448.4321 297,-448.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-449.9321 298.5,-487.9321 335.5,-487.9321 335.5,-449.9321 298.5,-449.9321"/>
 <text text-anchor="start" x="310" y="-465.2321" font-family="Times,serif" font-size="14.00" fill="#000000">23</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_20)" stroke="transparent" stroke-width="3" points="347,-448.4321 347,-489.4321 387,-489.4321 387,-448.4321 347,-448.4321"/>
+<polygon fill="url(#l_20)" stroke="none" stroke-width="3" points="347,-448.4321 347,-489.4321 387,-489.4321 387,-448.4321 347,-448.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-449.9321 348.5,-487.9321 385.5,-487.9321 385.5,-449.9321 348.5,-449.9321"/>
 <text text-anchor="start" x="360" y="-465.2321" font-family="Times,serif" font-size="14.00" fill="#000000">24</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_21)" stroke="transparent" stroke-width="3" points="397,-448.4321 397,-489.4321 437,-489.4321 437,-448.4321 397,-448.4321"/>
+<polygon fill="url(#l_21)" stroke="none" stroke-width="3" points="397,-448.4321 397,-489.4321 437,-489.4321 437,-448.4321 397,-448.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-449.9321 398.5,-487.9321 435.5,-487.9321 435.5,-449.9321 398.5,-449.9321"/>
 <text text-anchor="start" x="410" y="-465.2321" font-family="Times,serif" font-size="14.00" fill="#000000">25</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_22)" stroke="transparent" stroke-width="3" points="447,-448.4321 447,-489.4321 487,-489.4321 487,-448.4321 447,-448.4321"/>
+<polygon fill="url(#l_22)" stroke="none" stroke-width="3" points="447,-448.4321 447,-489.4321 487,-489.4321 487,-448.4321 447,-448.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-449.9321 448.5,-487.9321 485.5,-487.9321 485.5,-449.9321 448.5,-449.9321"/>
 <text text-anchor="start" x="460" y="-465.2321" font-family="Times,serif" font-size="14.00" fill="#000000">26</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_23)" stroke="transparent" stroke-width="3" points="497,-448.4321 497,-489.4321 537,-489.4321 537,-448.4321 497,-448.4321"/>
+<polygon fill="url(#l_23)" stroke="none" stroke-width="3" points="497,-448.4321 497,-489.4321 537,-489.4321 537,-448.4321 497,-448.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-449.9321 498.5,-487.9321 535.5,-487.9321 535.5,-449.9321 498.5,-449.9321"/>
 <text text-anchor="start" x="510" y="-465.2321" font-family="Times,serif" font-size="14.00" fill="#000000">27</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_24)" stroke="transparent" stroke-width="3" points="547,-448.4321 547,-489.4321 587,-489.4321 587,-448.4321 547,-448.4321"/>
+<polygon fill="url(#l_24)" stroke="none" stroke-width="3" points="547,-448.4321 547,-489.4321 587,-489.4321 587,-448.4321 547,-448.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-449.9321 548.5,-487.9321 585.5,-487.9321 585.5,-449.9321 548.5,-449.9321"/>
 <text text-anchor="start" x="560" y="-465.2321" font-family="Times,serif" font-size="14.00" fill="#000000">28</text>
 <defs>
 <stop offset="1" style="stop-color:#ffa500;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_25)" stroke="transparent" stroke-width="3" points="147,-397.4321 147,-438.4321 187,-438.4321 187,-397.4321 147,-397.4321"/>
+<polygon fill="url(#l_25)" stroke="none" stroke-width="3" points="147,-397.4321 147,-438.4321 187,-438.4321 187,-397.4321 147,-397.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-398.9321 148.5,-436.9321 185.5,-436.9321 185.5,-398.9321 148.5,-398.9321"/>
 <text text-anchor="start" x="160" y="-414.2321" font-family="Times,serif" font-size="14.00" fill="#000000">30</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_26)" stroke="transparent" stroke-width="3" points="197,-397.4321 197,-438.4321 237,-438.4321 237,-397.4321 197,-397.4321"/>
+<polygon fill="url(#l_26)" stroke="none" stroke-width="3" points="197,-397.4321 197,-438.4321 237,-438.4321 237,-397.4321 197,-397.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-398.9321 198.5,-436.9321 235.5,-436.9321 235.5,-398.9321 198.5,-398.9321"/>
 <text text-anchor="start" x="210" y="-414.2321" font-family="Times,serif" font-size="14.00" fill="#000000">31</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_27)" stroke="transparent" stroke-width="3" points="247,-397.4321 247,-438.4321 287,-438.4321 287,-397.4321 247,-397.4321"/>
+<polygon fill="url(#l_27)" stroke="none" stroke-width="3" points="247,-397.4321 247,-438.4321 287,-438.4321 287,-397.4321 247,-397.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-398.9321 248.5,-436.9321 285.5,-436.9321 285.5,-398.9321 248.5,-398.9321"/>
 <text text-anchor="start" x="260" y="-414.2321" font-family="Times,serif" font-size="14.00" fill="#000000">32</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_28)" stroke="transparent" stroke-width="3" points="297,-397.4321 297,-438.4321 337,-438.4321 337,-397.4321 297,-397.4321"/>
+<polygon fill="url(#l_28)" stroke="none" stroke-width="3" points="297,-397.4321 297,-438.4321 337,-438.4321 337,-397.4321 297,-397.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-398.9321 298.5,-436.9321 335.5,-436.9321 335.5,-398.9321 298.5,-398.9321"/>
 <text text-anchor="start" x="310" y="-414.2321" font-family="Times,serif" font-size="14.00" fill="#000000">33</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_29)" stroke="transparent" stroke-width="3" points="347,-397.4321 347,-438.4321 387,-438.4321 387,-397.4321 347,-397.4321"/>
+<polygon fill="url(#l_29)" stroke="none" stroke-width="3" points="347,-397.4321 347,-438.4321 387,-438.4321 387,-397.4321 347,-397.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-398.9321 348.5,-436.9321 385.5,-436.9321 385.5,-398.9321 348.5,-398.9321"/>
 <text text-anchor="start" x="360" y="-414.2321" font-family="Times,serif" font-size="14.00" fill="#000000">34</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_30)" stroke="transparent" stroke-width="3" points="397,-397.4321 397,-438.4321 437,-438.4321 437,-397.4321 397,-397.4321"/>
+<polygon fill="url(#l_30)" stroke="none" stroke-width="3" points="397,-397.4321 397,-438.4321 437,-438.4321 437,-397.4321 397,-397.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-398.9321 398.5,-436.9321 435.5,-436.9321 435.5,-398.9321 398.5,-398.9321"/>
 <text text-anchor="start" x="410" y="-414.2321" font-family="Times,serif" font-size="14.00" fill="#000000">35</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_31)" stroke="transparent" stroke-width="3" points="447,-397.4321 447,-438.4321 487,-438.4321 487,-397.4321 447,-397.4321"/>
+<polygon fill="url(#l_31)" stroke="none" stroke-width="3" points="447,-397.4321 447,-438.4321 487,-438.4321 487,-397.4321 447,-397.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-398.9321 448.5,-436.9321 485.5,-436.9321 485.5,-398.9321 448.5,-398.9321"/>
 <text text-anchor="start" x="460" y="-414.2321" font-family="Times,serif" font-size="14.00" fill="#000000">36</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_32)" stroke="transparent" stroke-width="3" points="497,-397.4321 497,-438.4321 537,-438.4321 537,-397.4321 497,-397.4321"/>
+<polygon fill="url(#l_32)" stroke="none" stroke-width="3" points="497,-397.4321 497,-438.4321 537,-438.4321 537,-397.4321 497,-397.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-398.9321 498.5,-436.9321 535.5,-436.9321 535.5,-398.9321 498.5,-398.9321"/>
 <text text-anchor="start" x="510" y="-414.2321" font-family="Times,serif" font-size="14.00" fill="#000000">37</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_33)" stroke="transparent" stroke-width="3" points="547,-397.4321 547,-438.4321 587,-438.4321 587,-397.4321 547,-397.4321"/>
+<polygon fill="url(#l_33)" stroke="none" stroke-width="3" points="547,-397.4321 547,-438.4321 587,-438.4321 587,-397.4321 547,-397.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-398.9321 548.5,-436.9321 585.5,-436.9321 585.5,-398.9321 548.5,-398.9321"/>
 <text text-anchor="start" x="560" y="-414.2321" font-family="Times,serif" font-size="14.00" fill="#000000">38</text>
-<polygon fill="#ffa500" stroke="transparent" stroke-width="3" points="147,-346.4321 147,-387.4321 187,-387.4321 187,-346.4321 147,-346.4321"/>
+<polygon fill="#ffa500" stroke="none" stroke-width="3" points="147,-346.4321 147,-387.4321 187,-387.4321 187,-346.4321 147,-346.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-347.9321 148.5,-385.9321 185.5,-385.9321 185.5,-347.9321 148.5,-347.9321"/>
 <text text-anchor="start" x="160" y="-363.2321" font-family="Times,serif" font-size="14.00" fill="#000000">40</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_34)" stroke="transparent" stroke-width="3" points="197,-346.4321 197,-387.4321 237,-387.4321 237,-346.4321 197,-346.4321"/>
+<polygon fill="url(#l_34)" stroke="none" stroke-width="3" points="197,-346.4321 197,-387.4321 237,-387.4321 237,-346.4321 197,-346.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-347.9321 198.5,-385.9321 235.5,-385.9321 235.5,-347.9321 198.5,-347.9321"/>
 <text text-anchor="start" x="210" y="-363.2321" font-family="Times,serif" font-size="14.00" fill="#000000">41</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_35)" stroke="transparent" stroke-width="3" points="247,-346.4321 247,-387.4321 287,-387.4321 287,-346.4321 247,-346.4321"/>
+<polygon fill="url(#l_35)" stroke="none" stroke-width="3" points="247,-346.4321 247,-387.4321 287,-387.4321 287,-346.4321 247,-346.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-347.9321 248.5,-385.9321 285.5,-385.9321 285.5,-347.9321 248.5,-347.9321"/>
 <text text-anchor="start" x="260" y="-363.2321" font-family="Times,serif" font-size="14.00" fill="#000000">42</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_36)" stroke="transparent" stroke-width="3" points="297,-346.4321 297,-387.4321 337,-387.4321 337,-346.4321 297,-346.4321"/>
+<polygon fill="url(#l_36)" stroke="none" stroke-width="3" points="297,-346.4321 297,-387.4321 337,-387.4321 337,-346.4321 297,-346.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-347.9321 298.5,-385.9321 335.5,-385.9321 335.5,-347.9321 298.5,-347.9321"/>
 <text text-anchor="start" x="310" y="-363.2321" font-family="Times,serif" font-size="14.00" fill="#000000">43</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_37)" stroke="transparent" stroke-width="3" points="347,-346.4321 347,-387.4321 387,-387.4321 387,-346.4321 347,-346.4321"/>
+<polygon fill="url(#l_37)" stroke="none" stroke-width="3" points="347,-346.4321 347,-387.4321 387,-387.4321 387,-346.4321 347,-346.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-347.9321 348.5,-385.9321 385.5,-385.9321 385.5,-347.9321 348.5,-347.9321"/>
 <text text-anchor="start" x="360" y="-363.2321" font-family="Times,serif" font-size="14.00" fill="#000000">44</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_38)" stroke="transparent" stroke-width="3" points="397,-346.4321 397,-387.4321 437,-387.4321 437,-346.4321 397,-346.4321"/>
+<polygon fill="url(#l_38)" stroke="none" stroke-width="3" points="397,-346.4321 397,-387.4321 437,-387.4321 437,-346.4321 397,-346.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-347.9321 398.5,-385.9321 435.5,-385.9321 435.5,-347.9321 398.5,-347.9321"/>
 <text text-anchor="start" x="410" y="-363.2321" font-family="Times,serif" font-size="14.00" fill="#000000">45</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_39)" stroke="transparent" stroke-width="3" points="447,-346.4321 447,-387.4321 487,-387.4321 487,-346.4321 447,-346.4321"/>
+<polygon fill="url(#l_39)" stroke="none" stroke-width="3" points="447,-346.4321 447,-387.4321 487,-387.4321 487,-346.4321 447,-346.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-347.9321 448.5,-385.9321 485.5,-385.9321 485.5,-347.9321 448.5,-347.9321"/>
 <text text-anchor="start" x="460" y="-363.2321" font-family="Times,serif" font-size="14.00" fill="#000000">46</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_40)" stroke="transparent" stroke-width="3" points="497,-346.4321 497,-387.4321 537,-387.4321 537,-346.4321 497,-346.4321"/>
+<polygon fill="url(#l_40)" stroke="none" stroke-width="3" points="497,-346.4321 497,-387.4321 537,-387.4321 537,-346.4321 497,-346.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-347.9321 498.5,-385.9321 535.5,-385.9321 535.5,-347.9321 498.5,-347.9321"/>
 <text text-anchor="start" x="510" y="-363.2321" font-family="Times,serif" font-size="14.00" fill="#000000">47</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_41)" stroke="transparent" stroke-width="3" points="547,-346.4321 547,-387.4321 587,-387.4321 587,-346.4321 547,-346.4321"/>
+<polygon fill="url(#l_41)" stroke="none" stroke-width="3" points="547,-346.4321 547,-387.4321 587,-387.4321 587,-346.4321 547,-346.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-347.9321 548.5,-385.9321 585.5,-385.9321 585.5,-347.9321 548.5,-347.9321"/>
 <text text-anchor="start" x="560" y="-363.2321" font-family="Times,serif" font-size="14.00" fill="#000000">48</text>
 <defs>
 <stop offset="1" style="stop-color:#ff0000;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_42)" stroke="transparent" stroke-width="3" points="147,-295.4321 147,-336.4321 187,-336.4321 187,-295.4321 147,-295.4321"/>
+<polygon fill="url(#l_42)" stroke="none" stroke-width="3" points="147,-295.4321 147,-336.4321 187,-336.4321 187,-295.4321 147,-295.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-296.9321 148.5,-334.9321 185.5,-334.9321 185.5,-296.9321 148.5,-296.9321"/>
 <text text-anchor="start" x="160" y="-312.2321" font-family="Times,serif" font-size="14.00" fill="#000000">50</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_43)" stroke="transparent" stroke-width="3" points="197,-295.4321 197,-336.4321 237,-336.4321 237,-295.4321 197,-295.4321"/>
+<polygon fill="url(#l_43)" stroke="none" stroke-width="3" points="197,-295.4321 197,-336.4321 237,-336.4321 237,-295.4321 197,-295.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-296.9321 198.5,-334.9321 235.5,-334.9321 235.5,-296.9321 198.5,-296.9321"/>
 <text text-anchor="start" x="210" y="-312.2321" font-family="Times,serif" font-size="14.00" fill="#000000">51</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_44)" stroke="transparent" stroke-width="3" points="247,-295.4321 247,-336.4321 287,-336.4321 287,-295.4321 247,-295.4321"/>
+<polygon fill="url(#l_44)" stroke="none" stroke-width="3" points="247,-295.4321 247,-336.4321 287,-336.4321 287,-295.4321 247,-295.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-296.9321 248.5,-334.9321 285.5,-334.9321 285.5,-296.9321 248.5,-296.9321"/>
 <text text-anchor="start" x="260" y="-312.2321" font-family="Times,serif" font-size="14.00" fill="#000000">52</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_45)" stroke="transparent" stroke-width="3" points="297,-295.4321 297,-336.4321 337,-336.4321 337,-295.4321 297,-295.4321"/>
+<polygon fill="url(#l_45)" stroke="none" stroke-width="3" points="297,-295.4321 297,-336.4321 337,-336.4321 337,-295.4321 297,-295.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-296.9321 298.5,-334.9321 335.5,-334.9321 335.5,-296.9321 298.5,-296.9321"/>
 <text text-anchor="start" x="310" y="-312.2321" font-family="Times,serif" font-size="14.00" fill="#000000">53</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_46)" stroke="transparent" stroke-width="3" points="347,-295.4321 347,-336.4321 387,-336.4321 387,-295.4321 347,-295.4321"/>
+<polygon fill="url(#l_46)" stroke="none" stroke-width="3" points="347,-295.4321 347,-336.4321 387,-336.4321 387,-295.4321 347,-295.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-296.9321 348.5,-334.9321 385.5,-334.9321 385.5,-296.9321 348.5,-296.9321"/>
 <text text-anchor="start" x="360" y="-312.2321" font-family="Times,serif" font-size="14.00" fill="#000000">54</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_47)" stroke="transparent" stroke-width="3" points="397,-295.4321 397,-336.4321 437,-336.4321 437,-295.4321 397,-295.4321"/>
+<polygon fill="url(#l_47)" stroke="none" stroke-width="3" points="397,-295.4321 397,-336.4321 437,-336.4321 437,-295.4321 397,-295.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-296.9321 398.5,-334.9321 435.5,-334.9321 435.5,-296.9321 398.5,-296.9321"/>
 <text text-anchor="start" x="410" y="-312.2321" font-family="Times,serif" font-size="14.00" fill="#000000">55</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_48)" stroke="transparent" stroke-width="3" points="447,-295.4321 447,-336.4321 487,-336.4321 487,-295.4321 447,-295.4321"/>
+<polygon fill="url(#l_48)" stroke="none" stroke-width="3" points="447,-295.4321 447,-336.4321 487,-336.4321 487,-295.4321 447,-295.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-296.9321 448.5,-334.9321 485.5,-334.9321 485.5,-296.9321 448.5,-296.9321"/>
 <text text-anchor="start" x="460" y="-312.2321" font-family="Times,serif" font-size="14.00" fill="#000000">56</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_49)" stroke="transparent" stroke-width="3" points="497,-295.4321 497,-336.4321 537,-336.4321 537,-295.4321 497,-295.4321"/>
+<polygon fill="url(#l_49)" stroke="none" stroke-width="3" points="497,-295.4321 497,-336.4321 537,-336.4321 537,-295.4321 497,-295.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-296.9321 498.5,-334.9321 535.5,-334.9321 535.5,-296.9321 498.5,-296.9321"/>
 <text text-anchor="start" x="510" y="-312.2321" font-family="Times,serif" font-size="14.00" fill="#000000">57</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_50)" stroke="transparent" stroke-width="3" points="547,-295.4321 547,-336.4321 587,-336.4321 587,-295.4321 547,-295.4321"/>
+<polygon fill="url(#l_50)" stroke="none" stroke-width="3" points="547,-295.4321 547,-336.4321 587,-336.4321 587,-295.4321 547,-295.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-296.9321 548.5,-334.9321 585.5,-334.9321 585.5,-296.9321 548.5,-296.9321"/>
 <text text-anchor="start" x="560" y="-312.2321" font-family="Times,serif" font-size="14.00" fill="#000000">58</text>
-<polygon fill="#ff0000" stroke="transparent" stroke-width="3" points="147,-244.4321 147,-285.4321 187,-285.4321 187,-244.4321 147,-244.4321"/>
+<polygon fill="#ff0000" stroke="none" stroke-width="3" points="147,-244.4321 147,-285.4321 187,-285.4321 187,-244.4321 147,-244.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-245.9321 148.5,-283.9321 185.5,-283.9321 185.5,-245.9321 148.5,-245.9321"/>
 <text text-anchor="start" x="160" y="-261.2321" font-family="Times,serif" font-size="14.00" fill="#000000">60</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_51)" stroke="transparent" stroke-width="3" points="197,-244.4321 197,-285.4321 237,-285.4321 237,-244.4321 197,-244.4321"/>
+<polygon fill="url(#l_51)" stroke="none" stroke-width="3" points="197,-244.4321 197,-285.4321 237,-285.4321 237,-244.4321 197,-244.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-245.9321 198.5,-283.9321 235.5,-283.9321 235.5,-245.9321 198.5,-245.9321"/>
 <text text-anchor="start" x="210" y="-261.2321" font-family="Times,serif" font-size="14.00" fill="#000000">61</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_52)" stroke="transparent" stroke-width="3" points="247,-244.4321 247,-285.4321 287,-285.4321 287,-244.4321 247,-244.4321"/>
+<polygon fill="url(#l_52)" stroke="none" stroke-width="3" points="247,-244.4321 247,-285.4321 287,-285.4321 287,-244.4321 247,-244.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-245.9321 248.5,-283.9321 285.5,-283.9321 285.5,-245.9321 248.5,-245.9321"/>
 <text text-anchor="start" x="260" y="-261.2321" font-family="Times,serif" font-size="14.00" fill="#000000">62</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_53)" stroke="transparent" stroke-width="3" points="297,-244.4321 297,-285.4321 337,-285.4321 337,-244.4321 297,-244.4321"/>
+<polygon fill="url(#l_53)" stroke="none" stroke-width="3" points="297,-244.4321 297,-285.4321 337,-285.4321 337,-244.4321 297,-244.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-245.9321 298.5,-283.9321 335.5,-283.9321 335.5,-245.9321 298.5,-245.9321"/>
 <text text-anchor="start" x="310" y="-261.2321" font-family="Times,serif" font-size="14.00" fill="#000000">63</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_54)" stroke="transparent" stroke-width="3" points="347,-244.4321 347,-285.4321 387,-285.4321 387,-244.4321 347,-244.4321"/>
+<polygon fill="url(#l_54)" stroke="none" stroke-width="3" points="347,-244.4321 347,-285.4321 387,-285.4321 387,-244.4321 347,-244.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-245.9321 348.5,-283.9321 385.5,-283.9321 385.5,-245.9321 348.5,-245.9321"/>
 <text text-anchor="start" x="360" y="-261.2321" font-family="Times,serif" font-size="14.00" fill="#000000">64</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_55)" stroke="transparent" stroke-width="3" points="397,-244.4321 397,-285.4321 437,-285.4321 437,-244.4321 397,-244.4321"/>
+<polygon fill="url(#l_55)" stroke="none" stroke-width="3" points="397,-244.4321 397,-285.4321 437,-285.4321 437,-244.4321 397,-244.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-245.9321 398.5,-283.9321 435.5,-283.9321 435.5,-245.9321 398.5,-245.9321"/>
 <text text-anchor="start" x="410" y="-261.2321" font-family="Times,serif" font-size="14.00" fill="#000000">65</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_56)" stroke="transparent" stroke-width="3" points="447,-244.4321 447,-285.4321 487,-285.4321 487,-244.4321 447,-244.4321"/>
+<polygon fill="url(#l_56)" stroke="none" stroke-width="3" points="447,-244.4321 447,-285.4321 487,-285.4321 487,-244.4321 447,-244.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-245.9321 448.5,-283.9321 485.5,-283.9321 485.5,-245.9321 448.5,-245.9321"/>
 <text text-anchor="start" x="460" y="-261.2321" font-family="Times,serif" font-size="14.00" fill="#000000">66</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_57)" stroke="transparent" stroke-width="3" points="497,-244.4321 497,-285.4321 537,-285.4321 537,-244.4321 497,-244.4321"/>
+<polygon fill="url(#l_57)" stroke="none" stroke-width="3" points="497,-244.4321 497,-285.4321 537,-285.4321 537,-244.4321 497,-244.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-245.9321 498.5,-283.9321 535.5,-283.9321 535.5,-245.9321 498.5,-245.9321"/>
 <text text-anchor="start" x="510" y="-261.2321" font-family="Times,serif" font-size="14.00" fill="#000000">67</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_58)" stroke="transparent" stroke-width="3" points="547,-244.4321 547,-285.4321 587,-285.4321 587,-244.4321 547,-244.4321"/>
+<polygon fill="url(#l_58)" stroke="none" stroke-width="3" points="547,-244.4321 547,-285.4321 587,-285.4321 587,-244.4321 547,-244.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-245.9321 548.5,-283.9321 585.5,-283.9321 585.5,-245.9321 548.5,-245.9321"/>
 <text text-anchor="start" x="560" y="-261.2321" font-family="Times,serif" font-size="14.00" fill="#000000">68</text>
 <defs>
 <stop offset="1" style="stop-color:#a52a2a;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_59)" stroke="transparent" stroke-width="3" points="147,-193.4321 147,-234.4321 187,-234.4321 187,-193.4321 147,-193.4321"/>
+<polygon fill="url(#l_59)" stroke="none" stroke-width="3" points="147,-193.4321 147,-234.4321 187,-234.4321 187,-193.4321 147,-193.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-194.9321 148.5,-232.9321 185.5,-232.9321 185.5,-194.9321 148.5,-194.9321"/>
 <text text-anchor="start" x="160" y="-210.2321" font-family="Times,serif" font-size="14.00" fill="#000000">70</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_60)" stroke="transparent" stroke-width="3" points="197,-193.4321 197,-234.4321 237,-234.4321 237,-193.4321 197,-193.4321"/>
+<polygon fill="url(#l_60)" stroke="none" stroke-width="3" points="197,-193.4321 197,-234.4321 237,-234.4321 237,-193.4321 197,-193.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-194.9321 198.5,-232.9321 235.5,-232.9321 235.5,-194.9321 198.5,-194.9321"/>
 <text text-anchor="start" x="210" y="-210.2321" font-family="Times,serif" font-size="14.00" fill="#000000">71</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_61)" stroke="transparent" stroke-width="3" points="247,-193.4321 247,-234.4321 287,-234.4321 287,-193.4321 247,-193.4321"/>
+<polygon fill="url(#l_61)" stroke="none" stroke-width="3" points="247,-193.4321 247,-234.4321 287,-234.4321 287,-193.4321 247,-193.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-194.9321 248.5,-232.9321 285.5,-232.9321 285.5,-194.9321 248.5,-194.9321"/>
 <text text-anchor="start" x="260" y="-210.2321" font-family="Times,serif" font-size="14.00" fill="#000000">72</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_62)" stroke="transparent" stroke-width="3" points="297,-193.4321 297,-234.4321 337,-234.4321 337,-193.4321 297,-193.4321"/>
+<polygon fill="url(#l_62)" stroke="none" stroke-width="3" points="297,-193.4321 297,-234.4321 337,-234.4321 337,-193.4321 297,-193.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-194.9321 298.5,-232.9321 335.5,-232.9321 335.5,-194.9321 298.5,-194.9321"/>
 <text text-anchor="start" x="310" y="-210.2321" font-family="Times,serif" font-size="14.00" fill="#000000">73</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_63)" stroke="transparent" stroke-width="3" points="347,-193.4321 347,-234.4321 387,-234.4321 387,-193.4321 347,-193.4321"/>
+<polygon fill="url(#l_63)" stroke="none" stroke-width="3" points="347,-193.4321 347,-234.4321 387,-234.4321 387,-193.4321 347,-193.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-194.9321 348.5,-232.9321 385.5,-232.9321 385.5,-194.9321 348.5,-194.9321"/>
 <text text-anchor="start" x="360" y="-210.2321" font-family="Times,serif" font-size="14.00" fill="#000000">74</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_64)" stroke="transparent" stroke-width="3" points="397,-193.4321 397,-234.4321 437,-234.4321 437,-193.4321 397,-193.4321"/>
+<polygon fill="url(#l_64)" stroke="none" stroke-width="3" points="397,-193.4321 397,-234.4321 437,-234.4321 437,-193.4321 397,-193.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-194.9321 398.5,-232.9321 435.5,-232.9321 435.5,-194.9321 398.5,-194.9321"/>
 <text text-anchor="start" x="410" y="-210.2321" font-family="Times,serif" font-size="14.00" fill="#000000">75</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_65)" stroke="transparent" stroke-width="3" points="447,-193.4321 447,-234.4321 487,-234.4321 487,-193.4321 447,-193.4321"/>
+<polygon fill="url(#l_65)" stroke="none" stroke-width="3" points="447,-193.4321 447,-234.4321 487,-234.4321 487,-193.4321 447,-193.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-194.9321 448.5,-232.9321 485.5,-232.9321 485.5,-194.9321 448.5,-194.9321"/>
 <text text-anchor="start" x="460" y="-210.2321" font-family="Times,serif" font-size="14.00" fill="#000000">76</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_66)" stroke="transparent" stroke-width="3" points="497,-193.4321 497,-234.4321 537,-234.4321 537,-193.4321 497,-193.4321"/>
+<polygon fill="url(#l_66)" stroke="none" stroke-width="3" points="497,-193.4321 497,-234.4321 537,-234.4321 537,-193.4321 497,-193.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-194.9321 498.5,-232.9321 535.5,-232.9321 535.5,-194.9321 498.5,-194.9321"/>
 <text text-anchor="start" x="510" y="-210.2321" font-family="Times,serif" font-size="14.00" fill="#000000">77</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_67)" stroke="transparent" stroke-width="3" points="547,-193.4321 547,-234.4321 587,-234.4321 587,-193.4321 547,-193.4321"/>
+<polygon fill="url(#l_67)" stroke="none" stroke-width="3" points="547,-193.4321 547,-234.4321 587,-234.4321 587,-193.4321 547,-193.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-194.9321 548.5,-232.9321 585.5,-232.9321 585.5,-194.9321 548.5,-194.9321"/>
 <text text-anchor="start" x="560" y="-210.2321" font-family="Times,serif" font-size="14.00" fill="#000000">78</text>
-<polygon fill="#a52a2a" stroke="transparent" stroke-width="3" points="147,-142.4321 147,-183.4321 187,-183.4321 187,-142.4321 147,-142.4321"/>
+<polygon fill="#a52a2a" stroke="none" stroke-width="3" points="147,-142.4321 147,-183.4321 187,-183.4321 187,-142.4321 147,-142.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-143.9321 148.5,-181.9321 185.5,-181.9321 185.5,-143.9321 148.5,-143.9321"/>
 <text text-anchor="start" x="160" y="-159.2321" font-family="Times,serif" font-size="14.00" fill="#000000">80</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_68)" stroke="transparent" stroke-width="3" points="197,-142.4321 197,-183.4321 237,-183.4321 237,-142.4321 197,-142.4321"/>
+<polygon fill="url(#l_68)" stroke="none" stroke-width="3" points="197,-142.4321 197,-183.4321 237,-183.4321 237,-142.4321 197,-142.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-143.9321 198.5,-181.9321 235.5,-181.9321 235.5,-143.9321 198.5,-143.9321"/>
 <text text-anchor="start" x="210" y="-159.2321" font-family="Times,serif" font-size="14.00" fill="#000000">81</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_69)" stroke="transparent" stroke-width="3" points="247,-142.4321 247,-183.4321 287,-183.4321 287,-142.4321 247,-142.4321"/>
+<polygon fill="url(#l_69)" stroke="none" stroke-width="3" points="247,-142.4321 247,-183.4321 287,-183.4321 287,-142.4321 247,-142.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-143.9321 248.5,-181.9321 285.5,-181.9321 285.5,-143.9321 248.5,-143.9321"/>
 <text text-anchor="start" x="260" y="-159.2321" font-family="Times,serif" font-size="14.00" fill="#000000">82</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_70)" stroke="transparent" stroke-width="3" points="297,-142.4321 297,-183.4321 337,-183.4321 337,-142.4321 297,-142.4321"/>
+<polygon fill="url(#l_70)" stroke="none" stroke-width="3" points="297,-142.4321 297,-183.4321 337,-183.4321 337,-142.4321 297,-142.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-143.9321 298.5,-181.9321 335.5,-181.9321 335.5,-143.9321 298.5,-143.9321"/>
 <text text-anchor="start" x="310" y="-159.2321" font-family="Times,serif" font-size="14.00" fill="#000000">83</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_71)" stroke="transparent" stroke-width="3" points="347,-142.4321 347,-183.4321 387,-183.4321 387,-142.4321 347,-142.4321"/>
+<polygon fill="url(#l_71)" stroke="none" stroke-width="3" points="347,-142.4321 347,-183.4321 387,-183.4321 387,-142.4321 347,-142.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-143.9321 348.5,-181.9321 385.5,-181.9321 385.5,-143.9321 348.5,-143.9321"/>
 <text text-anchor="start" x="360" y="-159.2321" font-family="Times,serif" font-size="14.00" fill="#000000">84</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_72)" stroke="transparent" stroke-width="3" points="397,-142.4321 397,-183.4321 437,-183.4321 437,-142.4321 397,-142.4321"/>
+<polygon fill="url(#l_72)" stroke="none" stroke-width="3" points="397,-142.4321 397,-183.4321 437,-183.4321 437,-142.4321 397,-142.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-143.9321 398.5,-181.9321 435.5,-181.9321 435.5,-143.9321 398.5,-143.9321"/>
 <text text-anchor="start" x="410" y="-159.2321" font-family="Times,serif" font-size="14.00" fill="#000000">85</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_73)" stroke="transparent" stroke-width="3" points="447,-142.4321 447,-183.4321 487,-183.4321 487,-142.4321 447,-142.4321"/>
+<polygon fill="url(#l_73)" stroke="none" stroke-width="3" points="447,-142.4321 447,-183.4321 487,-183.4321 487,-142.4321 447,-142.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-143.9321 448.5,-181.9321 485.5,-181.9321 485.5,-143.9321 448.5,-143.9321"/>
 <text text-anchor="start" x="460" y="-159.2321" font-family="Times,serif" font-size="14.00" fill="#000000">86</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_74)" stroke="transparent" stroke-width="3" points="497,-142.4321 497,-183.4321 537,-183.4321 537,-142.4321 497,-142.4321"/>
+<polygon fill="url(#l_74)" stroke="none" stroke-width="3" points="497,-142.4321 497,-183.4321 537,-183.4321 537,-142.4321 497,-142.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-143.9321 498.5,-181.9321 535.5,-181.9321 535.5,-143.9321 498.5,-143.9321"/>
 <text text-anchor="start" x="510" y="-159.2321" font-family="Times,serif" font-size="14.00" fill="#000000">87</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_75)" stroke="transparent" stroke-width="3" points="547,-142.4321 547,-183.4321 587,-183.4321 587,-142.4321 547,-142.4321"/>
+<polygon fill="url(#l_75)" stroke="none" stroke-width="3" points="547,-142.4321 547,-183.4321 587,-183.4321 587,-142.4321 547,-142.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-143.9321 548.5,-181.9321 585.5,-181.9321 585.5,-143.9321 548.5,-143.9321"/>
 <text text-anchor="start" x="560" y="-159.2321" font-family="Times,serif" font-size="14.00" fill="#000000">88</text>
 <path fill="none" stroke="#000000" stroke-width="10" d="M144,-127.9321C144,-127.9321 590,-127.9321 590,-127.9321 596,-127.9321 602,-133.9321 602,-139.9321 602,-139.9321 602,-594.9321 602,-594.9321 602,-600.9321 596,-606.9321 590,-606.9321 590,-606.9321 144,-606.9321 144,-606.9321 138,-606.9321 132,-600.9321 132,-594.9321 132,-594.9321 132,-139.9321 132,-139.9321 132,-133.9321 138,-127.9321 144,-127.9321"/>
index b141369131f092f13e40be4b27f14bf47046d342..353b204201c559e5b09b780a29304cfd6eacc602 100644 (file)
@@ -14,7 +14,7 @@
 <stop offset="1" style="stop-color:#ffc0cb;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_0)" stroke="transparent" points="-4,4 -4,-784.8641 738,-784.8641 738,4 -4,4"/>
+<polygon fill="url(#l_0)" stroke="none" points="-4,4 -4,-784.8641 738,-784.8641 738,4 -4,4"/>
 <text text-anchor="middle" x="367" y="-7.8" font-family="Times,serif" font-size="14.00" fill="#ffffff">Graph</text>
 <g id="clust1" class="cluster">
 <title>cluster1</title>
@@ -43,8 +43,8 @@
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<path fill="url(#l_2)" stroke="transparent" d="M144,-150.9321C144,-150.9321 590,-150.9321 590,-150.9321 596,-150.9321 602,-156.9321 602,-162.9321 602,-162.9321 602,-617.9321 602,-617.9321 602,-623.9321 596,-629.9321 590,-629.9321 590,-629.9321 144,-629.9321 144,-629.9321 138,-629.9321 132,-623.9321 132,-617.9321 132,-617.9321 132,-162.9321 132,-162.9321 132,-156.9321 138,-150.9321 144,-150.9321"/>
-<polygon fill="#ffff00" stroke="transparent" points="147,-573.4321 147,-614.4321 187,-614.4321 187,-573.4321 147,-573.4321"/>
+<path fill="url(#l_2)" stroke="none" d="M144,-150.9321C144,-150.9321 590,-150.9321 590,-150.9321 596,-150.9321 602,-156.9321 602,-162.9321 602,-162.9321 602,-617.9321 602,-617.9321 602,-623.9321 596,-629.9321 590,-629.9321 590,-629.9321 144,-629.9321 144,-629.9321 138,-629.9321 132,-623.9321 132,-617.9321 132,-617.9321 132,-162.9321 132,-162.9321 132,-156.9321 138,-150.9321 144,-150.9321"/>
+<polygon fill="#ffff00" stroke="none" points="147,-573.4321 147,-614.4321 187,-614.4321 187,-573.4321 147,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-574.9321 148.5,-612.9321 185.5,-612.9321 185.5,-574.9321 148.5,-574.9321"/>
 <text text-anchor="start" x="160" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">00</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_3)" stroke="transparent" stroke-width="3" points="197,-573.4321 197,-614.4321 237,-614.4321 237,-573.4321 197,-573.4321"/>
+<polygon fill="url(#l_3)" stroke="none" stroke-width="3" points="197,-573.4321 197,-614.4321 237,-614.4321 237,-573.4321 197,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-574.9321 198.5,-612.9321 235.5,-612.9321 235.5,-574.9321 198.5,-574.9321"/>
 <text text-anchor="start" x="210" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">01</text>
-<polygon fill="#00ff00" stroke="transparent" stroke-width="3" points="247,-573.4321 247,-614.4321 287,-614.4321 287,-573.4321 247,-573.4321"/>
+<polygon fill="#00ff00" stroke="none" stroke-width="3" points="247,-573.4321 247,-614.4321 287,-614.4321 287,-573.4321 247,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-574.9321 248.5,-612.9321 285.5,-612.9321 285.5,-574.9321 248.5,-574.9321"/>
 <text text-anchor="start" x="260" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">02</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_4)" stroke="transparent" stroke-width="3" points="297,-573.4321 297,-614.4321 337,-614.4321 337,-573.4321 297,-573.4321"/>
+<polygon fill="url(#l_4)" stroke="none" stroke-width="3" points="297,-573.4321 297,-614.4321 337,-614.4321 337,-573.4321 297,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-574.9321 298.5,-612.9321 335.5,-612.9321 335.5,-574.9321 298.5,-574.9321"/>
 <text text-anchor="start" x="310" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">03</text>
-<polygon fill="#0000ff" stroke="transparent" stroke-width="3" points="347,-573.4321 347,-614.4321 387,-614.4321 387,-573.4321 347,-573.4321"/>
+<polygon fill="#0000ff" stroke="none" stroke-width="3" points="347,-573.4321 347,-614.4321 387,-614.4321 387,-573.4321 347,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-574.9321 348.5,-612.9321 385.5,-612.9321 385.5,-574.9321 348.5,-574.9321"/>
 <text text-anchor="start" x="360" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">04</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_5)" stroke="transparent" stroke-width="3" points="397,-573.4321 397,-614.4321 437,-614.4321 437,-573.4321 397,-573.4321"/>
+<polygon fill="url(#l_5)" stroke="none" stroke-width="3" points="397,-573.4321 397,-614.4321 437,-614.4321 437,-573.4321 397,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-574.9321 398.5,-612.9321 435.5,-612.9321 435.5,-574.9321 398.5,-574.9321"/>
 <text text-anchor="start" x="410" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">05</text>
-<polygon fill="#a020f0" stroke="transparent" stroke-width="3" points="447,-573.4321 447,-614.4321 487,-614.4321 487,-573.4321 447,-573.4321"/>
+<polygon fill="#a020f0" stroke="none" stroke-width="3" points="447,-573.4321 447,-614.4321 487,-614.4321 487,-573.4321 447,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-574.9321 448.5,-612.9321 485.5,-612.9321 485.5,-574.9321 448.5,-574.9321"/>
 <text text-anchor="start" x="460" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">06</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_6)" stroke="transparent" stroke-width="3" points="497,-573.4321 497,-614.4321 537,-614.4321 537,-573.4321 497,-573.4321"/>
+<polygon fill="url(#l_6)" stroke="none" stroke-width="3" points="497,-573.4321 497,-614.4321 537,-614.4321 537,-573.4321 497,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-574.9321 498.5,-612.9321 535.5,-612.9321 535.5,-574.9321 498.5,-574.9321"/>
 <text text-anchor="start" x="510" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">07</text>
-<polygon fill="#ee82ee" stroke="transparent" stroke-width="3" points="547,-573.4321 547,-614.4321 587,-614.4321 587,-573.4321 547,-573.4321"/>
+<polygon fill="#ee82ee" stroke="none" stroke-width="3" points="547,-573.4321 547,-614.4321 587,-614.4321 587,-573.4321 547,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-574.9321 548.5,-612.9321 585.5,-612.9321 585.5,-574.9321 548.5,-574.9321"/>
 <text text-anchor="start" x="560" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">08</text>
 <defs>
 <stop offset="1" style="stop-color:#ffd700;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_7)" stroke="transparent" stroke-width="3" points="147,-522.4321 147,-563.4321 187,-563.4321 187,-522.4321 147,-522.4321"/>
+<polygon fill="url(#l_7)" stroke="none" stroke-width="3" points="147,-522.4321 147,-563.4321 187,-563.4321 187,-522.4321 147,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-523.9321 148.5,-561.9321 185.5,-561.9321 185.5,-523.9321 148.5,-523.9321"/>
 <text text-anchor="start" x="160" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">10</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_8)" stroke="transparent" stroke-width="3" points="197,-522.4321 197,-563.4321 237,-563.4321 237,-522.4321 197,-522.4321"/>
+<polygon fill="url(#l_8)" stroke="none" stroke-width="3" points="197,-522.4321 197,-563.4321 237,-563.4321 237,-522.4321 197,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-523.9321 198.5,-561.9321 235.5,-561.9321 235.5,-523.9321 198.5,-523.9321"/>
 <text text-anchor="start" x="210" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">11</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_9)" stroke="transparent" stroke-width="3" points="247,-522.4321 247,-563.4321 287,-563.4321 287,-522.4321 247,-522.4321"/>
+<polygon fill="url(#l_9)" stroke="none" stroke-width="3" points="247,-522.4321 247,-563.4321 287,-563.4321 287,-522.4321 247,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-523.9321 248.5,-561.9321 285.5,-561.9321 285.5,-523.9321 248.5,-523.9321"/>
 <text text-anchor="start" x="260" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">12</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_10)" stroke="transparent" stroke-width="3" points="297,-522.4321 297,-563.4321 337,-563.4321 337,-522.4321 297,-522.4321"/>
+<polygon fill="url(#l_10)" stroke="none" stroke-width="3" points="297,-522.4321 297,-563.4321 337,-563.4321 337,-522.4321 297,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-523.9321 298.5,-561.9321 335.5,-561.9321 335.5,-523.9321 298.5,-523.9321"/>
 <text text-anchor="start" x="310" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">13</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_11)" stroke="transparent" stroke-width="3" points="347,-522.4321 347,-563.4321 387,-563.4321 387,-522.4321 347,-522.4321"/>
+<polygon fill="url(#l_11)" stroke="none" stroke-width="3" points="347,-522.4321 347,-563.4321 387,-563.4321 387,-522.4321 347,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-523.9321 348.5,-561.9321 385.5,-561.9321 385.5,-523.9321 348.5,-523.9321"/>
 <text text-anchor="start" x="360" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">14</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_12)" stroke="transparent" stroke-width="3" points="397,-522.4321 397,-563.4321 437,-563.4321 437,-522.4321 397,-522.4321"/>
+<polygon fill="url(#l_12)" stroke="none" stroke-width="3" points="397,-522.4321 397,-563.4321 437,-563.4321 437,-522.4321 397,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-523.9321 398.5,-561.9321 435.5,-561.9321 435.5,-523.9321 398.5,-523.9321"/>
 <text text-anchor="start" x="410" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">15</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_13)" stroke="transparent" stroke-width="3" points="447,-522.4321 447,-563.4321 487,-563.4321 487,-522.4321 447,-522.4321"/>
+<polygon fill="url(#l_13)" stroke="none" stroke-width="3" points="447,-522.4321 447,-563.4321 487,-563.4321 487,-522.4321 447,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-523.9321 448.5,-561.9321 485.5,-561.9321 485.5,-523.9321 448.5,-523.9321"/>
 <text text-anchor="start" x="460" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">16</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_14)" stroke="transparent" stroke-width="3" points="497,-522.4321 497,-563.4321 537,-563.4321 537,-522.4321 497,-522.4321"/>
+<polygon fill="url(#l_14)" stroke="none" stroke-width="3" points="497,-522.4321 497,-563.4321 537,-563.4321 537,-522.4321 497,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-523.9321 498.5,-561.9321 535.5,-561.9321 535.5,-523.9321 498.5,-523.9321"/>
 <text text-anchor="start" x="510" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">17</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_15)" stroke="transparent" stroke-width="3" points="547,-522.4321 547,-563.4321 587,-563.4321 587,-522.4321 547,-522.4321"/>
+<polygon fill="url(#l_15)" stroke="none" stroke-width="3" points="547,-522.4321 547,-563.4321 587,-563.4321 587,-522.4321 547,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-523.9321 548.5,-561.9321 585.5,-561.9321 585.5,-523.9321 548.5,-523.9321"/>
 <text text-anchor="start" x="560" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">18</text>
-<polygon fill="#ffd700" stroke="transparent" stroke-width="3" points="147,-471.4321 147,-512.4321 187,-512.4321 187,-471.4321 147,-471.4321"/>
+<polygon fill="#ffd700" stroke="none" stroke-width="3" points="147,-471.4321 147,-512.4321 187,-512.4321 187,-471.4321 147,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-472.9321 148.5,-510.9321 185.5,-510.9321 185.5,-472.9321 148.5,-472.9321"/>
 <text text-anchor="start" x="160" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">20</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_16)" stroke="transparent" stroke-width="3" points="197,-471.4321 197,-512.4321 237,-512.4321 237,-471.4321 197,-471.4321"/>
+<polygon fill="url(#l_16)" stroke="none" stroke-width="3" points="197,-471.4321 197,-512.4321 237,-512.4321 237,-471.4321 197,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-472.9321 198.5,-510.9321 235.5,-510.9321 235.5,-472.9321 198.5,-472.9321"/>
 <text text-anchor="start" x="210" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">21</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_17)" stroke="transparent" stroke-width="3" points="247,-471.4321 247,-512.4321 287,-512.4321 287,-471.4321 247,-471.4321"/>
+<polygon fill="url(#l_17)" stroke="none" stroke-width="3" points="247,-471.4321 247,-512.4321 287,-512.4321 287,-471.4321 247,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-472.9321 248.5,-510.9321 285.5,-510.9321 285.5,-472.9321 248.5,-472.9321"/>
 <text text-anchor="start" x="260" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">22</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_18)" stroke="transparent" stroke-width="3" points="297,-471.4321 297,-512.4321 337,-512.4321 337,-471.4321 297,-471.4321"/>
+<polygon fill="url(#l_18)" stroke="none" stroke-width="3" points="297,-471.4321 297,-512.4321 337,-512.4321 337,-471.4321 297,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-472.9321 298.5,-510.9321 335.5,-510.9321 335.5,-472.9321 298.5,-472.9321"/>
 <text text-anchor="start" x="310" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">23</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_19)" stroke="transparent" stroke-width="3" points="347,-471.4321 347,-512.4321 387,-512.4321 387,-471.4321 347,-471.4321"/>
+<polygon fill="url(#l_19)" stroke="none" stroke-width="3" points="347,-471.4321 347,-512.4321 387,-512.4321 387,-471.4321 347,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-472.9321 348.5,-510.9321 385.5,-510.9321 385.5,-472.9321 348.5,-472.9321"/>
 <text text-anchor="start" x="360" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">24</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_20)" stroke="transparent" stroke-width="3" points="397,-471.4321 397,-512.4321 437,-512.4321 437,-471.4321 397,-471.4321"/>
+<polygon fill="url(#l_20)" stroke="none" stroke-width="3" points="397,-471.4321 397,-512.4321 437,-512.4321 437,-471.4321 397,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-472.9321 398.5,-510.9321 435.5,-510.9321 435.5,-472.9321 398.5,-472.9321"/>
 <text text-anchor="start" x="410" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">25</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_21)" stroke="transparent" stroke-width="3" points="447,-471.4321 447,-512.4321 487,-512.4321 487,-471.4321 447,-471.4321"/>
+<polygon fill="url(#l_21)" stroke="none" stroke-width="3" points="447,-471.4321 447,-512.4321 487,-512.4321 487,-471.4321 447,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-472.9321 448.5,-510.9321 485.5,-510.9321 485.5,-472.9321 448.5,-472.9321"/>
 <text text-anchor="start" x="460" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">26</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_22)" stroke="transparent" stroke-width="3" points="497,-471.4321 497,-512.4321 537,-512.4321 537,-471.4321 497,-471.4321"/>
+<polygon fill="url(#l_22)" stroke="none" stroke-width="3" points="497,-471.4321 497,-512.4321 537,-512.4321 537,-471.4321 497,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-472.9321 498.5,-510.9321 535.5,-510.9321 535.5,-472.9321 498.5,-472.9321"/>
 <text text-anchor="start" x="510" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">27</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_23)" stroke="transparent" stroke-width="3" points="547,-471.4321 547,-512.4321 587,-512.4321 587,-471.4321 547,-471.4321"/>
+<polygon fill="url(#l_23)" stroke="none" stroke-width="3" points="547,-471.4321 547,-512.4321 587,-512.4321 587,-471.4321 547,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-472.9321 548.5,-510.9321 585.5,-510.9321 585.5,-472.9321 548.5,-472.9321"/>
 <text text-anchor="start" x="560" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">28</text>
 <defs>
 <stop offset="1" style="stop-color:#ffa500;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_24)" stroke="transparent" stroke-width="3" points="147,-420.4321 147,-461.4321 187,-461.4321 187,-420.4321 147,-420.4321"/>
+<polygon fill="url(#l_24)" stroke="none" stroke-width="3" points="147,-420.4321 147,-461.4321 187,-461.4321 187,-420.4321 147,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-421.9321 148.5,-459.9321 185.5,-459.9321 185.5,-421.9321 148.5,-421.9321"/>
 <text text-anchor="start" x="160" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">30</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_25)" stroke="transparent" stroke-width="3" points="197,-420.4321 197,-461.4321 237,-461.4321 237,-420.4321 197,-420.4321"/>
+<polygon fill="url(#l_25)" stroke="none" stroke-width="3" points="197,-420.4321 197,-461.4321 237,-461.4321 237,-420.4321 197,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-421.9321 198.5,-459.9321 235.5,-459.9321 235.5,-421.9321 198.5,-421.9321"/>
 <text text-anchor="start" x="210" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">31</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_26)" stroke="transparent" stroke-width="3" points="247,-420.4321 247,-461.4321 287,-461.4321 287,-420.4321 247,-420.4321"/>
+<polygon fill="url(#l_26)" stroke="none" stroke-width="3" points="247,-420.4321 247,-461.4321 287,-461.4321 287,-420.4321 247,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-421.9321 248.5,-459.9321 285.5,-459.9321 285.5,-421.9321 248.5,-421.9321"/>
 <text text-anchor="start" x="260" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">32</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_27)" stroke="transparent" stroke-width="3" points="297,-420.4321 297,-461.4321 337,-461.4321 337,-420.4321 297,-420.4321"/>
+<polygon fill="url(#l_27)" stroke="none" stroke-width="3" points="297,-420.4321 297,-461.4321 337,-461.4321 337,-420.4321 297,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-421.9321 298.5,-459.9321 335.5,-459.9321 335.5,-421.9321 298.5,-421.9321"/>
 <text text-anchor="start" x="310" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">33</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_28)" stroke="transparent" stroke-width="3" points="347,-420.4321 347,-461.4321 387,-461.4321 387,-420.4321 347,-420.4321"/>
+<polygon fill="url(#l_28)" stroke="none" stroke-width="3" points="347,-420.4321 347,-461.4321 387,-461.4321 387,-420.4321 347,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-421.9321 348.5,-459.9321 385.5,-459.9321 385.5,-421.9321 348.5,-421.9321"/>
 <text text-anchor="start" x="360" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">34</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_29)" stroke="transparent" stroke-width="3" points="397,-420.4321 397,-461.4321 437,-461.4321 437,-420.4321 397,-420.4321"/>
+<polygon fill="url(#l_29)" stroke="none" stroke-width="3" points="397,-420.4321 397,-461.4321 437,-461.4321 437,-420.4321 397,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-421.9321 398.5,-459.9321 435.5,-459.9321 435.5,-421.9321 398.5,-421.9321"/>
 <text text-anchor="start" x="410" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">35</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_30)" stroke="transparent" stroke-width="3" points="447,-420.4321 447,-461.4321 487,-461.4321 487,-420.4321 447,-420.4321"/>
+<polygon fill="url(#l_30)" stroke="none" stroke-width="3" points="447,-420.4321 447,-461.4321 487,-461.4321 487,-420.4321 447,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-421.9321 448.5,-459.9321 485.5,-459.9321 485.5,-421.9321 448.5,-421.9321"/>
 <text text-anchor="start" x="460" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">36</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_31)" stroke="transparent" stroke-width="3" points="497,-420.4321 497,-461.4321 537,-461.4321 537,-420.4321 497,-420.4321"/>
+<polygon fill="url(#l_31)" stroke="none" stroke-width="3" points="497,-420.4321 497,-461.4321 537,-461.4321 537,-420.4321 497,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-421.9321 498.5,-459.9321 535.5,-459.9321 535.5,-421.9321 498.5,-421.9321"/>
 <text text-anchor="start" x="510" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">37</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_32)" stroke="transparent" stroke-width="3" points="547,-420.4321 547,-461.4321 587,-461.4321 587,-420.4321 547,-420.4321"/>
+<polygon fill="url(#l_32)" stroke="none" stroke-width="3" points="547,-420.4321 547,-461.4321 587,-461.4321 587,-420.4321 547,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-421.9321 548.5,-459.9321 585.5,-459.9321 585.5,-421.9321 548.5,-421.9321"/>
 <text text-anchor="start" x="560" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">38</text>
-<polygon fill="#ffa500" stroke="transparent" stroke-width="3" points="147,-369.4321 147,-410.4321 187,-410.4321 187,-369.4321 147,-369.4321"/>
+<polygon fill="#ffa500" stroke="none" stroke-width="3" points="147,-369.4321 147,-410.4321 187,-410.4321 187,-369.4321 147,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-370.9321 148.5,-408.9321 185.5,-408.9321 185.5,-370.9321 148.5,-370.9321"/>
 <text text-anchor="start" x="160" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">40</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_33)" stroke="transparent" stroke-width="3" points="197,-369.4321 197,-410.4321 237,-410.4321 237,-369.4321 197,-369.4321"/>
+<polygon fill="url(#l_33)" stroke="none" stroke-width="3" points="197,-369.4321 197,-410.4321 237,-410.4321 237,-369.4321 197,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-370.9321 198.5,-408.9321 235.5,-408.9321 235.5,-370.9321 198.5,-370.9321"/>
 <text text-anchor="start" x="210" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">41</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_34)" stroke="transparent" stroke-width="3" points="247,-369.4321 247,-410.4321 287,-410.4321 287,-369.4321 247,-369.4321"/>
+<polygon fill="url(#l_34)" stroke="none" stroke-width="3" points="247,-369.4321 247,-410.4321 287,-410.4321 287,-369.4321 247,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-370.9321 248.5,-408.9321 285.5,-408.9321 285.5,-370.9321 248.5,-370.9321"/>
 <text text-anchor="start" x="260" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">42</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_35)" stroke="transparent" stroke-width="3" points="297,-369.4321 297,-410.4321 337,-410.4321 337,-369.4321 297,-369.4321"/>
+<polygon fill="url(#l_35)" stroke="none" stroke-width="3" points="297,-369.4321 297,-410.4321 337,-410.4321 337,-369.4321 297,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-370.9321 298.5,-408.9321 335.5,-408.9321 335.5,-370.9321 298.5,-370.9321"/>
 <text text-anchor="start" x="310" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">43</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_36)" stroke="transparent" stroke-width="3" points="347,-369.4321 347,-410.4321 387,-410.4321 387,-369.4321 347,-369.4321"/>
+<polygon fill="url(#l_36)" stroke="none" stroke-width="3" points="347,-369.4321 347,-410.4321 387,-410.4321 387,-369.4321 347,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-370.9321 348.5,-408.9321 385.5,-408.9321 385.5,-370.9321 348.5,-370.9321"/>
 <text text-anchor="start" x="360" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">44</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_37)" stroke="transparent" stroke-width="3" points="397,-369.4321 397,-410.4321 437,-410.4321 437,-369.4321 397,-369.4321"/>
+<polygon fill="url(#l_37)" stroke="none" stroke-width="3" points="397,-369.4321 397,-410.4321 437,-410.4321 437,-369.4321 397,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-370.9321 398.5,-408.9321 435.5,-408.9321 435.5,-370.9321 398.5,-370.9321"/>
 <text text-anchor="start" x="410" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">45</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_38)" stroke="transparent" stroke-width="3" points="447,-369.4321 447,-410.4321 487,-410.4321 487,-369.4321 447,-369.4321"/>
+<polygon fill="url(#l_38)" stroke="none" stroke-width="3" points="447,-369.4321 447,-410.4321 487,-410.4321 487,-369.4321 447,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-370.9321 448.5,-408.9321 485.5,-408.9321 485.5,-370.9321 448.5,-370.9321"/>
 <text text-anchor="start" x="460" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">46</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_39)" stroke="transparent" stroke-width="3" points="497,-369.4321 497,-410.4321 537,-410.4321 537,-369.4321 497,-369.4321"/>
+<polygon fill="url(#l_39)" stroke="none" stroke-width="3" points="497,-369.4321 497,-410.4321 537,-410.4321 537,-369.4321 497,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-370.9321 498.5,-408.9321 535.5,-408.9321 535.5,-370.9321 498.5,-370.9321"/>
 <text text-anchor="start" x="510" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">47</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_40)" stroke="transparent" stroke-width="3" points="547,-369.4321 547,-410.4321 587,-410.4321 587,-369.4321 547,-369.4321"/>
+<polygon fill="url(#l_40)" stroke="none" stroke-width="3" points="547,-369.4321 547,-410.4321 587,-410.4321 587,-369.4321 547,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-370.9321 548.5,-408.9321 585.5,-408.9321 585.5,-370.9321 548.5,-370.9321"/>
 <text text-anchor="start" x="560" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">48</text>
 <defs>
 <stop offset="1" style="stop-color:#ff0000;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_41)" stroke="transparent" stroke-width="3" points="147,-318.4321 147,-359.4321 187,-359.4321 187,-318.4321 147,-318.4321"/>
+<polygon fill="url(#l_41)" stroke="none" stroke-width="3" points="147,-318.4321 147,-359.4321 187,-359.4321 187,-318.4321 147,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-319.9321 148.5,-357.9321 185.5,-357.9321 185.5,-319.9321 148.5,-319.9321"/>
 <text text-anchor="start" x="160" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">50</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_42)" stroke="transparent" stroke-width="3" points="197,-318.4321 197,-359.4321 237,-359.4321 237,-318.4321 197,-318.4321"/>
+<polygon fill="url(#l_42)" stroke="none" stroke-width="3" points="197,-318.4321 197,-359.4321 237,-359.4321 237,-318.4321 197,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-319.9321 198.5,-357.9321 235.5,-357.9321 235.5,-319.9321 198.5,-319.9321"/>
 <text text-anchor="start" x="210" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">51</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_43)" stroke="transparent" stroke-width="3" points="247,-318.4321 247,-359.4321 287,-359.4321 287,-318.4321 247,-318.4321"/>
+<polygon fill="url(#l_43)" stroke="none" stroke-width="3" points="247,-318.4321 247,-359.4321 287,-359.4321 287,-318.4321 247,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-319.9321 248.5,-357.9321 285.5,-357.9321 285.5,-319.9321 248.5,-319.9321"/>
 <text text-anchor="start" x="260" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">52</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_44)" stroke="transparent" stroke-width="3" points="297,-318.4321 297,-359.4321 337,-359.4321 337,-318.4321 297,-318.4321"/>
+<polygon fill="url(#l_44)" stroke="none" stroke-width="3" points="297,-318.4321 297,-359.4321 337,-359.4321 337,-318.4321 297,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-319.9321 298.5,-357.9321 335.5,-357.9321 335.5,-319.9321 298.5,-319.9321"/>
 <text text-anchor="start" x="310" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">53</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_45)" stroke="transparent" stroke-width="3" points="347,-318.4321 347,-359.4321 387,-359.4321 387,-318.4321 347,-318.4321"/>
+<polygon fill="url(#l_45)" stroke="none" stroke-width="3" points="347,-318.4321 347,-359.4321 387,-359.4321 387,-318.4321 347,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-319.9321 348.5,-357.9321 385.5,-357.9321 385.5,-319.9321 348.5,-319.9321"/>
 <text text-anchor="start" x="360" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">54</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_46)" stroke="transparent" stroke-width="3" points="397,-318.4321 397,-359.4321 437,-359.4321 437,-318.4321 397,-318.4321"/>
+<polygon fill="url(#l_46)" stroke="none" stroke-width="3" points="397,-318.4321 397,-359.4321 437,-359.4321 437,-318.4321 397,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-319.9321 398.5,-357.9321 435.5,-357.9321 435.5,-319.9321 398.5,-319.9321"/>
 <text text-anchor="start" x="410" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">55</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_47)" stroke="transparent" stroke-width="3" points="447,-318.4321 447,-359.4321 487,-359.4321 487,-318.4321 447,-318.4321"/>
+<polygon fill="url(#l_47)" stroke="none" stroke-width="3" points="447,-318.4321 447,-359.4321 487,-359.4321 487,-318.4321 447,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-319.9321 448.5,-357.9321 485.5,-357.9321 485.5,-319.9321 448.5,-319.9321"/>
 <text text-anchor="start" x="460" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">56</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_48)" stroke="transparent" stroke-width="3" points="497,-318.4321 497,-359.4321 537,-359.4321 537,-318.4321 497,-318.4321"/>
+<polygon fill="url(#l_48)" stroke="none" stroke-width="3" points="497,-318.4321 497,-359.4321 537,-359.4321 537,-318.4321 497,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-319.9321 498.5,-357.9321 535.5,-357.9321 535.5,-319.9321 498.5,-319.9321"/>
 <text text-anchor="start" x="510" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">57</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_49)" stroke="transparent" stroke-width="3" points="547,-318.4321 547,-359.4321 587,-359.4321 587,-318.4321 547,-318.4321"/>
+<polygon fill="url(#l_49)" stroke="none" stroke-width="3" points="547,-318.4321 547,-359.4321 587,-359.4321 587,-318.4321 547,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-319.9321 548.5,-357.9321 585.5,-357.9321 585.5,-319.9321 548.5,-319.9321"/>
 <text text-anchor="start" x="560" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">58</text>
-<polygon fill="#ff0000" stroke="transparent" stroke-width="3" points="147,-267.4321 147,-308.4321 187,-308.4321 187,-267.4321 147,-267.4321"/>
+<polygon fill="#ff0000" stroke="none" stroke-width="3" points="147,-267.4321 147,-308.4321 187,-308.4321 187,-267.4321 147,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-268.9321 148.5,-306.9321 185.5,-306.9321 185.5,-268.9321 148.5,-268.9321"/>
 <text text-anchor="start" x="160" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">60</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_50)" stroke="transparent" stroke-width="3" points="197,-267.4321 197,-308.4321 237,-308.4321 237,-267.4321 197,-267.4321"/>
+<polygon fill="url(#l_50)" stroke="none" stroke-width="3" points="197,-267.4321 197,-308.4321 237,-308.4321 237,-267.4321 197,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-268.9321 198.5,-306.9321 235.5,-306.9321 235.5,-268.9321 198.5,-268.9321"/>
 <text text-anchor="start" x="210" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">61</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_51)" stroke="transparent" stroke-width="3" points="247,-267.4321 247,-308.4321 287,-308.4321 287,-267.4321 247,-267.4321"/>
+<polygon fill="url(#l_51)" stroke="none" stroke-width="3" points="247,-267.4321 247,-308.4321 287,-308.4321 287,-267.4321 247,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-268.9321 248.5,-306.9321 285.5,-306.9321 285.5,-268.9321 248.5,-268.9321"/>
 <text text-anchor="start" x="260" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">62</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_52)" stroke="transparent" stroke-width="3" points="297,-267.4321 297,-308.4321 337,-308.4321 337,-267.4321 297,-267.4321"/>
+<polygon fill="url(#l_52)" stroke="none" stroke-width="3" points="297,-267.4321 297,-308.4321 337,-308.4321 337,-267.4321 297,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-268.9321 298.5,-306.9321 335.5,-306.9321 335.5,-268.9321 298.5,-268.9321"/>
 <text text-anchor="start" x="310" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">63</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_53)" stroke="transparent" stroke-width="3" points="347,-267.4321 347,-308.4321 387,-308.4321 387,-267.4321 347,-267.4321"/>
+<polygon fill="url(#l_53)" stroke="none" stroke-width="3" points="347,-267.4321 347,-308.4321 387,-308.4321 387,-267.4321 347,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-268.9321 348.5,-306.9321 385.5,-306.9321 385.5,-268.9321 348.5,-268.9321"/>
 <text text-anchor="start" x="360" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">64</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_54)" stroke="transparent" stroke-width="3" points="397,-267.4321 397,-308.4321 437,-308.4321 437,-267.4321 397,-267.4321"/>
+<polygon fill="url(#l_54)" stroke="none" stroke-width="3" points="397,-267.4321 397,-308.4321 437,-308.4321 437,-267.4321 397,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-268.9321 398.5,-306.9321 435.5,-306.9321 435.5,-268.9321 398.5,-268.9321"/>
 <text text-anchor="start" x="410" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">65</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_55)" stroke="transparent" stroke-width="3" points="447,-267.4321 447,-308.4321 487,-308.4321 487,-267.4321 447,-267.4321"/>
+<polygon fill="url(#l_55)" stroke="none" stroke-width="3" points="447,-267.4321 447,-308.4321 487,-308.4321 487,-267.4321 447,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-268.9321 448.5,-306.9321 485.5,-306.9321 485.5,-268.9321 448.5,-268.9321"/>
 <text text-anchor="start" x="460" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">66</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_56)" stroke="transparent" stroke-width="3" points="497,-267.4321 497,-308.4321 537,-308.4321 537,-267.4321 497,-267.4321"/>
+<polygon fill="url(#l_56)" stroke="none" stroke-width="3" points="497,-267.4321 497,-308.4321 537,-308.4321 537,-267.4321 497,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-268.9321 498.5,-306.9321 535.5,-306.9321 535.5,-268.9321 498.5,-268.9321"/>
 <text text-anchor="start" x="510" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">67</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_57)" stroke="transparent" stroke-width="3" points="547,-267.4321 547,-308.4321 587,-308.4321 587,-267.4321 547,-267.4321"/>
+<polygon fill="url(#l_57)" stroke="none" stroke-width="3" points="547,-267.4321 547,-308.4321 587,-308.4321 587,-267.4321 547,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-268.9321 548.5,-306.9321 585.5,-306.9321 585.5,-268.9321 548.5,-268.9321"/>
 <text text-anchor="start" x="560" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">68</text>
 <defs>
 <stop offset="1" style="stop-color:#a52a2a;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_58)" stroke="transparent" stroke-width="3" points="147,-216.4321 147,-257.4321 187,-257.4321 187,-216.4321 147,-216.4321"/>
+<polygon fill="url(#l_58)" stroke="none" stroke-width="3" points="147,-216.4321 147,-257.4321 187,-257.4321 187,-216.4321 147,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-217.9321 148.5,-255.9321 185.5,-255.9321 185.5,-217.9321 148.5,-217.9321"/>
 <text text-anchor="start" x="160" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">70</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_59)" stroke="transparent" stroke-width="3" points="197,-216.4321 197,-257.4321 237,-257.4321 237,-216.4321 197,-216.4321"/>
+<polygon fill="url(#l_59)" stroke="none" stroke-width="3" points="197,-216.4321 197,-257.4321 237,-257.4321 237,-216.4321 197,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-217.9321 198.5,-255.9321 235.5,-255.9321 235.5,-217.9321 198.5,-217.9321"/>
 <text text-anchor="start" x="210" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">71</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_60)" stroke="transparent" stroke-width="3" points="247,-216.4321 247,-257.4321 287,-257.4321 287,-216.4321 247,-216.4321"/>
+<polygon fill="url(#l_60)" stroke="none" stroke-width="3" points="247,-216.4321 247,-257.4321 287,-257.4321 287,-216.4321 247,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-217.9321 248.5,-255.9321 285.5,-255.9321 285.5,-217.9321 248.5,-217.9321"/>
 <text text-anchor="start" x="260" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">72</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_61)" stroke="transparent" stroke-width="3" points="297,-216.4321 297,-257.4321 337,-257.4321 337,-216.4321 297,-216.4321"/>
+<polygon fill="url(#l_61)" stroke="none" stroke-width="3" points="297,-216.4321 297,-257.4321 337,-257.4321 337,-216.4321 297,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-217.9321 298.5,-255.9321 335.5,-255.9321 335.5,-217.9321 298.5,-217.9321"/>
 <text text-anchor="start" x="310" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">73</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_62)" stroke="transparent" stroke-width="3" points="347,-216.4321 347,-257.4321 387,-257.4321 387,-216.4321 347,-216.4321"/>
+<polygon fill="url(#l_62)" stroke="none" stroke-width="3" points="347,-216.4321 347,-257.4321 387,-257.4321 387,-216.4321 347,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-217.9321 348.5,-255.9321 385.5,-255.9321 385.5,-217.9321 348.5,-217.9321"/>
 <text text-anchor="start" x="360" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">74</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_63)" stroke="transparent" stroke-width="3" points="397,-216.4321 397,-257.4321 437,-257.4321 437,-216.4321 397,-216.4321"/>
+<polygon fill="url(#l_63)" stroke="none" stroke-width="3" points="397,-216.4321 397,-257.4321 437,-257.4321 437,-216.4321 397,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-217.9321 398.5,-255.9321 435.5,-255.9321 435.5,-217.9321 398.5,-217.9321"/>
 <text text-anchor="start" x="410" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">75</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_64)" stroke="transparent" stroke-width="3" points="447,-216.4321 447,-257.4321 487,-257.4321 487,-216.4321 447,-216.4321"/>
+<polygon fill="url(#l_64)" stroke="none" stroke-width="3" points="447,-216.4321 447,-257.4321 487,-257.4321 487,-216.4321 447,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-217.9321 448.5,-255.9321 485.5,-255.9321 485.5,-217.9321 448.5,-217.9321"/>
 <text text-anchor="start" x="460" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">76</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_65)" stroke="transparent" stroke-width="3" points="497,-216.4321 497,-257.4321 537,-257.4321 537,-216.4321 497,-216.4321"/>
+<polygon fill="url(#l_65)" stroke="none" stroke-width="3" points="497,-216.4321 497,-257.4321 537,-257.4321 537,-216.4321 497,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-217.9321 498.5,-255.9321 535.5,-255.9321 535.5,-217.9321 498.5,-217.9321"/>
 <text text-anchor="start" x="510" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">77</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_66)" stroke="transparent" stroke-width="3" points="547,-216.4321 547,-257.4321 587,-257.4321 587,-216.4321 547,-216.4321"/>
+<polygon fill="url(#l_66)" stroke="none" stroke-width="3" points="547,-216.4321 547,-257.4321 587,-257.4321 587,-216.4321 547,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-217.9321 548.5,-255.9321 585.5,-255.9321 585.5,-217.9321 548.5,-217.9321"/>
 <text text-anchor="start" x="560" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">78</text>
-<polygon fill="#a52a2a" stroke="transparent" stroke-width="3" points="147,-165.4321 147,-206.4321 187,-206.4321 187,-165.4321 147,-165.4321"/>
+<polygon fill="#a52a2a" stroke="none" stroke-width="3" points="147,-165.4321 147,-206.4321 187,-206.4321 187,-165.4321 147,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-166.9321 148.5,-204.9321 185.5,-204.9321 185.5,-166.9321 148.5,-166.9321"/>
 <text text-anchor="start" x="160" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">80</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_67)" stroke="transparent" stroke-width="3" points="197,-165.4321 197,-206.4321 237,-206.4321 237,-165.4321 197,-165.4321"/>
+<polygon fill="url(#l_67)" stroke="none" stroke-width="3" points="197,-165.4321 197,-206.4321 237,-206.4321 237,-165.4321 197,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-166.9321 198.5,-204.9321 235.5,-204.9321 235.5,-166.9321 198.5,-166.9321"/>
 <text text-anchor="start" x="210" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">81</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_68)" stroke="transparent" stroke-width="3" points="247,-165.4321 247,-206.4321 287,-206.4321 287,-165.4321 247,-165.4321"/>
+<polygon fill="url(#l_68)" stroke="none" stroke-width="3" points="247,-165.4321 247,-206.4321 287,-206.4321 287,-165.4321 247,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-166.9321 248.5,-204.9321 285.5,-204.9321 285.5,-166.9321 248.5,-166.9321"/>
 <text text-anchor="start" x="260" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">82</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_69)" stroke="transparent" stroke-width="3" points="297,-165.4321 297,-206.4321 337,-206.4321 337,-165.4321 297,-165.4321"/>
+<polygon fill="url(#l_69)" stroke="none" stroke-width="3" points="297,-165.4321 297,-206.4321 337,-206.4321 337,-165.4321 297,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-166.9321 298.5,-204.9321 335.5,-204.9321 335.5,-166.9321 298.5,-166.9321"/>
 <text text-anchor="start" x="310" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">83</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_70)" stroke="transparent" stroke-width="3" points="347,-165.4321 347,-206.4321 387,-206.4321 387,-165.4321 347,-165.4321"/>
+<polygon fill="url(#l_70)" stroke="none" stroke-width="3" points="347,-165.4321 347,-206.4321 387,-206.4321 387,-165.4321 347,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-166.9321 348.5,-204.9321 385.5,-204.9321 385.5,-166.9321 348.5,-166.9321"/>
 <text text-anchor="start" x="360" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">84</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_71)" stroke="transparent" stroke-width="3" points="397,-165.4321 397,-206.4321 437,-206.4321 437,-165.4321 397,-165.4321"/>
+<polygon fill="url(#l_71)" stroke="none" stroke-width="3" points="397,-165.4321 397,-206.4321 437,-206.4321 437,-165.4321 397,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-166.9321 398.5,-204.9321 435.5,-204.9321 435.5,-166.9321 398.5,-166.9321"/>
 <text text-anchor="start" x="410" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">85</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_72)" stroke="transparent" stroke-width="3" points="447,-165.4321 447,-206.4321 487,-206.4321 487,-165.4321 447,-165.4321"/>
+<polygon fill="url(#l_72)" stroke="none" stroke-width="3" points="447,-165.4321 447,-206.4321 487,-206.4321 487,-165.4321 447,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-166.9321 448.5,-204.9321 485.5,-204.9321 485.5,-166.9321 448.5,-166.9321"/>
 <text text-anchor="start" x="460" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">86</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_73)" stroke="transparent" stroke-width="3" points="497,-165.4321 497,-206.4321 537,-206.4321 537,-165.4321 497,-165.4321"/>
+<polygon fill="url(#l_73)" stroke="none" stroke-width="3" points="497,-165.4321 497,-206.4321 537,-206.4321 537,-165.4321 497,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-166.9321 498.5,-204.9321 535.5,-204.9321 535.5,-166.9321 498.5,-166.9321"/>
 <text text-anchor="start" x="510" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">87</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_74)" stroke="transparent" stroke-width="3" points="547,-165.4321 547,-206.4321 587,-206.4321 587,-165.4321 547,-165.4321"/>
+<polygon fill="url(#l_74)" stroke="none" stroke-width="3" points="547,-165.4321 547,-206.4321 587,-206.4321 587,-165.4321 547,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-166.9321 548.5,-204.9321 585.5,-204.9321 585.5,-166.9321 548.5,-166.9321"/>
 <text text-anchor="start" x="560" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">88</text>
 <path fill="none" stroke="#000000" stroke-width="10" d="M144,-150.9321C144,-150.9321 590,-150.9321 590,-150.9321 596,-150.9321 602,-156.9321 602,-162.9321 602,-162.9321 602,-617.9321 602,-617.9321 602,-623.9321 596,-629.9321 590,-629.9321 590,-629.9321 144,-629.9321 144,-629.9321 138,-629.9321 132,-623.9321 132,-617.9321 132,-617.9321 132,-162.9321 132,-162.9321 132,-156.9321 138,-150.9321 144,-150.9321"/>
index 3211015f6946e844025c9c42001cfc0433f2bcf7..2f4447ced8a36f13b8b671e8b907f24303cd2c1d 100644 (file)
@@ -14,7 +14,7 @@
 <stop offset="1" style="stop-color:#ffc0cb;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_0)" stroke="transparent" points="-4,4 -4,-784.8641 738,-784.8641 738,4 -4,4"/>
+<polygon fill="url(#l_0)" stroke="none" points="-4,4 -4,-784.8641 738,-784.8641 738,4 -4,4"/>
 <text text-anchor="middle" x="367" y="-7.8" font-family="Times,serif" font-size="14.00" fill="#ffffff">Graph</text>
 <g id="clust1" class="cluster">
 <title>cluster1</title>
@@ -43,8 +43,8 @@
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<path fill="url(#l_2)" stroke="transparent" d="M144,-150.9321C144,-150.9321 590,-150.9321 590,-150.9321 596,-150.9321 602,-156.9321 602,-162.9321 602,-162.9321 602,-617.9321 602,-617.9321 602,-623.9321 596,-629.9321 590,-629.9321 590,-629.9321 144,-629.9321 144,-629.9321 138,-629.9321 132,-623.9321 132,-617.9321 132,-617.9321 132,-162.9321 132,-162.9321 132,-156.9321 138,-150.9321 144,-150.9321"/>
-<polygon fill="#ffff00" stroke="transparent" points="147,-573.4321 147,-614.4321 187,-614.4321 187,-573.4321 147,-573.4321"/>
+<path fill="url(#l_2)" stroke="none" d="M144,-150.9321C144,-150.9321 590,-150.9321 590,-150.9321 596,-150.9321 602,-156.9321 602,-162.9321 602,-162.9321 602,-617.9321 602,-617.9321 602,-623.9321 596,-629.9321 590,-629.9321 590,-629.9321 144,-629.9321 144,-629.9321 138,-629.9321 132,-623.9321 132,-617.9321 132,-617.9321 132,-162.9321 132,-162.9321 132,-156.9321 138,-150.9321 144,-150.9321"/>
+<polygon fill="#ffff00" stroke="none" points="147,-573.4321 147,-614.4321 187,-614.4321 187,-573.4321 147,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-574.9321 148.5,-612.9321 185.5,-612.9321 185.5,-574.9321 148.5,-574.9321"/>
 <text text-anchor="start" x="160" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">00</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_3)" stroke="transparent" stroke-width="3" points="197,-573.4321 197,-614.4321 237,-614.4321 237,-573.4321 197,-573.4321"/>
+<polygon fill="url(#l_3)" stroke="none" stroke-width="3" points="197,-573.4321 197,-614.4321 237,-614.4321 237,-573.4321 197,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-574.9321 198.5,-612.9321 235.5,-612.9321 235.5,-574.9321 198.5,-574.9321"/>
 <text text-anchor="start" x="210" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">01</text>
-<polygon fill="#00ff00" stroke="transparent" stroke-width="3" points="247,-573.4321 247,-614.4321 287,-614.4321 287,-573.4321 247,-573.4321"/>
+<polygon fill="#00ff00" stroke="none" stroke-width="3" points="247,-573.4321 247,-614.4321 287,-614.4321 287,-573.4321 247,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-574.9321 248.5,-612.9321 285.5,-612.9321 285.5,-574.9321 248.5,-574.9321"/>
 <text text-anchor="start" x="260" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">02</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_4)" stroke="transparent" stroke-width="3" points="297,-573.4321 297,-614.4321 337,-614.4321 337,-573.4321 297,-573.4321"/>
+<polygon fill="url(#l_4)" stroke="none" stroke-width="3" points="297,-573.4321 297,-614.4321 337,-614.4321 337,-573.4321 297,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-574.9321 298.5,-612.9321 335.5,-612.9321 335.5,-574.9321 298.5,-574.9321"/>
 <text text-anchor="start" x="310" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">03</text>
-<polygon fill="#0000ff" stroke="transparent" stroke-width="3" points="347,-573.4321 347,-614.4321 387,-614.4321 387,-573.4321 347,-573.4321"/>
+<polygon fill="#0000ff" stroke="none" stroke-width="3" points="347,-573.4321 347,-614.4321 387,-614.4321 387,-573.4321 347,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-574.9321 348.5,-612.9321 385.5,-612.9321 385.5,-574.9321 348.5,-574.9321"/>
 <text text-anchor="start" x="360" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">04</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_5)" stroke="transparent" stroke-width="3" points="397,-573.4321 397,-614.4321 437,-614.4321 437,-573.4321 397,-573.4321"/>
+<polygon fill="url(#l_5)" stroke="none" stroke-width="3" points="397,-573.4321 397,-614.4321 437,-614.4321 437,-573.4321 397,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-574.9321 398.5,-612.9321 435.5,-612.9321 435.5,-574.9321 398.5,-574.9321"/>
 <text text-anchor="start" x="410" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">05</text>
-<polygon fill="#a020f0" stroke="transparent" stroke-width="3" points="447,-573.4321 447,-614.4321 487,-614.4321 487,-573.4321 447,-573.4321"/>
+<polygon fill="#a020f0" stroke="none" stroke-width="3" points="447,-573.4321 447,-614.4321 487,-614.4321 487,-573.4321 447,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-574.9321 448.5,-612.9321 485.5,-612.9321 485.5,-574.9321 448.5,-574.9321"/>
 <text text-anchor="start" x="460" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">06</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_6)" stroke="transparent" stroke-width="3" points="497,-573.4321 497,-614.4321 537,-614.4321 537,-573.4321 497,-573.4321"/>
+<polygon fill="url(#l_6)" stroke="none" stroke-width="3" points="497,-573.4321 497,-614.4321 537,-614.4321 537,-573.4321 497,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-574.9321 498.5,-612.9321 535.5,-612.9321 535.5,-574.9321 498.5,-574.9321"/>
 <text text-anchor="start" x="510" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">07</text>
-<polygon fill="#ee82ee" stroke="transparent" stroke-width="3" points="547,-573.4321 547,-614.4321 587,-614.4321 587,-573.4321 547,-573.4321"/>
+<polygon fill="#ee82ee" stroke="none" stroke-width="3" points="547,-573.4321 547,-614.4321 587,-614.4321 587,-573.4321 547,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-574.9321 548.5,-612.9321 585.5,-612.9321 585.5,-574.9321 548.5,-574.9321"/>
 <text text-anchor="start" x="560" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">08</text>
 <defs>
 <stop offset="1" style="stop-color:#ffd700;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_7)" stroke="transparent" stroke-width="3" points="147,-522.4321 147,-563.4321 187,-563.4321 187,-522.4321 147,-522.4321"/>
+<polygon fill="url(#l_7)" stroke="none" stroke-width="3" points="147,-522.4321 147,-563.4321 187,-563.4321 187,-522.4321 147,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-523.9321 148.5,-561.9321 185.5,-561.9321 185.5,-523.9321 148.5,-523.9321"/>
 <text text-anchor="start" x="160" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">10</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_8)" stroke="transparent" stroke-width="3" points="197,-522.4321 197,-563.4321 237,-563.4321 237,-522.4321 197,-522.4321"/>
+<polygon fill="url(#l_8)" stroke="none" stroke-width="3" points="197,-522.4321 197,-563.4321 237,-563.4321 237,-522.4321 197,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-523.9321 198.5,-561.9321 235.5,-561.9321 235.5,-523.9321 198.5,-523.9321"/>
 <text text-anchor="start" x="210" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">11</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_9)" stroke="transparent" stroke-width="3" points="247,-522.4321 247,-563.4321 287,-563.4321 287,-522.4321 247,-522.4321"/>
+<polygon fill="url(#l_9)" stroke="none" stroke-width="3" points="247,-522.4321 247,-563.4321 287,-563.4321 287,-522.4321 247,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-523.9321 248.5,-561.9321 285.5,-561.9321 285.5,-523.9321 248.5,-523.9321"/>
 <text text-anchor="start" x="260" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">12</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_10)" stroke="transparent" stroke-width="3" points="297,-522.4321 297,-563.4321 337,-563.4321 337,-522.4321 297,-522.4321"/>
+<polygon fill="url(#l_10)" stroke="none" stroke-width="3" points="297,-522.4321 297,-563.4321 337,-563.4321 337,-522.4321 297,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-523.9321 298.5,-561.9321 335.5,-561.9321 335.5,-523.9321 298.5,-523.9321"/>
 <text text-anchor="start" x="310" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">13</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_11)" stroke="transparent" stroke-width="3" points="347,-522.4321 347,-563.4321 387,-563.4321 387,-522.4321 347,-522.4321"/>
+<polygon fill="url(#l_11)" stroke="none" stroke-width="3" points="347,-522.4321 347,-563.4321 387,-563.4321 387,-522.4321 347,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-523.9321 348.5,-561.9321 385.5,-561.9321 385.5,-523.9321 348.5,-523.9321"/>
 <text text-anchor="start" x="360" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">14</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_12)" stroke="transparent" stroke-width="3" points="397,-522.4321 397,-563.4321 437,-563.4321 437,-522.4321 397,-522.4321"/>
+<polygon fill="url(#l_12)" stroke="none" stroke-width="3" points="397,-522.4321 397,-563.4321 437,-563.4321 437,-522.4321 397,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-523.9321 398.5,-561.9321 435.5,-561.9321 435.5,-523.9321 398.5,-523.9321"/>
 <text text-anchor="start" x="410" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">15</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_13)" stroke="transparent" stroke-width="3" points="447,-522.4321 447,-563.4321 487,-563.4321 487,-522.4321 447,-522.4321"/>
+<polygon fill="url(#l_13)" stroke="none" stroke-width="3" points="447,-522.4321 447,-563.4321 487,-563.4321 487,-522.4321 447,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-523.9321 448.5,-561.9321 485.5,-561.9321 485.5,-523.9321 448.5,-523.9321"/>
 <text text-anchor="start" x="460" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">16</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_14)" stroke="transparent" stroke-width="3" points="497,-522.4321 497,-563.4321 537,-563.4321 537,-522.4321 497,-522.4321"/>
+<polygon fill="url(#l_14)" stroke="none" stroke-width="3" points="497,-522.4321 497,-563.4321 537,-563.4321 537,-522.4321 497,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-523.9321 498.5,-561.9321 535.5,-561.9321 535.5,-523.9321 498.5,-523.9321"/>
 <text text-anchor="start" x="510" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">17</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_15)" stroke="transparent" stroke-width="3" points="547,-522.4321 547,-563.4321 587,-563.4321 587,-522.4321 547,-522.4321"/>
+<polygon fill="url(#l_15)" stroke="none" stroke-width="3" points="547,-522.4321 547,-563.4321 587,-563.4321 587,-522.4321 547,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-523.9321 548.5,-561.9321 585.5,-561.9321 585.5,-523.9321 548.5,-523.9321"/>
 <text text-anchor="start" x="560" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">18</text>
-<polygon fill="#ffd700" stroke="transparent" stroke-width="3" points="147,-471.4321 147,-512.4321 187,-512.4321 187,-471.4321 147,-471.4321"/>
+<polygon fill="#ffd700" stroke="none" stroke-width="3" points="147,-471.4321 147,-512.4321 187,-512.4321 187,-471.4321 147,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-472.9321 148.5,-510.9321 185.5,-510.9321 185.5,-472.9321 148.5,-472.9321"/>
 <text text-anchor="start" x="160" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">20</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_16)" stroke="transparent" stroke-width="3" points="197,-471.4321 197,-512.4321 237,-512.4321 237,-471.4321 197,-471.4321"/>
+<polygon fill="url(#l_16)" stroke="none" stroke-width="3" points="197,-471.4321 197,-512.4321 237,-512.4321 237,-471.4321 197,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-472.9321 198.5,-510.9321 235.5,-510.9321 235.5,-472.9321 198.5,-472.9321"/>
 <text text-anchor="start" x="210" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">21</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_17)" stroke="transparent" stroke-width="3" points="247,-471.4321 247,-512.4321 287,-512.4321 287,-471.4321 247,-471.4321"/>
+<polygon fill="url(#l_17)" stroke="none" stroke-width="3" points="247,-471.4321 247,-512.4321 287,-512.4321 287,-471.4321 247,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-472.9321 248.5,-510.9321 285.5,-510.9321 285.5,-472.9321 248.5,-472.9321"/>
 <text text-anchor="start" x="260" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">22</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_18)" stroke="transparent" stroke-width="3" points="297,-471.4321 297,-512.4321 337,-512.4321 337,-471.4321 297,-471.4321"/>
+<polygon fill="url(#l_18)" stroke="none" stroke-width="3" points="297,-471.4321 297,-512.4321 337,-512.4321 337,-471.4321 297,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-472.9321 298.5,-510.9321 335.5,-510.9321 335.5,-472.9321 298.5,-472.9321"/>
 <text text-anchor="start" x="310" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">23</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_19)" stroke="transparent" stroke-width="3" points="347,-471.4321 347,-512.4321 387,-512.4321 387,-471.4321 347,-471.4321"/>
+<polygon fill="url(#l_19)" stroke="none" stroke-width="3" points="347,-471.4321 347,-512.4321 387,-512.4321 387,-471.4321 347,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-472.9321 348.5,-510.9321 385.5,-510.9321 385.5,-472.9321 348.5,-472.9321"/>
 <text text-anchor="start" x="360" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">24</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_20)" stroke="transparent" stroke-width="3" points="397,-471.4321 397,-512.4321 437,-512.4321 437,-471.4321 397,-471.4321"/>
+<polygon fill="url(#l_20)" stroke="none" stroke-width="3" points="397,-471.4321 397,-512.4321 437,-512.4321 437,-471.4321 397,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-472.9321 398.5,-510.9321 435.5,-510.9321 435.5,-472.9321 398.5,-472.9321"/>
 <text text-anchor="start" x="410" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">25</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_21)" stroke="transparent" stroke-width="3" points="447,-471.4321 447,-512.4321 487,-512.4321 487,-471.4321 447,-471.4321"/>
+<polygon fill="url(#l_21)" stroke="none" stroke-width="3" points="447,-471.4321 447,-512.4321 487,-512.4321 487,-471.4321 447,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-472.9321 448.5,-510.9321 485.5,-510.9321 485.5,-472.9321 448.5,-472.9321"/>
 <text text-anchor="start" x="460" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">26</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_22)" stroke="transparent" stroke-width="3" points="497,-471.4321 497,-512.4321 537,-512.4321 537,-471.4321 497,-471.4321"/>
+<polygon fill="url(#l_22)" stroke="none" stroke-width="3" points="497,-471.4321 497,-512.4321 537,-512.4321 537,-471.4321 497,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-472.9321 498.5,-510.9321 535.5,-510.9321 535.5,-472.9321 498.5,-472.9321"/>
 <text text-anchor="start" x="510" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">27</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_23)" stroke="transparent" stroke-width="3" points="547,-471.4321 547,-512.4321 587,-512.4321 587,-471.4321 547,-471.4321"/>
+<polygon fill="url(#l_23)" stroke="none" stroke-width="3" points="547,-471.4321 547,-512.4321 587,-512.4321 587,-471.4321 547,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-472.9321 548.5,-510.9321 585.5,-510.9321 585.5,-472.9321 548.5,-472.9321"/>
 <text text-anchor="start" x="560" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">28</text>
 <defs>
 <stop offset="1" style="stop-color:#ffa500;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_24)" stroke="transparent" stroke-width="3" points="147,-420.4321 147,-461.4321 187,-461.4321 187,-420.4321 147,-420.4321"/>
+<polygon fill="url(#l_24)" stroke="none" stroke-width="3" points="147,-420.4321 147,-461.4321 187,-461.4321 187,-420.4321 147,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-421.9321 148.5,-459.9321 185.5,-459.9321 185.5,-421.9321 148.5,-421.9321"/>
 <text text-anchor="start" x="160" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">30</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_25)" stroke="transparent" stroke-width="3" points="197,-420.4321 197,-461.4321 237,-461.4321 237,-420.4321 197,-420.4321"/>
+<polygon fill="url(#l_25)" stroke="none" stroke-width="3" points="197,-420.4321 197,-461.4321 237,-461.4321 237,-420.4321 197,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-421.9321 198.5,-459.9321 235.5,-459.9321 235.5,-421.9321 198.5,-421.9321"/>
 <text text-anchor="start" x="210" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">31</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_26)" stroke="transparent" stroke-width="3" points="247,-420.4321 247,-461.4321 287,-461.4321 287,-420.4321 247,-420.4321"/>
+<polygon fill="url(#l_26)" stroke="none" stroke-width="3" points="247,-420.4321 247,-461.4321 287,-461.4321 287,-420.4321 247,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-421.9321 248.5,-459.9321 285.5,-459.9321 285.5,-421.9321 248.5,-421.9321"/>
 <text text-anchor="start" x="260" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">32</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_27)" stroke="transparent" stroke-width="3" points="297,-420.4321 297,-461.4321 337,-461.4321 337,-420.4321 297,-420.4321"/>
+<polygon fill="url(#l_27)" stroke="none" stroke-width="3" points="297,-420.4321 297,-461.4321 337,-461.4321 337,-420.4321 297,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-421.9321 298.5,-459.9321 335.5,-459.9321 335.5,-421.9321 298.5,-421.9321"/>
 <text text-anchor="start" x="310" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">33</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_28)" stroke="transparent" stroke-width="3" points="347,-420.4321 347,-461.4321 387,-461.4321 387,-420.4321 347,-420.4321"/>
+<polygon fill="url(#l_28)" stroke="none" stroke-width="3" points="347,-420.4321 347,-461.4321 387,-461.4321 387,-420.4321 347,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-421.9321 348.5,-459.9321 385.5,-459.9321 385.5,-421.9321 348.5,-421.9321"/>
 <text text-anchor="start" x="360" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">34</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_29)" stroke="transparent" stroke-width="3" points="397,-420.4321 397,-461.4321 437,-461.4321 437,-420.4321 397,-420.4321"/>
+<polygon fill="url(#l_29)" stroke="none" stroke-width="3" points="397,-420.4321 397,-461.4321 437,-461.4321 437,-420.4321 397,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-421.9321 398.5,-459.9321 435.5,-459.9321 435.5,-421.9321 398.5,-421.9321"/>
 <text text-anchor="start" x="410" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">35</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_30)" stroke="transparent" stroke-width="3" points="447,-420.4321 447,-461.4321 487,-461.4321 487,-420.4321 447,-420.4321"/>
+<polygon fill="url(#l_30)" stroke="none" stroke-width="3" points="447,-420.4321 447,-461.4321 487,-461.4321 487,-420.4321 447,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-421.9321 448.5,-459.9321 485.5,-459.9321 485.5,-421.9321 448.5,-421.9321"/>
 <text text-anchor="start" x="460" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">36</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_31)" stroke="transparent" stroke-width="3" points="497,-420.4321 497,-461.4321 537,-461.4321 537,-420.4321 497,-420.4321"/>
+<polygon fill="url(#l_31)" stroke="none" stroke-width="3" points="497,-420.4321 497,-461.4321 537,-461.4321 537,-420.4321 497,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-421.9321 498.5,-459.9321 535.5,-459.9321 535.5,-421.9321 498.5,-421.9321"/>
 <text text-anchor="start" x="510" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">37</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_32)" stroke="transparent" stroke-width="3" points="547,-420.4321 547,-461.4321 587,-461.4321 587,-420.4321 547,-420.4321"/>
+<polygon fill="url(#l_32)" stroke="none" stroke-width="3" points="547,-420.4321 547,-461.4321 587,-461.4321 587,-420.4321 547,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-421.9321 548.5,-459.9321 585.5,-459.9321 585.5,-421.9321 548.5,-421.9321"/>
 <text text-anchor="start" x="560" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">38</text>
-<polygon fill="#ffa500" stroke="transparent" stroke-width="3" points="147,-369.4321 147,-410.4321 187,-410.4321 187,-369.4321 147,-369.4321"/>
+<polygon fill="#ffa500" stroke="none" stroke-width="3" points="147,-369.4321 147,-410.4321 187,-410.4321 187,-369.4321 147,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-370.9321 148.5,-408.9321 185.5,-408.9321 185.5,-370.9321 148.5,-370.9321"/>
 <text text-anchor="start" x="160" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">40</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_33)" stroke="transparent" stroke-width="3" points="197,-369.4321 197,-410.4321 237,-410.4321 237,-369.4321 197,-369.4321"/>
+<polygon fill="url(#l_33)" stroke="none" stroke-width="3" points="197,-369.4321 197,-410.4321 237,-410.4321 237,-369.4321 197,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-370.9321 198.5,-408.9321 235.5,-408.9321 235.5,-370.9321 198.5,-370.9321"/>
 <text text-anchor="start" x="210" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">41</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_34)" stroke="transparent" stroke-width="3" points="247,-369.4321 247,-410.4321 287,-410.4321 287,-369.4321 247,-369.4321"/>
+<polygon fill="url(#l_34)" stroke="none" stroke-width="3" points="247,-369.4321 247,-410.4321 287,-410.4321 287,-369.4321 247,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-370.9321 248.5,-408.9321 285.5,-408.9321 285.5,-370.9321 248.5,-370.9321"/>
 <text text-anchor="start" x="260" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">42</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_35)" stroke="transparent" stroke-width="3" points="297,-369.4321 297,-410.4321 337,-410.4321 337,-369.4321 297,-369.4321"/>
+<polygon fill="url(#l_35)" stroke="none" stroke-width="3" points="297,-369.4321 297,-410.4321 337,-410.4321 337,-369.4321 297,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-370.9321 298.5,-408.9321 335.5,-408.9321 335.5,-370.9321 298.5,-370.9321"/>
 <text text-anchor="start" x="310" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">43</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_36)" stroke="transparent" stroke-width="3" points="347,-369.4321 347,-410.4321 387,-410.4321 387,-369.4321 347,-369.4321"/>
+<polygon fill="url(#l_36)" stroke="none" stroke-width="3" points="347,-369.4321 347,-410.4321 387,-410.4321 387,-369.4321 347,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-370.9321 348.5,-408.9321 385.5,-408.9321 385.5,-370.9321 348.5,-370.9321"/>
 <text text-anchor="start" x="360" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">44</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_37)" stroke="transparent" stroke-width="3" points="397,-369.4321 397,-410.4321 437,-410.4321 437,-369.4321 397,-369.4321"/>
+<polygon fill="url(#l_37)" stroke="none" stroke-width="3" points="397,-369.4321 397,-410.4321 437,-410.4321 437,-369.4321 397,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-370.9321 398.5,-408.9321 435.5,-408.9321 435.5,-370.9321 398.5,-370.9321"/>
 <text text-anchor="start" x="410" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">45</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_38)" stroke="transparent" stroke-width="3" points="447,-369.4321 447,-410.4321 487,-410.4321 487,-369.4321 447,-369.4321"/>
+<polygon fill="url(#l_38)" stroke="none" stroke-width="3" points="447,-369.4321 447,-410.4321 487,-410.4321 487,-369.4321 447,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-370.9321 448.5,-408.9321 485.5,-408.9321 485.5,-370.9321 448.5,-370.9321"/>
 <text text-anchor="start" x="460" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">46</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_39)" stroke="transparent" stroke-width="3" points="497,-369.4321 497,-410.4321 537,-410.4321 537,-369.4321 497,-369.4321"/>
+<polygon fill="url(#l_39)" stroke="none" stroke-width="3" points="497,-369.4321 497,-410.4321 537,-410.4321 537,-369.4321 497,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-370.9321 498.5,-408.9321 535.5,-408.9321 535.5,-370.9321 498.5,-370.9321"/>
 <text text-anchor="start" x="510" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">47</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_40)" stroke="transparent" stroke-width="3" points="547,-369.4321 547,-410.4321 587,-410.4321 587,-369.4321 547,-369.4321"/>
+<polygon fill="url(#l_40)" stroke="none" stroke-width="3" points="547,-369.4321 547,-410.4321 587,-410.4321 587,-369.4321 547,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-370.9321 548.5,-408.9321 585.5,-408.9321 585.5,-370.9321 548.5,-370.9321"/>
 <text text-anchor="start" x="560" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">48</text>
 <defs>
 <stop offset="1" style="stop-color:#ff0000;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_41)" stroke="transparent" stroke-width="3" points="147,-318.4321 147,-359.4321 187,-359.4321 187,-318.4321 147,-318.4321"/>
+<polygon fill="url(#l_41)" stroke="none" stroke-width="3" points="147,-318.4321 147,-359.4321 187,-359.4321 187,-318.4321 147,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-319.9321 148.5,-357.9321 185.5,-357.9321 185.5,-319.9321 148.5,-319.9321"/>
 <text text-anchor="start" x="160" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">50</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_42)" stroke="transparent" stroke-width="3" points="197,-318.4321 197,-359.4321 237,-359.4321 237,-318.4321 197,-318.4321"/>
+<polygon fill="url(#l_42)" stroke="none" stroke-width="3" points="197,-318.4321 197,-359.4321 237,-359.4321 237,-318.4321 197,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-319.9321 198.5,-357.9321 235.5,-357.9321 235.5,-319.9321 198.5,-319.9321"/>
 <text text-anchor="start" x="210" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">51</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_43)" stroke="transparent" stroke-width="3" points="247,-318.4321 247,-359.4321 287,-359.4321 287,-318.4321 247,-318.4321"/>
+<polygon fill="url(#l_43)" stroke="none" stroke-width="3" points="247,-318.4321 247,-359.4321 287,-359.4321 287,-318.4321 247,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-319.9321 248.5,-357.9321 285.5,-357.9321 285.5,-319.9321 248.5,-319.9321"/>
 <text text-anchor="start" x="260" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">52</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_44)" stroke="transparent" stroke-width="3" points="297,-318.4321 297,-359.4321 337,-359.4321 337,-318.4321 297,-318.4321"/>
+<polygon fill="url(#l_44)" stroke="none" stroke-width="3" points="297,-318.4321 297,-359.4321 337,-359.4321 337,-318.4321 297,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-319.9321 298.5,-357.9321 335.5,-357.9321 335.5,-319.9321 298.5,-319.9321"/>
 <text text-anchor="start" x="310" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">53</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_45)" stroke="transparent" stroke-width="3" points="347,-318.4321 347,-359.4321 387,-359.4321 387,-318.4321 347,-318.4321"/>
+<polygon fill="url(#l_45)" stroke="none" stroke-width="3" points="347,-318.4321 347,-359.4321 387,-359.4321 387,-318.4321 347,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-319.9321 348.5,-357.9321 385.5,-357.9321 385.5,-319.9321 348.5,-319.9321"/>
 <text text-anchor="start" x="360" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">54</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_46)" stroke="transparent" stroke-width="3" points="397,-318.4321 397,-359.4321 437,-359.4321 437,-318.4321 397,-318.4321"/>
+<polygon fill="url(#l_46)" stroke="none" stroke-width="3" points="397,-318.4321 397,-359.4321 437,-359.4321 437,-318.4321 397,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-319.9321 398.5,-357.9321 435.5,-357.9321 435.5,-319.9321 398.5,-319.9321"/>
 <text text-anchor="start" x="410" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">55</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_47)" stroke="transparent" stroke-width="3" points="447,-318.4321 447,-359.4321 487,-359.4321 487,-318.4321 447,-318.4321"/>
+<polygon fill="url(#l_47)" stroke="none" stroke-width="3" points="447,-318.4321 447,-359.4321 487,-359.4321 487,-318.4321 447,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-319.9321 448.5,-357.9321 485.5,-357.9321 485.5,-319.9321 448.5,-319.9321"/>
 <text text-anchor="start" x="460" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">56</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_48)" stroke="transparent" stroke-width="3" points="497,-318.4321 497,-359.4321 537,-359.4321 537,-318.4321 497,-318.4321"/>
+<polygon fill="url(#l_48)" stroke="none" stroke-width="3" points="497,-318.4321 497,-359.4321 537,-359.4321 537,-318.4321 497,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-319.9321 498.5,-357.9321 535.5,-357.9321 535.5,-319.9321 498.5,-319.9321"/>
 <text text-anchor="start" x="510" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">57</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_49)" stroke="transparent" stroke-width="3" points="547,-318.4321 547,-359.4321 587,-359.4321 587,-318.4321 547,-318.4321"/>
+<polygon fill="url(#l_49)" stroke="none" stroke-width="3" points="547,-318.4321 547,-359.4321 587,-359.4321 587,-318.4321 547,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-319.9321 548.5,-357.9321 585.5,-357.9321 585.5,-319.9321 548.5,-319.9321"/>
 <text text-anchor="start" x="560" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">58</text>
-<polygon fill="#ff0000" stroke="transparent" stroke-width="3" points="147,-267.4321 147,-308.4321 187,-308.4321 187,-267.4321 147,-267.4321"/>
+<polygon fill="#ff0000" stroke="none" stroke-width="3" points="147,-267.4321 147,-308.4321 187,-308.4321 187,-267.4321 147,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-268.9321 148.5,-306.9321 185.5,-306.9321 185.5,-268.9321 148.5,-268.9321"/>
 <text text-anchor="start" x="160" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">60</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_50)" stroke="transparent" stroke-width="3" points="197,-267.4321 197,-308.4321 237,-308.4321 237,-267.4321 197,-267.4321"/>
+<polygon fill="url(#l_50)" stroke="none" stroke-width="3" points="197,-267.4321 197,-308.4321 237,-308.4321 237,-267.4321 197,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-268.9321 198.5,-306.9321 235.5,-306.9321 235.5,-268.9321 198.5,-268.9321"/>
 <text text-anchor="start" x="210" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">61</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_51)" stroke="transparent" stroke-width="3" points="247,-267.4321 247,-308.4321 287,-308.4321 287,-267.4321 247,-267.4321"/>
+<polygon fill="url(#l_51)" stroke="none" stroke-width="3" points="247,-267.4321 247,-308.4321 287,-308.4321 287,-267.4321 247,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-268.9321 248.5,-306.9321 285.5,-306.9321 285.5,-268.9321 248.5,-268.9321"/>
 <text text-anchor="start" x="260" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">62</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_52)" stroke="transparent" stroke-width="3" points="297,-267.4321 297,-308.4321 337,-308.4321 337,-267.4321 297,-267.4321"/>
+<polygon fill="url(#l_52)" stroke="none" stroke-width="3" points="297,-267.4321 297,-308.4321 337,-308.4321 337,-267.4321 297,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-268.9321 298.5,-306.9321 335.5,-306.9321 335.5,-268.9321 298.5,-268.9321"/>
 <text text-anchor="start" x="310" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">63</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_53)" stroke="transparent" stroke-width="3" points="347,-267.4321 347,-308.4321 387,-308.4321 387,-267.4321 347,-267.4321"/>
+<polygon fill="url(#l_53)" stroke="none" stroke-width="3" points="347,-267.4321 347,-308.4321 387,-308.4321 387,-267.4321 347,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-268.9321 348.5,-306.9321 385.5,-306.9321 385.5,-268.9321 348.5,-268.9321"/>
 <text text-anchor="start" x="360" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">64</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_54)" stroke="transparent" stroke-width="3" points="397,-267.4321 397,-308.4321 437,-308.4321 437,-267.4321 397,-267.4321"/>
+<polygon fill="url(#l_54)" stroke="none" stroke-width="3" points="397,-267.4321 397,-308.4321 437,-308.4321 437,-267.4321 397,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-268.9321 398.5,-306.9321 435.5,-306.9321 435.5,-268.9321 398.5,-268.9321"/>
 <text text-anchor="start" x="410" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">65</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_55)" stroke="transparent" stroke-width="3" points="447,-267.4321 447,-308.4321 487,-308.4321 487,-267.4321 447,-267.4321"/>
+<polygon fill="url(#l_55)" stroke="none" stroke-width="3" points="447,-267.4321 447,-308.4321 487,-308.4321 487,-267.4321 447,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-268.9321 448.5,-306.9321 485.5,-306.9321 485.5,-268.9321 448.5,-268.9321"/>
 <text text-anchor="start" x="460" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">66</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_56)" stroke="transparent" stroke-width="3" points="497,-267.4321 497,-308.4321 537,-308.4321 537,-267.4321 497,-267.4321"/>
+<polygon fill="url(#l_56)" stroke="none" stroke-width="3" points="497,-267.4321 497,-308.4321 537,-308.4321 537,-267.4321 497,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-268.9321 498.5,-306.9321 535.5,-306.9321 535.5,-268.9321 498.5,-268.9321"/>
 <text text-anchor="start" x="510" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">67</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_57)" stroke="transparent" stroke-width="3" points="547,-267.4321 547,-308.4321 587,-308.4321 587,-267.4321 547,-267.4321"/>
+<polygon fill="url(#l_57)" stroke="none" stroke-width="3" points="547,-267.4321 547,-308.4321 587,-308.4321 587,-267.4321 547,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-268.9321 548.5,-306.9321 585.5,-306.9321 585.5,-268.9321 548.5,-268.9321"/>
 <text text-anchor="start" x="560" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">68</text>
 <defs>
 <stop offset="1" style="stop-color:#a52a2a;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_58)" stroke="transparent" stroke-width="3" points="147,-216.4321 147,-257.4321 187,-257.4321 187,-216.4321 147,-216.4321"/>
+<polygon fill="url(#l_58)" stroke="none" stroke-width="3" points="147,-216.4321 147,-257.4321 187,-257.4321 187,-216.4321 147,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-217.9321 148.5,-255.9321 185.5,-255.9321 185.5,-217.9321 148.5,-217.9321"/>
 <text text-anchor="start" x="160" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">70</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_59)" stroke="transparent" stroke-width="3" points="197,-216.4321 197,-257.4321 237,-257.4321 237,-216.4321 197,-216.4321"/>
+<polygon fill="url(#l_59)" stroke="none" stroke-width="3" points="197,-216.4321 197,-257.4321 237,-257.4321 237,-216.4321 197,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-217.9321 198.5,-255.9321 235.5,-255.9321 235.5,-217.9321 198.5,-217.9321"/>
 <text text-anchor="start" x="210" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">71</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_60)" stroke="transparent" stroke-width="3" points="247,-216.4321 247,-257.4321 287,-257.4321 287,-216.4321 247,-216.4321"/>
+<polygon fill="url(#l_60)" stroke="none" stroke-width="3" points="247,-216.4321 247,-257.4321 287,-257.4321 287,-216.4321 247,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-217.9321 248.5,-255.9321 285.5,-255.9321 285.5,-217.9321 248.5,-217.9321"/>
 <text text-anchor="start" x="260" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">72</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_61)" stroke="transparent" stroke-width="3" points="297,-216.4321 297,-257.4321 337,-257.4321 337,-216.4321 297,-216.4321"/>
+<polygon fill="url(#l_61)" stroke="none" stroke-width="3" points="297,-216.4321 297,-257.4321 337,-257.4321 337,-216.4321 297,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-217.9321 298.5,-255.9321 335.5,-255.9321 335.5,-217.9321 298.5,-217.9321"/>
 <text text-anchor="start" x="310" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">73</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_62)" stroke="transparent" stroke-width="3" points="347,-216.4321 347,-257.4321 387,-257.4321 387,-216.4321 347,-216.4321"/>
+<polygon fill="url(#l_62)" stroke="none" stroke-width="3" points="347,-216.4321 347,-257.4321 387,-257.4321 387,-216.4321 347,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-217.9321 348.5,-255.9321 385.5,-255.9321 385.5,-217.9321 348.5,-217.9321"/>
 <text text-anchor="start" x="360" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">74</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_63)" stroke="transparent" stroke-width="3" points="397,-216.4321 397,-257.4321 437,-257.4321 437,-216.4321 397,-216.4321"/>
+<polygon fill="url(#l_63)" stroke="none" stroke-width="3" points="397,-216.4321 397,-257.4321 437,-257.4321 437,-216.4321 397,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-217.9321 398.5,-255.9321 435.5,-255.9321 435.5,-217.9321 398.5,-217.9321"/>
 <text text-anchor="start" x="410" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">75</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_64)" stroke="transparent" stroke-width="3" points="447,-216.4321 447,-257.4321 487,-257.4321 487,-216.4321 447,-216.4321"/>
+<polygon fill="url(#l_64)" stroke="none" stroke-width="3" points="447,-216.4321 447,-257.4321 487,-257.4321 487,-216.4321 447,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-217.9321 448.5,-255.9321 485.5,-255.9321 485.5,-217.9321 448.5,-217.9321"/>
 <text text-anchor="start" x="460" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">76</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_65)" stroke="transparent" stroke-width="3" points="497,-216.4321 497,-257.4321 537,-257.4321 537,-216.4321 497,-216.4321"/>
+<polygon fill="url(#l_65)" stroke="none" stroke-width="3" points="497,-216.4321 497,-257.4321 537,-257.4321 537,-216.4321 497,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-217.9321 498.5,-255.9321 535.5,-255.9321 535.5,-217.9321 498.5,-217.9321"/>
 <text text-anchor="start" x="510" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">77</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_66)" stroke="transparent" stroke-width="3" points="547,-216.4321 547,-257.4321 587,-257.4321 587,-216.4321 547,-216.4321"/>
+<polygon fill="url(#l_66)" stroke="none" stroke-width="3" points="547,-216.4321 547,-257.4321 587,-257.4321 587,-216.4321 547,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-217.9321 548.5,-255.9321 585.5,-255.9321 585.5,-217.9321 548.5,-217.9321"/>
 <text text-anchor="start" x="560" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">78</text>
-<polygon fill="#a52a2a" stroke="transparent" stroke-width="3" points="147,-165.4321 147,-206.4321 187,-206.4321 187,-165.4321 147,-165.4321"/>
+<polygon fill="#a52a2a" stroke="none" stroke-width="3" points="147,-165.4321 147,-206.4321 187,-206.4321 187,-165.4321 147,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-166.9321 148.5,-204.9321 185.5,-204.9321 185.5,-166.9321 148.5,-166.9321"/>
 <text text-anchor="start" x="160" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">80</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_67)" stroke="transparent" stroke-width="3" points="197,-165.4321 197,-206.4321 237,-206.4321 237,-165.4321 197,-165.4321"/>
+<polygon fill="url(#l_67)" stroke="none" stroke-width="3" points="197,-165.4321 197,-206.4321 237,-206.4321 237,-165.4321 197,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-166.9321 198.5,-204.9321 235.5,-204.9321 235.5,-166.9321 198.5,-166.9321"/>
 <text text-anchor="start" x="210" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">81</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_68)" stroke="transparent" stroke-width="3" points="247,-165.4321 247,-206.4321 287,-206.4321 287,-165.4321 247,-165.4321"/>
+<polygon fill="url(#l_68)" stroke="none" stroke-width="3" points="247,-165.4321 247,-206.4321 287,-206.4321 287,-165.4321 247,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-166.9321 248.5,-204.9321 285.5,-204.9321 285.5,-166.9321 248.5,-166.9321"/>
 <text text-anchor="start" x="260" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">82</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_69)" stroke="transparent" stroke-width="3" points="297,-165.4321 297,-206.4321 337,-206.4321 337,-165.4321 297,-165.4321"/>
+<polygon fill="url(#l_69)" stroke="none" stroke-width="3" points="297,-165.4321 297,-206.4321 337,-206.4321 337,-165.4321 297,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-166.9321 298.5,-204.9321 335.5,-204.9321 335.5,-166.9321 298.5,-166.9321"/>
 <text text-anchor="start" x="310" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">83</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_70)" stroke="transparent" stroke-width="3" points="347,-165.4321 347,-206.4321 387,-206.4321 387,-165.4321 347,-165.4321"/>
+<polygon fill="url(#l_70)" stroke="none" stroke-width="3" points="347,-165.4321 347,-206.4321 387,-206.4321 387,-165.4321 347,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-166.9321 348.5,-204.9321 385.5,-204.9321 385.5,-166.9321 348.5,-166.9321"/>
 <text text-anchor="start" x="360" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">84</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_71)" stroke="transparent" stroke-width="3" points="397,-165.4321 397,-206.4321 437,-206.4321 437,-165.4321 397,-165.4321"/>
+<polygon fill="url(#l_71)" stroke="none" stroke-width="3" points="397,-165.4321 397,-206.4321 437,-206.4321 437,-165.4321 397,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-166.9321 398.5,-204.9321 435.5,-204.9321 435.5,-166.9321 398.5,-166.9321"/>
 <text text-anchor="start" x="410" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">85</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_72)" stroke="transparent" stroke-width="3" points="447,-165.4321 447,-206.4321 487,-206.4321 487,-165.4321 447,-165.4321"/>
+<polygon fill="url(#l_72)" stroke="none" stroke-width="3" points="447,-165.4321 447,-206.4321 487,-206.4321 487,-165.4321 447,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-166.9321 448.5,-204.9321 485.5,-204.9321 485.5,-166.9321 448.5,-166.9321"/>
 <text text-anchor="start" x="460" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">86</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_73)" stroke="transparent" stroke-width="3" points="497,-165.4321 497,-206.4321 537,-206.4321 537,-165.4321 497,-165.4321"/>
+<polygon fill="url(#l_73)" stroke="none" stroke-width="3" points="497,-165.4321 497,-206.4321 537,-206.4321 537,-165.4321 497,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-166.9321 498.5,-204.9321 535.5,-204.9321 535.5,-166.9321 498.5,-166.9321"/>
 <text text-anchor="start" x="510" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">87</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_74)" stroke="transparent" stroke-width="3" points="547,-165.4321 547,-206.4321 587,-206.4321 587,-165.4321 547,-165.4321"/>
+<polygon fill="url(#l_74)" stroke="none" stroke-width="3" points="547,-165.4321 547,-206.4321 587,-206.4321 587,-165.4321 547,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-166.9321 548.5,-204.9321 585.5,-204.9321 585.5,-166.9321 548.5,-166.9321"/>
 <text text-anchor="start" x="560" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">88</text>
 <path fill="none" stroke="#000000" stroke-width="10" d="M144,-150.9321C144,-150.9321 590,-150.9321 590,-150.9321 596,-150.9321 602,-156.9321 602,-162.9321 602,-162.9321 602,-617.9321 602,-617.9321 602,-623.9321 596,-629.9321 590,-629.9321 590,-629.9321 144,-629.9321 144,-629.9321 138,-629.9321 132,-623.9321 132,-617.9321 132,-617.9321 132,-162.9321 132,-162.9321 132,-156.9321 138,-150.9321 144,-150.9321"/>
index 208be053724964c1d74aab1801a9ecb24048e879..39836216c1490da1ba56cc250677f2bf9e41973c 100644 (file)
@@ -14,7 +14,7 @@
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_0)" stroke="transparent" points="-4,4 -4,-128 460,-128 460,4 -4,4"/>
+<polygon fill="url(#l_0)" stroke="none" points="-4,4 -4,-128 460,-128 460,4 -4,4"/>
 <text text-anchor="middle" x="228" y="-7.8" font-family="Times,serif" font-size="14.00" fill="#000000">Graph</text>
 <g id="clust1" class="cluster">
 <title>cluster_1</title>
index 784dbfbfc1560eec93c9173eaba859e61d1c74c3..6b068f2613205f08a21060e526ee8393742f31e7 100644 (file)
@@ -14,7 +14,7 @@
 <stop offset="1" style="stop-color:#ffc0cb;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_0)" stroke="transparent" points="-4,4 -4,-784.8641 738,-784.8641 738,4 -4,4"/>
+<polygon fill="url(#l_0)" stroke="none" points="-4,4 -4,-784.8641 738,-784.8641 738,4 -4,4"/>
 <text text-anchor="middle" x="367" y="-7.8" font-family="Times,serif" font-size="14.00" fill="#ffffff">Graph</text>
 <g id="clust1" class="cluster">
 <title>cluster1</title>
@@ -43,8 +43,8 @@
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<path fill="url(#l_2)" stroke="transparent" d="M144,-150.9321C144,-150.9321 590,-150.9321 590,-150.9321 596,-150.9321 602,-156.9321 602,-162.9321 602,-162.9321 602,-617.9321 602,-617.9321 602,-623.9321 596,-629.9321 590,-629.9321 590,-629.9321 144,-629.9321 144,-629.9321 138,-629.9321 132,-623.9321 132,-617.9321 132,-617.9321 132,-162.9321 132,-162.9321 132,-156.9321 138,-150.9321 144,-150.9321"/>
-<polygon fill="#ffff00" stroke="transparent" points="147,-573.4321 147,-614.4321 187,-614.4321 187,-573.4321 147,-573.4321"/>
+<path fill="url(#l_2)" stroke="none" d="M144,-150.9321C144,-150.9321 590,-150.9321 590,-150.9321 596,-150.9321 602,-156.9321 602,-162.9321 602,-162.9321 602,-617.9321 602,-617.9321 602,-623.9321 596,-629.9321 590,-629.9321 590,-629.9321 144,-629.9321 144,-629.9321 138,-629.9321 132,-623.9321 132,-617.9321 132,-617.9321 132,-162.9321 132,-162.9321 132,-156.9321 138,-150.9321 144,-150.9321"/>
+<polygon fill="#ffff00" stroke="none" points="147,-573.4321 147,-614.4321 187,-614.4321 187,-573.4321 147,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-574.9321 148.5,-612.9321 185.5,-612.9321 185.5,-574.9321 148.5,-574.9321"/>
 <text text-anchor="start" x="160" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">00</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_1)" stroke="transparent" stroke-width="3" points="197,-573.4321 197,-614.4321 237,-614.4321 237,-573.4321 197,-573.4321"/>
+<polygon fill="url(#r_1)" stroke="none" stroke-width="3" points="197,-573.4321 197,-614.4321 237,-614.4321 237,-573.4321 197,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-574.9321 198.5,-612.9321 235.5,-612.9321 235.5,-574.9321 198.5,-574.9321"/>
 <text text-anchor="start" x="210" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">01</text>
-<polygon fill="#00ff00" stroke="transparent" stroke-width="3" points="247,-573.4321 247,-614.4321 287,-614.4321 287,-573.4321 247,-573.4321"/>
+<polygon fill="#00ff00" stroke="none" stroke-width="3" points="247,-573.4321 247,-614.4321 287,-614.4321 287,-573.4321 247,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-574.9321 248.5,-612.9321 285.5,-612.9321 285.5,-574.9321 248.5,-574.9321"/>
 <text text-anchor="start" x="260" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">02</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_2)" stroke="transparent" stroke-width="3" points="297,-573.4321 297,-614.4321 337,-614.4321 337,-573.4321 297,-573.4321"/>
+<polygon fill="url(#r_2)" stroke="none" stroke-width="3" points="297,-573.4321 297,-614.4321 337,-614.4321 337,-573.4321 297,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-574.9321 298.5,-612.9321 335.5,-612.9321 335.5,-574.9321 298.5,-574.9321"/>
 <text text-anchor="start" x="310" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">03</text>
-<polygon fill="#0000ff" stroke="transparent" stroke-width="3" points="347,-573.4321 347,-614.4321 387,-614.4321 387,-573.4321 347,-573.4321"/>
+<polygon fill="#0000ff" stroke="none" stroke-width="3" points="347,-573.4321 347,-614.4321 387,-614.4321 387,-573.4321 347,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-574.9321 348.5,-612.9321 385.5,-612.9321 385.5,-574.9321 348.5,-574.9321"/>
 <text text-anchor="start" x="360" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">04</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_3)" stroke="transparent" stroke-width="3" points="397,-573.4321 397,-614.4321 437,-614.4321 437,-573.4321 397,-573.4321"/>
+<polygon fill="url(#r_3)" stroke="none" stroke-width="3" points="397,-573.4321 397,-614.4321 437,-614.4321 437,-573.4321 397,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-574.9321 398.5,-612.9321 435.5,-612.9321 435.5,-574.9321 398.5,-574.9321"/>
 <text text-anchor="start" x="410" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">05</text>
-<polygon fill="#a020f0" stroke="transparent" stroke-width="3" points="447,-573.4321 447,-614.4321 487,-614.4321 487,-573.4321 447,-573.4321"/>
+<polygon fill="#a020f0" stroke="none" stroke-width="3" points="447,-573.4321 447,-614.4321 487,-614.4321 487,-573.4321 447,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-574.9321 448.5,-612.9321 485.5,-612.9321 485.5,-574.9321 448.5,-574.9321"/>
 <text text-anchor="start" x="460" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">06</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_4)" stroke="transparent" stroke-width="3" points="497,-573.4321 497,-614.4321 537,-614.4321 537,-573.4321 497,-573.4321"/>
+<polygon fill="url(#r_4)" stroke="none" stroke-width="3" points="497,-573.4321 497,-614.4321 537,-614.4321 537,-573.4321 497,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-574.9321 498.5,-612.9321 535.5,-612.9321 535.5,-574.9321 498.5,-574.9321"/>
 <text text-anchor="start" x="510" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">07</text>
-<polygon fill="#ee82ee" stroke="transparent" stroke-width="3" points="547,-573.4321 547,-614.4321 587,-614.4321 587,-573.4321 547,-573.4321"/>
+<polygon fill="#ee82ee" stroke="none" stroke-width="3" points="547,-573.4321 547,-614.4321 587,-614.4321 587,-573.4321 547,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-574.9321 548.5,-612.9321 585.5,-612.9321 585.5,-574.9321 548.5,-574.9321"/>
 <text text-anchor="start" x="560" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">08</text>
 <defs>
 <stop offset="1" style="stop-color:#ffd700;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_5)" stroke="transparent" stroke-width="3" points="147,-522.4321 147,-563.4321 187,-563.4321 187,-522.4321 147,-522.4321"/>
+<polygon fill="url(#r_5)" stroke="none" stroke-width="3" points="147,-522.4321 147,-563.4321 187,-563.4321 187,-522.4321 147,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-523.9321 148.5,-561.9321 185.5,-561.9321 185.5,-523.9321 148.5,-523.9321"/>
 <text text-anchor="start" x="160" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">10</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_6)" stroke="transparent" stroke-width="3" points="197,-522.4321 197,-563.4321 237,-563.4321 237,-522.4321 197,-522.4321"/>
+<polygon fill="url(#r_6)" stroke="none" stroke-width="3" points="197,-522.4321 197,-563.4321 237,-563.4321 237,-522.4321 197,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-523.9321 198.5,-561.9321 235.5,-561.9321 235.5,-523.9321 198.5,-523.9321"/>
 <text text-anchor="start" x="210" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">11</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_7)" stroke="transparent" stroke-width="3" points="247,-522.4321 247,-563.4321 287,-563.4321 287,-522.4321 247,-522.4321"/>
+<polygon fill="url(#r_7)" stroke="none" stroke-width="3" points="247,-522.4321 247,-563.4321 287,-563.4321 287,-522.4321 247,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-523.9321 248.5,-561.9321 285.5,-561.9321 285.5,-523.9321 248.5,-523.9321"/>
 <text text-anchor="start" x="260" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">12</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_8)" stroke="transparent" stroke-width="3" points="297,-522.4321 297,-563.4321 337,-563.4321 337,-522.4321 297,-522.4321"/>
+<polygon fill="url(#r_8)" stroke="none" stroke-width="3" points="297,-522.4321 297,-563.4321 337,-563.4321 337,-522.4321 297,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-523.9321 298.5,-561.9321 335.5,-561.9321 335.5,-523.9321 298.5,-523.9321"/>
 <text text-anchor="start" x="310" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">13</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_9)" stroke="transparent" stroke-width="3" points="347,-522.4321 347,-563.4321 387,-563.4321 387,-522.4321 347,-522.4321"/>
+<polygon fill="url(#r_9)" stroke="none" stroke-width="3" points="347,-522.4321 347,-563.4321 387,-563.4321 387,-522.4321 347,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-523.9321 348.5,-561.9321 385.5,-561.9321 385.5,-523.9321 348.5,-523.9321"/>
 <text text-anchor="start" x="360" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">14</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_10)" stroke="transparent" stroke-width="3" points="397,-522.4321 397,-563.4321 437,-563.4321 437,-522.4321 397,-522.4321"/>
+<polygon fill="url(#r_10)" stroke="none" stroke-width="3" points="397,-522.4321 397,-563.4321 437,-563.4321 437,-522.4321 397,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-523.9321 398.5,-561.9321 435.5,-561.9321 435.5,-523.9321 398.5,-523.9321"/>
 <text text-anchor="start" x="410" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">15</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_11)" stroke="transparent" stroke-width="3" points="447,-522.4321 447,-563.4321 487,-563.4321 487,-522.4321 447,-522.4321"/>
+<polygon fill="url(#r_11)" stroke="none" stroke-width="3" points="447,-522.4321 447,-563.4321 487,-563.4321 487,-522.4321 447,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-523.9321 448.5,-561.9321 485.5,-561.9321 485.5,-523.9321 448.5,-523.9321"/>
 <text text-anchor="start" x="460" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">16</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_12)" stroke="transparent" stroke-width="3" points="497,-522.4321 497,-563.4321 537,-563.4321 537,-522.4321 497,-522.4321"/>
+<polygon fill="url(#r_12)" stroke="none" stroke-width="3" points="497,-522.4321 497,-563.4321 537,-563.4321 537,-522.4321 497,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-523.9321 498.5,-561.9321 535.5,-561.9321 535.5,-523.9321 498.5,-523.9321"/>
 <text text-anchor="start" x="510" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">17</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_13)" stroke="transparent" stroke-width="3" points="547,-522.4321 547,-563.4321 587,-563.4321 587,-522.4321 547,-522.4321"/>
+<polygon fill="url(#r_13)" stroke="none" stroke-width="3" points="547,-522.4321 547,-563.4321 587,-563.4321 587,-522.4321 547,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-523.9321 548.5,-561.9321 585.5,-561.9321 585.5,-523.9321 548.5,-523.9321"/>
 <text text-anchor="start" x="560" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">18</text>
-<polygon fill="#ffd700" stroke="transparent" stroke-width="3" points="147,-471.4321 147,-512.4321 187,-512.4321 187,-471.4321 147,-471.4321"/>
+<polygon fill="#ffd700" stroke="none" stroke-width="3" points="147,-471.4321 147,-512.4321 187,-512.4321 187,-471.4321 147,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-472.9321 148.5,-510.9321 185.5,-510.9321 185.5,-472.9321 148.5,-472.9321"/>
 <text text-anchor="start" x="160" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">20</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_14)" stroke="transparent" stroke-width="3" points="197,-471.4321 197,-512.4321 237,-512.4321 237,-471.4321 197,-471.4321"/>
+<polygon fill="url(#r_14)" stroke="none" stroke-width="3" points="197,-471.4321 197,-512.4321 237,-512.4321 237,-471.4321 197,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-472.9321 198.5,-510.9321 235.5,-510.9321 235.5,-472.9321 198.5,-472.9321"/>
 <text text-anchor="start" x="210" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">21</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_15)" stroke="transparent" stroke-width="3" points="247,-471.4321 247,-512.4321 287,-512.4321 287,-471.4321 247,-471.4321"/>
+<polygon fill="url(#r_15)" stroke="none" stroke-width="3" points="247,-471.4321 247,-512.4321 287,-512.4321 287,-471.4321 247,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-472.9321 248.5,-510.9321 285.5,-510.9321 285.5,-472.9321 248.5,-472.9321"/>
 <text text-anchor="start" x="260" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">22</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_16)" stroke="transparent" stroke-width="3" points="297,-471.4321 297,-512.4321 337,-512.4321 337,-471.4321 297,-471.4321"/>
+<polygon fill="url(#r_16)" stroke="none" stroke-width="3" points="297,-471.4321 297,-512.4321 337,-512.4321 337,-471.4321 297,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-472.9321 298.5,-510.9321 335.5,-510.9321 335.5,-472.9321 298.5,-472.9321"/>
 <text text-anchor="start" x="310" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">23</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_17)" stroke="transparent" stroke-width="3" points="347,-471.4321 347,-512.4321 387,-512.4321 387,-471.4321 347,-471.4321"/>
+<polygon fill="url(#r_17)" stroke="none" stroke-width="3" points="347,-471.4321 347,-512.4321 387,-512.4321 387,-471.4321 347,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-472.9321 348.5,-510.9321 385.5,-510.9321 385.5,-472.9321 348.5,-472.9321"/>
 <text text-anchor="start" x="360" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">24</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_18)" stroke="transparent" stroke-width="3" points="397,-471.4321 397,-512.4321 437,-512.4321 437,-471.4321 397,-471.4321"/>
+<polygon fill="url(#r_18)" stroke="none" stroke-width="3" points="397,-471.4321 397,-512.4321 437,-512.4321 437,-471.4321 397,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-472.9321 398.5,-510.9321 435.5,-510.9321 435.5,-472.9321 398.5,-472.9321"/>
 <text text-anchor="start" x="410" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">25</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_19)" stroke="transparent" stroke-width="3" points="447,-471.4321 447,-512.4321 487,-512.4321 487,-471.4321 447,-471.4321"/>
+<polygon fill="url(#r_19)" stroke="none" stroke-width="3" points="447,-471.4321 447,-512.4321 487,-512.4321 487,-471.4321 447,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-472.9321 448.5,-510.9321 485.5,-510.9321 485.5,-472.9321 448.5,-472.9321"/>
 <text text-anchor="start" x="460" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">26</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_20)" stroke="transparent" stroke-width="3" points="497,-471.4321 497,-512.4321 537,-512.4321 537,-471.4321 497,-471.4321"/>
+<polygon fill="url(#r_20)" stroke="none" stroke-width="3" points="497,-471.4321 497,-512.4321 537,-512.4321 537,-471.4321 497,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-472.9321 498.5,-510.9321 535.5,-510.9321 535.5,-472.9321 498.5,-472.9321"/>
 <text text-anchor="start" x="510" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">27</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_21)" stroke="transparent" stroke-width="3" points="547,-471.4321 547,-512.4321 587,-512.4321 587,-471.4321 547,-471.4321"/>
+<polygon fill="url(#r_21)" stroke="none" stroke-width="3" points="547,-471.4321 547,-512.4321 587,-512.4321 587,-471.4321 547,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-472.9321 548.5,-510.9321 585.5,-510.9321 585.5,-472.9321 548.5,-472.9321"/>
 <text text-anchor="start" x="560" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">28</text>
 <defs>
 <stop offset="1" style="stop-color:#ffa500;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_22)" stroke="transparent" stroke-width="3" points="147,-420.4321 147,-461.4321 187,-461.4321 187,-420.4321 147,-420.4321"/>
+<polygon fill="url(#r_22)" stroke="none" stroke-width="3" points="147,-420.4321 147,-461.4321 187,-461.4321 187,-420.4321 147,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-421.9321 148.5,-459.9321 185.5,-459.9321 185.5,-421.9321 148.5,-421.9321"/>
 <text text-anchor="start" x="160" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">30</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_23)" stroke="transparent" stroke-width="3" points="197,-420.4321 197,-461.4321 237,-461.4321 237,-420.4321 197,-420.4321"/>
+<polygon fill="url(#r_23)" stroke="none" stroke-width="3" points="197,-420.4321 197,-461.4321 237,-461.4321 237,-420.4321 197,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-421.9321 198.5,-459.9321 235.5,-459.9321 235.5,-421.9321 198.5,-421.9321"/>
 <text text-anchor="start" x="210" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">31</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_24)" stroke="transparent" stroke-width="3" points="247,-420.4321 247,-461.4321 287,-461.4321 287,-420.4321 247,-420.4321"/>
+<polygon fill="url(#r_24)" stroke="none" stroke-width="3" points="247,-420.4321 247,-461.4321 287,-461.4321 287,-420.4321 247,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-421.9321 248.5,-459.9321 285.5,-459.9321 285.5,-421.9321 248.5,-421.9321"/>
 <text text-anchor="start" x="260" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">32</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_25)" stroke="transparent" stroke-width="3" points="297,-420.4321 297,-461.4321 337,-461.4321 337,-420.4321 297,-420.4321"/>
+<polygon fill="url(#r_25)" stroke="none" stroke-width="3" points="297,-420.4321 297,-461.4321 337,-461.4321 337,-420.4321 297,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-421.9321 298.5,-459.9321 335.5,-459.9321 335.5,-421.9321 298.5,-421.9321"/>
 <text text-anchor="start" x="310" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">33</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_26)" stroke="transparent" stroke-width="3" points="347,-420.4321 347,-461.4321 387,-461.4321 387,-420.4321 347,-420.4321"/>
+<polygon fill="url(#r_26)" stroke="none" stroke-width="3" points="347,-420.4321 347,-461.4321 387,-461.4321 387,-420.4321 347,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-421.9321 348.5,-459.9321 385.5,-459.9321 385.5,-421.9321 348.5,-421.9321"/>
 <text text-anchor="start" x="360" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">34</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_27)" stroke="transparent" stroke-width="3" points="397,-420.4321 397,-461.4321 437,-461.4321 437,-420.4321 397,-420.4321"/>
+<polygon fill="url(#r_27)" stroke="none" stroke-width="3" points="397,-420.4321 397,-461.4321 437,-461.4321 437,-420.4321 397,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-421.9321 398.5,-459.9321 435.5,-459.9321 435.5,-421.9321 398.5,-421.9321"/>
 <text text-anchor="start" x="410" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">35</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_28)" stroke="transparent" stroke-width="3" points="447,-420.4321 447,-461.4321 487,-461.4321 487,-420.4321 447,-420.4321"/>
+<polygon fill="url(#r_28)" stroke="none" stroke-width="3" points="447,-420.4321 447,-461.4321 487,-461.4321 487,-420.4321 447,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-421.9321 448.5,-459.9321 485.5,-459.9321 485.5,-421.9321 448.5,-421.9321"/>
 <text text-anchor="start" x="460" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">36</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_29)" stroke="transparent" stroke-width="3" points="497,-420.4321 497,-461.4321 537,-461.4321 537,-420.4321 497,-420.4321"/>
+<polygon fill="url(#r_29)" stroke="none" stroke-width="3" points="497,-420.4321 497,-461.4321 537,-461.4321 537,-420.4321 497,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-421.9321 498.5,-459.9321 535.5,-459.9321 535.5,-421.9321 498.5,-421.9321"/>
 <text text-anchor="start" x="510" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">37</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_30)" stroke="transparent" stroke-width="3" points="547,-420.4321 547,-461.4321 587,-461.4321 587,-420.4321 547,-420.4321"/>
+<polygon fill="url(#r_30)" stroke="none" stroke-width="3" points="547,-420.4321 547,-461.4321 587,-461.4321 587,-420.4321 547,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-421.9321 548.5,-459.9321 585.5,-459.9321 585.5,-421.9321 548.5,-421.9321"/>
 <text text-anchor="start" x="560" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">38</text>
-<polygon fill="#ffa500" stroke="transparent" stroke-width="3" points="147,-369.4321 147,-410.4321 187,-410.4321 187,-369.4321 147,-369.4321"/>
+<polygon fill="#ffa500" stroke="none" stroke-width="3" points="147,-369.4321 147,-410.4321 187,-410.4321 187,-369.4321 147,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-370.9321 148.5,-408.9321 185.5,-408.9321 185.5,-370.9321 148.5,-370.9321"/>
 <text text-anchor="start" x="160" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">40</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_31)" stroke="transparent" stroke-width="3" points="197,-369.4321 197,-410.4321 237,-410.4321 237,-369.4321 197,-369.4321"/>
+<polygon fill="url(#r_31)" stroke="none" stroke-width="3" points="197,-369.4321 197,-410.4321 237,-410.4321 237,-369.4321 197,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-370.9321 198.5,-408.9321 235.5,-408.9321 235.5,-370.9321 198.5,-370.9321"/>
 <text text-anchor="start" x="210" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">41</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_32)" stroke="transparent" stroke-width="3" points="247,-369.4321 247,-410.4321 287,-410.4321 287,-369.4321 247,-369.4321"/>
+<polygon fill="url(#r_32)" stroke="none" stroke-width="3" points="247,-369.4321 247,-410.4321 287,-410.4321 287,-369.4321 247,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-370.9321 248.5,-408.9321 285.5,-408.9321 285.5,-370.9321 248.5,-370.9321"/>
 <text text-anchor="start" x="260" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">42</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_33)" stroke="transparent" stroke-width="3" points="297,-369.4321 297,-410.4321 337,-410.4321 337,-369.4321 297,-369.4321"/>
+<polygon fill="url(#r_33)" stroke="none" stroke-width="3" points="297,-369.4321 297,-410.4321 337,-410.4321 337,-369.4321 297,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-370.9321 298.5,-408.9321 335.5,-408.9321 335.5,-370.9321 298.5,-370.9321"/>
 <text text-anchor="start" x="310" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">43</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_34)" stroke="transparent" stroke-width="3" points="347,-369.4321 347,-410.4321 387,-410.4321 387,-369.4321 347,-369.4321"/>
+<polygon fill="url(#r_34)" stroke="none" stroke-width="3" points="347,-369.4321 347,-410.4321 387,-410.4321 387,-369.4321 347,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-370.9321 348.5,-408.9321 385.5,-408.9321 385.5,-370.9321 348.5,-370.9321"/>
 <text text-anchor="start" x="360" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">44</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_35)" stroke="transparent" stroke-width="3" points="397,-369.4321 397,-410.4321 437,-410.4321 437,-369.4321 397,-369.4321"/>
+<polygon fill="url(#r_35)" stroke="none" stroke-width="3" points="397,-369.4321 397,-410.4321 437,-410.4321 437,-369.4321 397,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-370.9321 398.5,-408.9321 435.5,-408.9321 435.5,-370.9321 398.5,-370.9321"/>
 <text text-anchor="start" x="410" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">45</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_36)" stroke="transparent" stroke-width="3" points="447,-369.4321 447,-410.4321 487,-410.4321 487,-369.4321 447,-369.4321"/>
+<polygon fill="url(#r_36)" stroke="none" stroke-width="3" points="447,-369.4321 447,-410.4321 487,-410.4321 487,-369.4321 447,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-370.9321 448.5,-408.9321 485.5,-408.9321 485.5,-370.9321 448.5,-370.9321"/>
 <text text-anchor="start" x="460" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">46</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_37)" stroke="transparent" stroke-width="3" points="497,-369.4321 497,-410.4321 537,-410.4321 537,-369.4321 497,-369.4321"/>
+<polygon fill="url(#r_37)" stroke="none" stroke-width="3" points="497,-369.4321 497,-410.4321 537,-410.4321 537,-369.4321 497,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-370.9321 498.5,-408.9321 535.5,-408.9321 535.5,-370.9321 498.5,-370.9321"/>
 <text text-anchor="start" x="510" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">47</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_38)" stroke="transparent" stroke-width="3" points="547,-369.4321 547,-410.4321 587,-410.4321 587,-369.4321 547,-369.4321"/>
+<polygon fill="url(#r_38)" stroke="none" stroke-width="3" points="547,-369.4321 547,-410.4321 587,-410.4321 587,-369.4321 547,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-370.9321 548.5,-408.9321 585.5,-408.9321 585.5,-370.9321 548.5,-370.9321"/>
 <text text-anchor="start" x="560" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">48</text>
 <defs>
 <stop offset="1" style="stop-color:#ff0000;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_39)" stroke="transparent" stroke-width="3" points="147,-318.4321 147,-359.4321 187,-359.4321 187,-318.4321 147,-318.4321"/>
+<polygon fill="url(#r_39)" stroke="none" stroke-width="3" points="147,-318.4321 147,-359.4321 187,-359.4321 187,-318.4321 147,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-319.9321 148.5,-357.9321 185.5,-357.9321 185.5,-319.9321 148.5,-319.9321"/>
 <text text-anchor="start" x="160" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">50</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_40)" stroke="transparent" stroke-width="3" points="197,-318.4321 197,-359.4321 237,-359.4321 237,-318.4321 197,-318.4321"/>
+<polygon fill="url(#r_40)" stroke="none" stroke-width="3" points="197,-318.4321 197,-359.4321 237,-359.4321 237,-318.4321 197,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-319.9321 198.5,-357.9321 235.5,-357.9321 235.5,-319.9321 198.5,-319.9321"/>
 <text text-anchor="start" x="210" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">51</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_41)" stroke="transparent" stroke-width="3" points="247,-318.4321 247,-359.4321 287,-359.4321 287,-318.4321 247,-318.4321"/>
+<polygon fill="url(#r_41)" stroke="none" stroke-width="3" points="247,-318.4321 247,-359.4321 287,-359.4321 287,-318.4321 247,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-319.9321 248.5,-357.9321 285.5,-357.9321 285.5,-319.9321 248.5,-319.9321"/>
 <text text-anchor="start" x="260" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">52</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_42)" stroke="transparent" stroke-width="3" points="297,-318.4321 297,-359.4321 337,-359.4321 337,-318.4321 297,-318.4321"/>
+<polygon fill="url(#r_42)" stroke="none" stroke-width="3" points="297,-318.4321 297,-359.4321 337,-359.4321 337,-318.4321 297,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-319.9321 298.5,-357.9321 335.5,-357.9321 335.5,-319.9321 298.5,-319.9321"/>
 <text text-anchor="start" x="310" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">53</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_43)" stroke="transparent" stroke-width="3" points="347,-318.4321 347,-359.4321 387,-359.4321 387,-318.4321 347,-318.4321"/>
+<polygon fill="url(#r_43)" stroke="none" stroke-width="3" points="347,-318.4321 347,-359.4321 387,-359.4321 387,-318.4321 347,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-319.9321 348.5,-357.9321 385.5,-357.9321 385.5,-319.9321 348.5,-319.9321"/>
 <text text-anchor="start" x="360" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">54</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_44)" stroke="transparent" stroke-width="3" points="397,-318.4321 397,-359.4321 437,-359.4321 437,-318.4321 397,-318.4321"/>
+<polygon fill="url(#r_44)" stroke="none" stroke-width="3" points="397,-318.4321 397,-359.4321 437,-359.4321 437,-318.4321 397,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-319.9321 398.5,-357.9321 435.5,-357.9321 435.5,-319.9321 398.5,-319.9321"/>
 <text text-anchor="start" x="410" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">55</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_45)" stroke="transparent" stroke-width="3" points="447,-318.4321 447,-359.4321 487,-359.4321 487,-318.4321 447,-318.4321"/>
+<polygon fill="url(#r_45)" stroke="none" stroke-width="3" points="447,-318.4321 447,-359.4321 487,-359.4321 487,-318.4321 447,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-319.9321 448.5,-357.9321 485.5,-357.9321 485.5,-319.9321 448.5,-319.9321"/>
 <text text-anchor="start" x="460" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">56</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_46)" stroke="transparent" stroke-width="3" points="497,-318.4321 497,-359.4321 537,-359.4321 537,-318.4321 497,-318.4321"/>
+<polygon fill="url(#r_46)" stroke="none" stroke-width="3" points="497,-318.4321 497,-359.4321 537,-359.4321 537,-318.4321 497,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-319.9321 498.5,-357.9321 535.5,-357.9321 535.5,-319.9321 498.5,-319.9321"/>
 <text text-anchor="start" x="510" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">57</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_47)" stroke="transparent" stroke-width="3" points="547,-318.4321 547,-359.4321 587,-359.4321 587,-318.4321 547,-318.4321"/>
+<polygon fill="url(#r_47)" stroke="none" stroke-width="3" points="547,-318.4321 547,-359.4321 587,-359.4321 587,-318.4321 547,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-319.9321 548.5,-357.9321 585.5,-357.9321 585.5,-319.9321 548.5,-319.9321"/>
 <text text-anchor="start" x="560" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">58</text>
-<polygon fill="#ff0000" stroke="transparent" stroke-width="3" points="147,-267.4321 147,-308.4321 187,-308.4321 187,-267.4321 147,-267.4321"/>
+<polygon fill="#ff0000" stroke="none" stroke-width="3" points="147,-267.4321 147,-308.4321 187,-308.4321 187,-267.4321 147,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-268.9321 148.5,-306.9321 185.5,-306.9321 185.5,-268.9321 148.5,-268.9321"/>
 <text text-anchor="start" x="160" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">60</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_48)" stroke="transparent" stroke-width="3" points="197,-267.4321 197,-308.4321 237,-308.4321 237,-267.4321 197,-267.4321"/>
+<polygon fill="url(#r_48)" stroke="none" stroke-width="3" points="197,-267.4321 197,-308.4321 237,-308.4321 237,-267.4321 197,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-268.9321 198.5,-306.9321 235.5,-306.9321 235.5,-268.9321 198.5,-268.9321"/>
 <text text-anchor="start" x="210" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">61</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_49)" stroke="transparent" stroke-width="3" points="247,-267.4321 247,-308.4321 287,-308.4321 287,-267.4321 247,-267.4321"/>
+<polygon fill="url(#r_49)" stroke="none" stroke-width="3" points="247,-267.4321 247,-308.4321 287,-308.4321 287,-267.4321 247,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-268.9321 248.5,-306.9321 285.5,-306.9321 285.5,-268.9321 248.5,-268.9321"/>
 <text text-anchor="start" x="260" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">62</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_50)" stroke="transparent" stroke-width="3" points="297,-267.4321 297,-308.4321 337,-308.4321 337,-267.4321 297,-267.4321"/>
+<polygon fill="url(#r_50)" stroke="none" stroke-width="3" points="297,-267.4321 297,-308.4321 337,-308.4321 337,-267.4321 297,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-268.9321 298.5,-306.9321 335.5,-306.9321 335.5,-268.9321 298.5,-268.9321"/>
 <text text-anchor="start" x="310" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">63</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_51)" stroke="transparent" stroke-width="3" points="347,-267.4321 347,-308.4321 387,-308.4321 387,-267.4321 347,-267.4321"/>
+<polygon fill="url(#r_51)" stroke="none" stroke-width="3" points="347,-267.4321 347,-308.4321 387,-308.4321 387,-267.4321 347,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-268.9321 348.5,-306.9321 385.5,-306.9321 385.5,-268.9321 348.5,-268.9321"/>
 <text text-anchor="start" x="360" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">64</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_52)" stroke="transparent" stroke-width="3" points="397,-267.4321 397,-308.4321 437,-308.4321 437,-267.4321 397,-267.4321"/>
+<polygon fill="url(#r_52)" stroke="none" stroke-width="3" points="397,-267.4321 397,-308.4321 437,-308.4321 437,-267.4321 397,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-268.9321 398.5,-306.9321 435.5,-306.9321 435.5,-268.9321 398.5,-268.9321"/>
 <text text-anchor="start" x="410" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">65</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_53)" stroke="transparent" stroke-width="3" points="447,-267.4321 447,-308.4321 487,-308.4321 487,-267.4321 447,-267.4321"/>
+<polygon fill="url(#r_53)" stroke="none" stroke-width="3" points="447,-267.4321 447,-308.4321 487,-308.4321 487,-267.4321 447,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-268.9321 448.5,-306.9321 485.5,-306.9321 485.5,-268.9321 448.5,-268.9321"/>
 <text text-anchor="start" x="460" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">66</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_54)" stroke="transparent" stroke-width="3" points="497,-267.4321 497,-308.4321 537,-308.4321 537,-267.4321 497,-267.4321"/>
+<polygon fill="url(#r_54)" stroke="none" stroke-width="3" points="497,-267.4321 497,-308.4321 537,-308.4321 537,-267.4321 497,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-268.9321 498.5,-306.9321 535.5,-306.9321 535.5,-268.9321 498.5,-268.9321"/>
 <text text-anchor="start" x="510" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">67</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_55)" stroke="transparent" stroke-width="3" points="547,-267.4321 547,-308.4321 587,-308.4321 587,-267.4321 547,-267.4321"/>
+<polygon fill="url(#r_55)" stroke="none" stroke-width="3" points="547,-267.4321 547,-308.4321 587,-308.4321 587,-267.4321 547,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-268.9321 548.5,-306.9321 585.5,-306.9321 585.5,-268.9321 548.5,-268.9321"/>
 <text text-anchor="start" x="560" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">68</text>
 <defs>
 <stop offset="1" style="stop-color:#a52a2a;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_56)" stroke="transparent" stroke-width="3" points="147,-216.4321 147,-257.4321 187,-257.4321 187,-216.4321 147,-216.4321"/>
+<polygon fill="url(#r_56)" stroke="none" stroke-width="3" points="147,-216.4321 147,-257.4321 187,-257.4321 187,-216.4321 147,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-217.9321 148.5,-255.9321 185.5,-255.9321 185.5,-217.9321 148.5,-217.9321"/>
 <text text-anchor="start" x="160" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">70</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_57)" stroke="transparent" stroke-width="3" points="197,-216.4321 197,-257.4321 237,-257.4321 237,-216.4321 197,-216.4321"/>
+<polygon fill="url(#r_57)" stroke="none" stroke-width="3" points="197,-216.4321 197,-257.4321 237,-257.4321 237,-216.4321 197,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-217.9321 198.5,-255.9321 235.5,-255.9321 235.5,-217.9321 198.5,-217.9321"/>
 <text text-anchor="start" x="210" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">71</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_58)" stroke="transparent" stroke-width="3" points="247,-216.4321 247,-257.4321 287,-257.4321 287,-216.4321 247,-216.4321"/>
+<polygon fill="url(#r_58)" stroke="none" stroke-width="3" points="247,-216.4321 247,-257.4321 287,-257.4321 287,-216.4321 247,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-217.9321 248.5,-255.9321 285.5,-255.9321 285.5,-217.9321 248.5,-217.9321"/>
 <text text-anchor="start" x="260" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">72</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_59)" stroke="transparent" stroke-width="3" points="297,-216.4321 297,-257.4321 337,-257.4321 337,-216.4321 297,-216.4321"/>
+<polygon fill="url(#r_59)" stroke="none" stroke-width="3" points="297,-216.4321 297,-257.4321 337,-257.4321 337,-216.4321 297,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-217.9321 298.5,-255.9321 335.5,-255.9321 335.5,-217.9321 298.5,-217.9321"/>
 <text text-anchor="start" x="310" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">73</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_60)" stroke="transparent" stroke-width="3" points="347,-216.4321 347,-257.4321 387,-257.4321 387,-216.4321 347,-216.4321"/>
+<polygon fill="url(#r_60)" stroke="none" stroke-width="3" points="347,-216.4321 347,-257.4321 387,-257.4321 387,-216.4321 347,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-217.9321 348.5,-255.9321 385.5,-255.9321 385.5,-217.9321 348.5,-217.9321"/>
 <text text-anchor="start" x="360" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">74</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_61)" stroke="transparent" stroke-width="3" points="397,-216.4321 397,-257.4321 437,-257.4321 437,-216.4321 397,-216.4321"/>
+<polygon fill="url(#r_61)" stroke="none" stroke-width="3" points="397,-216.4321 397,-257.4321 437,-257.4321 437,-216.4321 397,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-217.9321 398.5,-255.9321 435.5,-255.9321 435.5,-217.9321 398.5,-217.9321"/>
 <text text-anchor="start" x="410" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">75</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_62)" stroke="transparent" stroke-width="3" points="447,-216.4321 447,-257.4321 487,-257.4321 487,-216.4321 447,-216.4321"/>
+<polygon fill="url(#r_62)" stroke="none" stroke-width="3" points="447,-216.4321 447,-257.4321 487,-257.4321 487,-216.4321 447,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-217.9321 448.5,-255.9321 485.5,-255.9321 485.5,-217.9321 448.5,-217.9321"/>
 <text text-anchor="start" x="460" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">76</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_63)" stroke="transparent" stroke-width="3" points="497,-216.4321 497,-257.4321 537,-257.4321 537,-216.4321 497,-216.4321"/>
+<polygon fill="url(#r_63)" stroke="none" stroke-width="3" points="497,-216.4321 497,-257.4321 537,-257.4321 537,-216.4321 497,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-217.9321 498.5,-255.9321 535.5,-255.9321 535.5,-217.9321 498.5,-217.9321"/>
 <text text-anchor="start" x="510" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">77</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_64)" stroke="transparent" stroke-width="3" points="547,-216.4321 547,-257.4321 587,-257.4321 587,-216.4321 547,-216.4321"/>
+<polygon fill="url(#r_64)" stroke="none" stroke-width="3" points="547,-216.4321 547,-257.4321 587,-257.4321 587,-216.4321 547,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-217.9321 548.5,-255.9321 585.5,-255.9321 585.5,-217.9321 548.5,-217.9321"/>
 <text text-anchor="start" x="560" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">78</text>
-<polygon fill="#a52a2a" stroke="transparent" stroke-width="3" points="147,-165.4321 147,-206.4321 187,-206.4321 187,-165.4321 147,-165.4321"/>
+<polygon fill="#a52a2a" stroke="none" stroke-width="3" points="147,-165.4321 147,-206.4321 187,-206.4321 187,-165.4321 147,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-166.9321 148.5,-204.9321 185.5,-204.9321 185.5,-166.9321 148.5,-166.9321"/>
 <text text-anchor="start" x="160" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">80</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_65)" stroke="transparent" stroke-width="3" points="197,-165.4321 197,-206.4321 237,-206.4321 237,-165.4321 197,-165.4321"/>
+<polygon fill="url(#r_65)" stroke="none" stroke-width="3" points="197,-165.4321 197,-206.4321 237,-206.4321 237,-165.4321 197,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-166.9321 198.5,-204.9321 235.5,-204.9321 235.5,-166.9321 198.5,-166.9321"/>
 <text text-anchor="start" x="210" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">81</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_66)" stroke="transparent" stroke-width="3" points="247,-165.4321 247,-206.4321 287,-206.4321 287,-165.4321 247,-165.4321"/>
+<polygon fill="url(#r_66)" stroke="none" stroke-width="3" points="247,-165.4321 247,-206.4321 287,-206.4321 287,-165.4321 247,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-166.9321 248.5,-204.9321 285.5,-204.9321 285.5,-166.9321 248.5,-166.9321"/>
 <text text-anchor="start" x="260" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">82</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_67)" stroke="transparent" stroke-width="3" points="297,-165.4321 297,-206.4321 337,-206.4321 337,-165.4321 297,-165.4321"/>
+<polygon fill="url(#r_67)" stroke="none" stroke-width="3" points="297,-165.4321 297,-206.4321 337,-206.4321 337,-165.4321 297,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-166.9321 298.5,-204.9321 335.5,-204.9321 335.5,-166.9321 298.5,-166.9321"/>
 <text text-anchor="start" x="310" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">83</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_68)" stroke="transparent" stroke-width="3" points="347,-165.4321 347,-206.4321 387,-206.4321 387,-165.4321 347,-165.4321"/>
+<polygon fill="url(#r_68)" stroke="none" stroke-width="3" points="347,-165.4321 347,-206.4321 387,-206.4321 387,-165.4321 347,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-166.9321 348.5,-204.9321 385.5,-204.9321 385.5,-166.9321 348.5,-166.9321"/>
 <text text-anchor="start" x="360" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">84</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_69)" stroke="transparent" stroke-width="3" points="397,-165.4321 397,-206.4321 437,-206.4321 437,-165.4321 397,-165.4321"/>
+<polygon fill="url(#r_69)" stroke="none" stroke-width="3" points="397,-165.4321 397,-206.4321 437,-206.4321 437,-165.4321 397,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-166.9321 398.5,-204.9321 435.5,-204.9321 435.5,-166.9321 398.5,-166.9321"/>
 <text text-anchor="start" x="410" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">85</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_70)" stroke="transparent" stroke-width="3" points="447,-165.4321 447,-206.4321 487,-206.4321 487,-165.4321 447,-165.4321"/>
+<polygon fill="url(#r_70)" stroke="none" stroke-width="3" points="447,-165.4321 447,-206.4321 487,-206.4321 487,-165.4321 447,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-166.9321 448.5,-204.9321 485.5,-204.9321 485.5,-166.9321 448.5,-166.9321"/>
 <text text-anchor="start" x="460" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">86</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_71)" stroke="transparent" stroke-width="3" points="497,-165.4321 497,-206.4321 537,-206.4321 537,-165.4321 497,-165.4321"/>
+<polygon fill="url(#r_71)" stroke="none" stroke-width="3" points="497,-165.4321 497,-206.4321 537,-206.4321 537,-165.4321 497,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-166.9321 498.5,-204.9321 535.5,-204.9321 535.5,-166.9321 498.5,-166.9321"/>
 <text text-anchor="start" x="510" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">87</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_72)" stroke="transparent" stroke-width="3" points="547,-165.4321 547,-206.4321 587,-206.4321 587,-165.4321 547,-165.4321"/>
+<polygon fill="url(#r_72)" stroke="none" stroke-width="3" points="547,-165.4321 547,-206.4321 587,-206.4321 587,-165.4321 547,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-166.9321 548.5,-204.9321 585.5,-204.9321 585.5,-166.9321 548.5,-166.9321"/>
 <text text-anchor="start" x="560" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">88</text>
 <path fill="none" stroke="#000000" stroke-width="10" d="M144,-150.9321C144,-150.9321 590,-150.9321 590,-150.9321 596,-150.9321 602,-156.9321 602,-162.9321 602,-162.9321 602,-617.9321 602,-617.9321 602,-623.9321 596,-629.9321 590,-629.9321 590,-629.9321 144,-629.9321 144,-629.9321 138,-629.9321 132,-623.9321 132,-617.9321 132,-617.9321 132,-162.9321 132,-162.9321 132,-156.9321 138,-150.9321 144,-150.9321"/>
index 8883104db55527a52c30c1bcf037815267f840e0..135e395171ed30c8d8f8ace83696735e5a50519b 100644 (file)
@@ -14,7 +14,7 @@
 <stop offset="1" style="stop-color:#ffc0cb;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<polygon fill="url(#l_0)" stroke="transparent" points="-4,4 -4,-784.8641 738,-784.8641 738,4 -4,4"/>
+<polygon fill="url(#l_0)" stroke="none" points="-4,4 -4,-784.8641 738,-784.8641 738,4 -4,4"/>
 <text text-anchor="middle" x="367" y="-7.8" font-family="Times,serif" font-size="14.00" fill="#ffffff">Graph</text>
 <g id="clust1" class="cluster">
 <title>cluster1</title>
@@ -43,8 +43,8 @@
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </linearGradient>
 </defs>
-<path fill="url(#l_2)" stroke="transparent" d="M144,-150.9321C144,-150.9321 590,-150.9321 590,-150.9321 596,-150.9321 602,-156.9321 602,-162.9321 602,-162.9321 602,-617.9321 602,-617.9321 602,-623.9321 596,-629.9321 590,-629.9321 590,-629.9321 144,-629.9321 144,-629.9321 138,-629.9321 132,-623.9321 132,-617.9321 132,-617.9321 132,-162.9321 132,-162.9321 132,-156.9321 138,-150.9321 144,-150.9321"/>
-<polygon fill="#ffff00" stroke="transparent" points="147,-573.4321 147,-614.4321 187,-614.4321 187,-573.4321 147,-573.4321"/>
+<path fill="url(#l_2)" stroke="none" d="M144,-150.9321C144,-150.9321 590,-150.9321 590,-150.9321 596,-150.9321 602,-156.9321 602,-162.9321 602,-162.9321 602,-617.9321 602,-617.9321 602,-623.9321 596,-629.9321 590,-629.9321 590,-629.9321 144,-629.9321 144,-629.9321 138,-629.9321 132,-623.9321 132,-617.9321 132,-617.9321 132,-162.9321 132,-162.9321 132,-156.9321 138,-150.9321 144,-150.9321"/>
+<polygon fill="#ffff00" stroke="none" points="147,-573.4321 147,-614.4321 187,-614.4321 187,-573.4321 147,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-574.9321 148.5,-612.9321 185.5,-612.9321 185.5,-574.9321 148.5,-574.9321"/>
 <text text-anchor="start" x="160" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">00</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_1)" stroke="transparent" stroke-width="3" points="197,-573.4321 197,-614.4321 237,-614.4321 237,-573.4321 197,-573.4321"/>
+<polygon fill="url(#r_1)" stroke="none" stroke-width="3" points="197,-573.4321 197,-614.4321 237,-614.4321 237,-573.4321 197,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-574.9321 198.5,-612.9321 235.5,-612.9321 235.5,-574.9321 198.5,-574.9321"/>
 <text text-anchor="start" x="210" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">01</text>
-<polygon fill="#00ff00" stroke="transparent" stroke-width="3" points="247,-573.4321 247,-614.4321 287,-614.4321 287,-573.4321 247,-573.4321"/>
+<polygon fill="#00ff00" stroke="none" stroke-width="3" points="247,-573.4321 247,-614.4321 287,-614.4321 287,-573.4321 247,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-574.9321 248.5,-612.9321 285.5,-612.9321 285.5,-574.9321 248.5,-574.9321"/>
 <text text-anchor="start" x="260" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">02</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_2)" stroke="transparent" stroke-width="3" points="297,-573.4321 297,-614.4321 337,-614.4321 337,-573.4321 297,-573.4321"/>
+<polygon fill="url(#r_2)" stroke="none" stroke-width="3" points="297,-573.4321 297,-614.4321 337,-614.4321 337,-573.4321 297,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-574.9321 298.5,-612.9321 335.5,-612.9321 335.5,-574.9321 298.5,-574.9321"/>
 <text text-anchor="start" x="310" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">03</text>
-<polygon fill="#0000ff" stroke="transparent" stroke-width="3" points="347,-573.4321 347,-614.4321 387,-614.4321 387,-573.4321 347,-573.4321"/>
+<polygon fill="#0000ff" stroke="none" stroke-width="3" points="347,-573.4321 347,-614.4321 387,-614.4321 387,-573.4321 347,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-574.9321 348.5,-612.9321 385.5,-612.9321 385.5,-574.9321 348.5,-574.9321"/>
 <text text-anchor="start" x="360" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">04</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_3)" stroke="transparent" stroke-width="3" points="397,-573.4321 397,-614.4321 437,-614.4321 437,-573.4321 397,-573.4321"/>
+<polygon fill="url(#r_3)" stroke="none" stroke-width="3" points="397,-573.4321 397,-614.4321 437,-614.4321 437,-573.4321 397,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-574.9321 398.5,-612.9321 435.5,-612.9321 435.5,-574.9321 398.5,-574.9321"/>
 <text text-anchor="start" x="410" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">05</text>
-<polygon fill="#a020f0" stroke="transparent" stroke-width="3" points="447,-573.4321 447,-614.4321 487,-614.4321 487,-573.4321 447,-573.4321"/>
+<polygon fill="#a020f0" stroke="none" stroke-width="3" points="447,-573.4321 447,-614.4321 487,-614.4321 487,-573.4321 447,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-574.9321 448.5,-612.9321 485.5,-612.9321 485.5,-574.9321 448.5,-574.9321"/>
 <text text-anchor="start" x="460" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">06</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_4)" stroke="transparent" stroke-width="3" points="497,-573.4321 497,-614.4321 537,-614.4321 537,-573.4321 497,-573.4321"/>
+<polygon fill="url(#r_4)" stroke="none" stroke-width="3" points="497,-573.4321 497,-614.4321 537,-614.4321 537,-573.4321 497,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-574.9321 498.5,-612.9321 535.5,-612.9321 535.5,-574.9321 498.5,-574.9321"/>
 <text text-anchor="start" x="510" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">07</text>
-<polygon fill="#ee82ee" stroke="transparent" stroke-width="3" points="547,-573.4321 547,-614.4321 587,-614.4321 587,-573.4321 547,-573.4321"/>
+<polygon fill="#ee82ee" stroke="none" stroke-width="3" points="547,-573.4321 547,-614.4321 587,-614.4321 587,-573.4321 547,-573.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-574.9321 548.5,-612.9321 585.5,-612.9321 585.5,-574.9321 548.5,-574.9321"/>
 <text text-anchor="start" x="560" y="-590.2321" font-family="Times,serif" font-size="14.00" fill="#000000">08</text>
 <defs>
 <stop offset="1" style="stop-color:#ffd700;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_5)" stroke="transparent" stroke-width="3" points="147,-522.4321 147,-563.4321 187,-563.4321 187,-522.4321 147,-522.4321"/>
+<polygon fill="url(#r_5)" stroke="none" stroke-width="3" points="147,-522.4321 147,-563.4321 187,-563.4321 187,-522.4321 147,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-523.9321 148.5,-561.9321 185.5,-561.9321 185.5,-523.9321 148.5,-523.9321"/>
 <text text-anchor="start" x="160" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">10</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_6)" stroke="transparent" stroke-width="3" points="197,-522.4321 197,-563.4321 237,-563.4321 237,-522.4321 197,-522.4321"/>
+<polygon fill="url(#r_6)" stroke="none" stroke-width="3" points="197,-522.4321 197,-563.4321 237,-563.4321 237,-522.4321 197,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-523.9321 198.5,-561.9321 235.5,-561.9321 235.5,-523.9321 198.5,-523.9321"/>
 <text text-anchor="start" x="210" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">11</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_7)" stroke="transparent" stroke-width="3" points="247,-522.4321 247,-563.4321 287,-563.4321 287,-522.4321 247,-522.4321"/>
+<polygon fill="url(#r_7)" stroke="none" stroke-width="3" points="247,-522.4321 247,-563.4321 287,-563.4321 287,-522.4321 247,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-523.9321 248.5,-561.9321 285.5,-561.9321 285.5,-523.9321 248.5,-523.9321"/>
 <text text-anchor="start" x="260" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">12</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_8)" stroke="transparent" stroke-width="3" points="297,-522.4321 297,-563.4321 337,-563.4321 337,-522.4321 297,-522.4321"/>
+<polygon fill="url(#r_8)" stroke="none" stroke-width="3" points="297,-522.4321 297,-563.4321 337,-563.4321 337,-522.4321 297,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-523.9321 298.5,-561.9321 335.5,-561.9321 335.5,-523.9321 298.5,-523.9321"/>
 <text text-anchor="start" x="310" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">13</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_9)" stroke="transparent" stroke-width="3" points="347,-522.4321 347,-563.4321 387,-563.4321 387,-522.4321 347,-522.4321"/>
+<polygon fill="url(#r_9)" stroke="none" stroke-width="3" points="347,-522.4321 347,-563.4321 387,-563.4321 387,-522.4321 347,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-523.9321 348.5,-561.9321 385.5,-561.9321 385.5,-523.9321 348.5,-523.9321"/>
 <text text-anchor="start" x="360" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">14</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_10)" stroke="transparent" stroke-width="3" points="397,-522.4321 397,-563.4321 437,-563.4321 437,-522.4321 397,-522.4321"/>
+<polygon fill="url(#r_10)" stroke="none" stroke-width="3" points="397,-522.4321 397,-563.4321 437,-563.4321 437,-522.4321 397,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-523.9321 398.5,-561.9321 435.5,-561.9321 435.5,-523.9321 398.5,-523.9321"/>
 <text text-anchor="start" x="410" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">15</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_11)" stroke="transparent" stroke-width="3" points="447,-522.4321 447,-563.4321 487,-563.4321 487,-522.4321 447,-522.4321"/>
+<polygon fill="url(#r_11)" stroke="none" stroke-width="3" points="447,-522.4321 447,-563.4321 487,-563.4321 487,-522.4321 447,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-523.9321 448.5,-561.9321 485.5,-561.9321 485.5,-523.9321 448.5,-523.9321"/>
 <text text-anchor="start" x="460" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">16</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_12)" stroke="transparent" stroke-width="3" points="497,-522.4321 497,-563.4321 537,-563.4321 537,-522.4321 497,-522.4321"/>
+<polygon fill="url(#r_12)" stroke="none" stroke-width="3" points="497,-522.4321 497,-563.4321 537,-563.4321 537,-522.4321 497,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-523.9321 498.5,-561.9321 535.5,-561.9321 535.5,-523.9321 498.5,-523.9321"/>
 <text text-anchor="start" x="510" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">17</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_13)" stroke="transparent" stroke-width="3" points="547,-522.4321 547,-563.4321 587,-563.4321 587,-522.4321 547,-522.4321"/>
+<polygon fill="url(#r_13)" stroke="none" stroke-width="3" points="547,-522.4321 547,-563.4321 587,-563.4321 587,-522.4321 547,-522.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-523.9321 548.5,-561.9321 585.5,-561.9321 585.5,-523.9321 548.5,-523.9321"/>
 <text text-anchor="start" x="560" y="-539.2321" font-family="Times,serif" font-size="14.00" fill="#000000">18</text>
-<polygon fill="#ffd700" stroke="transparent" stroke-width="3" points="147,-471.4321 147,-512.4321 187,-512.4321 187,-471.4321 147,-471.4321"/>
+<polygon fill="#ffd700" stroke="none" stroke-width="3" points="147,-471.4321 147,-512.4321 187,-512.4321 187,-471.4321 147,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-472.9321 148.5,-510.9321 185.5,-510.9321 185.5,-472.9321 148.5,-472.9321"/>
 <text text-anchor="start" x="160" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">20</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_14)" stroke="transparent" stroke-width="3" points="197,-471.4321 197,-512.4321 237,-512.4321 237,-471.4321 197,-471.4321"/>
+<polygon fill="url(#r_14)" stroke="none" stroke-width="3" points="197,-471.4321 197,-512.4321 237,-512.4321 237,-471.4321 197,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-472.9321 198.5,-510.9321 235.5,-510.9321 235.5,-472.9321 198.5,-472.9321"/>
 <text text-anchor="start" x="210" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">21</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_15)" stroke="transparent" stroke-width="3" points="247,-471.4321 247,-512.4321 287,-512.4321 287,-471.4321 247,-471.4321"/>
+<polygon fill="url(#r_15)" stroke="none" stroke-width="3" points="247,-471.4321 247,-512.4321 287,-512.4321 287,-471.4321 247,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-472.9321 248.5,-510.9321 285.5,-510.9321 285.5,-472.9321 248.5,-472.9321"/>
 <text text-anchor="start" x="260" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">22</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_16)" stroke="transparent" stroke-width="3" points="297,-471.4321 297,-512.4321 337,-512.4321 337,-471.4321 297,-471.4321"/>
+<polygon fill="url(#r_16)" stroke="none" stroke-width="3" points="297,-471.4321 297,-512.4321 337,-512.4321 337,-471.4321 297,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-472.9321 298.5,-510.9321 335.5,-510.9321 335.5,-472.9321 298.5,-472.9321"/>
 <text text-anchor="start" x="310" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">23</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_17)" stroke="transparent" stroke-width="3" points="347,-471.4321 347,-512.4321 387,-512.4321 387,-471.4321 347,-471.4321"/>
+<polygon fill="url(#r_17)" stroke="none" stroke-width="3" points="347,-471.4321 347,-512.4321 387,-512.4321 387,-471.4321 347,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-472.9321 348.5,-510.9321 385.5,-510.9321 385.5,-472.9321 348.5,-472.9321"/>
 <text text-anchor="start" x="360" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">24</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_18)" stroke="transparent" stroke-width="3" points="397,-471.4321 397,-512.4321 437,-512.4321 437,-471.4321 397,-471.4321"/>
+<polygon fill="url(#r_18)" stroke="none" stroke-width="3" points="397,-471.4321 397,-512.4321 437,-512.4321 437,-471.4321 397,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-472.9321 398.5,-510.9321 435.5,-510.9321 435.5,-472.9321 398.5,-472.9321"/>
 <text text-anchor="start" x="410" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">25</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_19)" stroke="transparent" stroke-width="3" points="447,-471.4321 447,-512.4321 487,-512.4321 487,-471.4321 447,-471.4321"/>
+<polygon fill="url(#r_19)" stroke="none" stroke-width="3" points="447,-471.4321 447,-512.4321 487,-512.4321 487,-471.4321 447,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-472.9321 448.5,-510.9321 485.5,-510.9321 485.5,-472.9321 448.5,-472.9321"/>
 <text text-anchor="start" x="460" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">26</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_20)" stroke="transparent" stroke-width="3" points="497,-471.4321 497,-512.4321 537,-512.4321 537,-471.4321 497,-471.4321"/>
+<polygon fill="url(#r_20)" stroke="none" stroke-width="3" points="497,-471.4321 497,-512.4321 537,-512.4321 537,-471.4321 497,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-472.9321 498.5,-510.9321 535.5,-510.9321 535.5,-472.9321 498.5,-472.9321"/>
 <text text-anchor="start" x="510" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">27</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_21)" stroke="transparent" stroke-width="3" points="547,-471.4321 547,-512.4321 587,-512.4321 587,-471.4321 547,-471.4321"/>
+<polygon fill="url(#r_21)" stroke="none" stroke-width="3" points="547,-471.4321 547,-512.4321 587,-512.4321 587,-471.4321 547,-471.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-472.9321 548.5,-510.9321 585.5,-510.9321 585.5,-472.9321 548.5,-472.9321"/>
 <text text-anchor="start" x="560" y="-488.2321" font-family="Times,serif" font-size="14.00" fill="#000000">28</text>
 <defs>
 <stop offset="1" style="stop-color:#ffa500;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_22)" stroke="transparent" stroke-width="3" points="147,-420.4321 147,-461.4321 187,-461.4321 187,-420.4321 147,-420.4321"/>
+<polygon fill="url(#r_22)" stroke="none" stroke-width="3" points="147,-420.4321 147,-461.4321 187,-461.4321 187,-420.4321 147,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-421.9321 148.5,-459.9321 185.5,-459.9321 185.5,-421.9321 148.5,-421.9321"/>
 <text text-anchor="start" x="160" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">30</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_23)" stroke="transparent" stroke-width="3" points="197,-420.4321 197,-461.4321 237,-461.4321 237,-420.4321 197,-420.4321"/>
+<polygon fill="url(#r_23)" stroke="none" stroke-width="3" points="197,-420.4321 197,-461.4321 237,-461.4321 237,-420.4321 197,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-421.9321 198.5,-459.9321 235.5,-459.9321 235.5,-421.9321 198.5,-421.9321"/>
 <text text-anchor="start" x="210" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">31</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_24)" stroke="transparent" stroke-width="3" points="247,-420.4321 247,-461.4321 287,-461.4321 287,-420.4321 247,-420.4321"/>
+<polygon fill="url(#r_24)" stroke="none" stroke-width="3" points="247,-420.4321 247,-461.4321 287,-461.4321 287,-420.4321 247,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-421.9321 248.5,-459.9321 285.5,-459.9321 285.5,-421.9321 248.5,-421.9321"/>
 <text text-anchor="start" x="260" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">32</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_25)" stroke="transparent" stroke-width="3" points="297,-420.4321 297,-461.4321 337,-461.4321 337,-420.4321 297,-420.4321"/>
+<polygon fill="url(#r_25)" stroke="none" stroke-width="3" points="297,-420.4321 297,-461.4321 337,-461.4321 337,-420.4321 297,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-421.9321 298.5,-459.9321 335.5,-459.9321 335.5,-421.9321 298.5,-421.9321"/>
 <text text-anchor="start" x="310" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">33</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_26)" stroke="transparent" stroke-width="3" points="347,-420.4321 347,-461.4321 387,-461.4321 387,-420.4321 347,-420.4321"/>
+<polygon fill="url(#r_26)" stroke="none" stroke-width="3" points="347,-420.4321 347,-461.4321 387,-461.4321 387,-420.4321 347,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-421.9321 348.5,-459.9321 385.5,-459.9321 385.5,-421.9321 348.5,-421.9321"/>
 <text text-anchor="start" x="360" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">34</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_27)" stroke="transparent" stroke-width="3" points="397,-420.4321 397,-461.4321 437,-461.4321 437,-420.4321 397,-420.4321"/>
+<polygon fill="url(#r_27)" stroke="none" stroke-width="3" points="397,-420.4321 397,-461.4321 437,-461.4321 437,-420.4321 397,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-421.9321 398.5,-459.9321 435.5,-459.9321 435.5,-421.9321 398.5,-421.9321"/>
 <text text-anchor="start" x="410" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">35</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_28)" stroke="transparent" stroke-width="3" points="447,-420.4321 447,-461.4321 487,-461.4321 487,-420.4321 447,-420.4321"/>
+<polygon fill="url(#r_28)" stroke="none" stroke-width="3" points="447,-420.4321 447,-461.4321 487,-461.4321 487,-420.4321 447,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-421.9321 448.5,-459.9321 485.5,-459.9321 485.5,-421.9321 448.5,-421.9321"/>
 <text text-anchor="start" x="460" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">36</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_29)" stroke="transparent" stroke-width="3" points="497,-420.4321 497,-461.4321 537,-461.4321 537,-420.4321 497,-420.4321"/>
+<polygon fill="url(#r_29)" stroke="none" stroke-width="3" points="497,-420.4321 497,-461.4321 537,-461.4321 537,-420.4321 497,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-421.9321 498.5,-459.9321 535.5,-459.9321 535.5,-421.9321 498.5,-421.9321"/>
 <text text-anchor="start" x="510" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">37</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_30)" stroke="transparent" stroke-width="3" points="547,-420.4321 547,-461.4321 587,-461.4321 587,-420.4321 547,-420.4321"/>
+<polygon fill="url(#r_30)" stroke="none" stroke-width="3" points="547,-420.4321 547,-461.4321 587,-461.4321 587,-420.4321 547,-420.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-421.9321 548.5,-459.9321 585.5,-459.9321 585.5,-421.9321 548.5,-421.9321"/>
 <text text-anchor="start" x="560" y="-437.2321" font-family="Times,serif" font-size="14.00" fill="#000000">38</text>
-<polygon fill="#ffa500" stroke="transparent" stroke-width="3" points="147,-369.4321 147,-410.4321 187,-410.4321 187,-369.4321 147,-369.4321"/>
+<polygon fill="#ffa500" stroke="none" stroke-width="3" points="147,-369.4321 147,-410.4321 187,-410.4321 187,-369.4321 147,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-370.9321 148.5,-408.9321 185.5,-408.9321 185.5,-370.9321 148.5,-370.9321"/>
 <text text-anchor="start" x="160" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">40</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_31)" stroke="transparent" stroke-width="3" points="197,-369.4321 197,-410.4321 237,-410.4321 237,-369.4321 197,-369.4321"/>
+<polygon fill="url(#r_31)" stroke="none" stroke-width="3" points="197,-369.4321 197,-410.4321 237,-410.4321 237,-369.4321 197,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-370.9321 198.5,-408.9321 235.5,-408.9321 235.5,-370.9321 198.5,-370.9321"/>
 <text text-anchor="start" x="210" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">41</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_32)" stroke="transparent" stroke-width="3" points="247,-369.4321 247,-410.4321 287,-410.4321 287,-369.4321 247,-369.4321"/>
+<polygon fill="url(#r_32)" stroke="none" stroke-width="3" points="247,-369.4321 247,-410.4321 287,-410.4321 287,-369.4321 247,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-370.9321 248.5,-408.9321 285.5,-408.9321 285.5,-370.9321 248.5,-370.9321"/>
 <text text-anchor="start" x="260" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">42</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_33)" stroke="transparent" stroke-width="3" points="297,-369.4321 297,-410.4321 337,-410.4321 337,-369.4321 297,-369.4321"/>
+<polygon fill="url(#r_33)" stroke="none" stroke-width="3" points="297,-369.4321 297,-410.4321 337,-410.4321 337,-369.4321 297,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-370.9321 298.5,-408.9321 335.5,-408.9321 335.5,-370.9321 298.5,-370.9321"/>
 <text text-anchor="start" x="310" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">43</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_34)" stroke="transparent" stroke-width="3" points="347,-369.4321 347,-410.4321 387,-410.4321 387,-369.4321 347,-369.4321"/>
+<polygon fill="url(#r_34)" stroke="none" stroke-width="3" points="347,-369.4321 347,-410.4321 387,-410.4321 387,-369.4321 347,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-370.9321 348.5,-408.9321 385.5,-408.9321 385.5,-370.9321 348.5,-370.9321"/>
 <text text-anchor="start" x="360" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">44</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_35)" stroke="transparent" stroke-width="3" points="397,-369.4321 397,-410.4321 437,-410.4321 437,-369.4321 397,-369.4321"/>
+<polygon fill="url(#r_35)" stroke="none" stroke-width="3" points="397,-369.4321 397,-410.4321 437,-410.4321 437,-369.4321 397,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-370.9321 398.5,-408.9321 435.5,-408.9321 435.5,-370.9321 398.5,-370.9321"/>
 <text text-anchor="start" x="410" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">45</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_36)" stroke="transparent" stroke-width="3" points="447,-369.4321 447,-410.4321 487,-410.4321 487,-369.4321 447,-369.4321"/>
+<polygon fill="url(#r_36)" stroke="none" stroke-width="3" points="447,-369.4321 447,-410.4321 487,-410.4321 487,-369.4321 447,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-370.9321 448.5,-408.9321 485.5,-408.9321 485.5,-370.9321 448.5,-370.9321"/>
 <text text-anchor="start" x="460" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">46</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_37)" stroke="transparent" stroke-width="3" points="497,-369.4321 497,-410.4321 537,-410.4321 537,-369.4321 497,-369.4321"/>
+<polygon fill="url(#r_37)" stroke="none" stroke-width="3" points="497,-369.4321 497,-410.4321 537,-410.4321 537,-369.4321 497,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-370.9321 498.5,-408.9321 535.5,-408.9321 535.5,-370.9321 498.5,-370.9321"/>
 <text text-anchor="start" x="510" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">47</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_38)" stroke="transparent" stroke-width="3" points="547,-369.4321 547,-410.4321 587,-410.4321 587,-369.4321 547,-369.4321"/>
+<polygon fill="url(#r_38)" stroke="none" stroke-width="3" points="547,-369.4321 547,-410.4321 587,-410.4321 587,-369.4321 547,-369.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-370.9321 548.5,-408.9321 585.5,-408.9321 585.5,-370.9321 548.5,-370.9321"/>
 <text text-anchor="start" x="560" y="-386.2321" font-family="Times,serif" font-size="14.00" fill="#000000">48</text>
 <defs>
 <stop offset="1" style="stop-color:#ff0000;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_39)" stroke="transparent" stroke-width="3" points="147,-318.4321 147,-359.4321 187,-359.4321 187,-318.4321 147,-318.4321"/>
+<polygon fill="url(#r_39)" stroke="none" stroke-width="3" points="147,-318.4321 147,-359.4321 187,-359.4321 187,-318.4321 147,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-319.9321 148.5,-357.9321 185.5,-357.9321 185.5,-319.9321 148.5,-319.9321"/>
 <text text-anchor="start" x="160" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">50</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_40)" stroke="transparent" stroke-width="3" points="197,-318.4321 197,-359.4321 237,-359.4321 237,-318.4321 197,-318.4321"/>
+<polygon fill="url(#r_40)" stroke="none" stroke-width="3" points="197,-318.4321 197,-359.4321 237,-359.4321 237,-318.4321 197,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-319.9321 198.5,-357.9321 235.5,-357.9321 235.5,-319.9321 198.5,-319.9321"/>
 <text text-anchor="start" x="210" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">51</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_41)" stroke="transparent" stroke-width="3" points="247,-318.4321 247,-359.4321 287,-359.4321 287,-318.4321 247,-318.4321"/>
+<polygon fill="url(#r_41)" stroke="none" stroke-width="3" points="247,-318.4321 247,-359.4321 287,-359.4321 287,-318.4321 247,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-319.9321 248.5,-357.9321 285.5,-357.9321 285.5,-319.9321 248.5,-319.9321"/>
 <text text-anchor="start" x="260" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">52</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_42)" stroke="transparent" stroke-width="3" points="297,-318.4321 297,-359.4321 337,-359.4321 337,-318.4321 297,-318.4321"/>
+<polygon fill="url(#r_42)" stroke="none" stroke-width="3" points="297,-318.4321 297,-359.4321 337,-359.4321 337,-318.4321 297,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-319.9321 298.5,-357.9321 335.5,-357.9321 335.5,-319.9321 298.5,-319.9321"/>
 <text text-anchor="start" x="310" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">53</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_43)" stroke="transparent" stroke-width="3" points="347,-318.4321 347,-359.4321 387,-359.4321 387,-318.4321 347,-318.4321"/>
+<polygon fill="url(#r_43)" stroke="none" stroke-width="3" points="347,-318.4321 347,-359.4321 387,-359.4321 387,-318.4321 347,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-319.9321 348.5,-357.9321 385.5,-357.9321 385.5,-319.9321 348.5,-319.9321"/>
 <text text-anchor="start" x="360" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">54</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_44)" stroke="transparent" stroke-width="3" points="397,-318.4321 397,-359.4321 437,-359.4321 437,-318.4321 397,-318.4321"/>
+<polygon fill="url(#r_44)" stroke="none" stroke-width="3" points="397,-318.4321 397,-359.4321 437,-359.4321 437,-318.4321 397,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-319.9321 398.5,-357.9321 435.5,-357.9321 435.5,-319.9321 398.5,-319.9321"/>
 <text text-anchor="start" x="410" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">55</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_45)" stroke="transparent" stroke-width="3" points="447,-318.4321 447,-359.4321 487,-359.4321 487,-318.4321 447,-318.4321"/>
+<polygon fill="url(#r_45)" stroke="none" stroke-width="3" points="447,-318.4321 447,-359.4321 487,-359.4321 487,-318.4321 447,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-319.9321 448.5,-357.9321 485.5,-357.9321 485.5,-319.9321 448.5,-319.9321"/>
 <text text-anchor="start" x="460" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">56</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_46)" stroke="transparent" stroke-width="3" points="497,-318.4321 497,-359.4321 537,-359.4321 537,-318.4321 497,-318.4321"/>
+<polygon fill="url(#r_46)" stroke="none" stroke-width="3" points="497,-318.4321 497,-359.4321 537,-359.4321 537,-318.4321 497,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-319.9321 498.5,-357.9321 535.5,-357.9321 535.5,-319.9321 498.5,-319.9321"/>
 <text text-anchor="start" x="510" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">57</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_47)" stroke="transparent" stroke-width="3" points="547,-318.4321 547,-359.4321 587,-359.4321 587,-318.4321 547,-318.4321"/>
+<polygon fill="url(#r_47)" stroke="none" stroke-width="3" points="547,-318.4321 547,-359.4321 587,-359.4321 587,-318.4321 547,-318.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-319.9321 548.5,-357.9321 585.5,-357.9321 585.5,-319.9321 548.5,-319.9321"/>
 <text text-anchor="start" x="560" y="-335.2321" font-family="Times,serif" font-size="14.00" fill="#000000">58</text>
-<polygon fill="#ff0000" stroke="transparent" stroke-width="3" points="147,-267.4321 147,-308.4321 187,-308.4321 187,-267.4321 147,-267.4321"/>
+<polygon fill="#ff0000" stroke="none" stroke-width="3" points="147,-267.4321 147,-308.4321 187,-308.4321 187,-267.4321 147,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-268.9321 148.5,-306.9321 185.5,-306.9321 185.5,-268.9321 148.5,-268.9321"/>
 <text text-anchor="start" x="160" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">60</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_48)" stroke="transparent" stroke-width="3" points="197,-267.4321 197,-308.4321 237,-308.4321 237,-267.4321 197,-267.4321"/>
+<polygon fill="url(#r_48)" stroke="none" stroke-width="3" points="197,-267.4321 197,-308.4321 237,-308.4321 237,-267.4321 197,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-268.9321 198.5,-306.9321 235.5,-306.9321 235.5,-268.9321 198.5,-268.9321"/>
 <text text-anchor="start" x="210" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">61</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_49)" stroke="transparent" stroke-width="3" points="247,-267.4321 247,-308.4321 287,-308.4321 287,-267.4321 247,-267.4321"/>
+<polygon fill="url(#r_49)" stroke="none" stroke-width="3" points="247,-267.4321 247,-308.4321 287,-308.4321 287,-267.4321 247,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-268.9321 248.5,-306.9321 285.5,-306.9321 285.5,-268.9321 248.5,-268.9321"/>
 <text text-anchor="start" x="260" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">62</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_50)" stroke="transparent" stroke-width="3" points="297,-267.4321 297,-308.4321 337,-308.4321 337,-267.4321 297,-267.4321"/>
+<polygon fill="url(#r_50)" stroke="none" stroke-width="3" points="297,-267.4321 297,-308.4321 337,-308.4321 337,-267.4321 297,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-268.9321 298.5,-306.9321 335.5,-306.9321 335.5,-268.9321 298.5,-268.9321"/>
 <text text-anchor="start" x="310" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">63</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_51)" stroke="transparent" stroke-width="3" points="347,-267.4321 347,-308.4321 387,-308.4321 387,-267.4321 347,-267.4321"/>
+<polygon fill="url(#r_51)" stroke="none" stroke-width="3" points="347,-267.4321 347,-308.4321 387,-308.4321 387,-267.4321 347,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-268.9321 348.5,-306.9321 385.5,-306.9321 385.5,-268.9321 348.5,-268.9321"/>
 <text text-anchor="start" x="360" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">64</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_52)" stroke="transparent" stroke-width="3" points="397,-267.4321 397,-308.4321 437,-308.4321 437,-267.4321 397,-267.4321"/>
+<polygon fill="url(#r_52)" stroke="none" stroke-width="3" points="397,-267.4321 397,-308.4321 437,-308.4321 437,-267.4321 397,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-268.9321 398.5,-306.9321 435.5,-306.9321 435.5,-268.9321 398.5,-268.9321"/>
 <text text-anchor="start" x="410" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">65</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_53)" stroke="transparent" stroke-width="3" points="447,-267.4321 447,-308.4321 487,-308.4321 487,-267.4321 447,-267.4321"/>
+<polygon fill="url(#r_53)" stroke="none" stroke-width="3" points="447,-267.4321 447,-308.4321 487,-308.4321 487,-267.4321 447,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-268.9321 448.5,-306.9321 485.5,-306.9321 485.5,-268.9321 448.5,-268.9321"/>
 <text text-anchor="start" x="460" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">66</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_54)" stroke="transparent" stroke-width="3" points="497,-267.4321 497,-308.4321 537,-308.4321 537,-267.4321 497,-267.4321"/>
+<polygon fill="url(#r_54)" stroke="none" stroke-width="3" points="497,-267.4321 497,-308.4321 537,-308.4321 537,-267.4321 497,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-268.9321 498.5,-306.9321 535.5,-306.9321 535.5,-268.9321 498.5,-268.9321"/>
 <text text-anchor="start" x="510" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">67</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_55)" stroke="transparent" stroke-width="3" points="547,-267.4321 547,-308.4321 587,-308.4321 587,-267.4321 547,-267.4321"/>
+<polygon fill="url(#r_55)" stroke="none" stroke-width="3" points="547,-267.4321 547,-308.4321 587,-308.4321 587,-267.4321 547,-267.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-268.9321 548.5,-306.9321 585.5,-306.9321 585.5,-268.9321 548.5,-268.9321"/>
 <text text-anchor="start" x="560" y="-284.2321" font-family="Times,serif" font-size="14.00" fill="#000000">68</text>
 <defs>
 <stop offset="1" style="stop-color:#a52a2a;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_56)" stroke="transparent" stroke-width="3" points="147,-216.4321 147,-257.4321 187,-257.4321 187,-216.4321 147,-216.4321"/>
+<polygon fill="url(#r_56)" stroke="none" stroke-width="3" points="147,-216.4321 147,-257.4321 187,-257.4321 187,-216.4321 147,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-217.9321 148.5,-255.9321 185.5,-255.9321 185.5,-217.9321 148.5,-217.9321"/>
 <text text-anchor="start" x="160" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">70</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_57)" stroke="transparent" stroke-width="3" points="197,-216.4321 197,-257.4321 237,-257.4321 237,-216.4321 197,-216.4321"/>
+<polygon fill="url(#r_57)" stroke="none" stroke-width="3" points="197,-216.4321 197,-257.4321 237,-257.4321 237,-216.4321 197,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-217.9321 198.5,-255.9321 235.5,-255.9321 235.5,-217.9321 198.5,-217.9321"/>
 <text text-anchor="start" x="210" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">71</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_58)" stroke="transparent" stroke-width="3" points="247,-216.4321 247,-257.4321 287,-257.4321 287,-216.4321 247,-216.4321"/>
+<polygon fill="url(#r_58)" stroke="none" stroke-width="3" points="247,-216.4321 247,-257.4321 287,-257.4321 287,-216.4321 247,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-217.9321 248.5,-255.9321 285.5,-255.9321 285.5,-217.9321 248.5,-217.9321"/>
 <text text-anchor="start" x="260" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">72</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_59)" stroke="transparent" stroke-width="3" points="297,-216.4321 297,-257.4321 337,-257.4321 337,-216.4321 297,-216.4321"/>
+<polygon fill="url(#r_59)" stroke="none" stroke-width="3" points="297,-216.4321 297,-257.4321 337,-257.4321 337,-216.4321 297,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-217.9321 298.5,-255.9321 335.5,-255.9321 335.5,-217.9321 298.5,-217.9321"/>
 <text text-anchor="start" x="310" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">73</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_60)" stroke="transparent" stroke-width="3" points="347,-216.4321 347,-257.4321 387,-257.4321 387,-216.4321 347,-216.4321"/>
+<polygon fill="url(#r_60)" stroke="none" stroke-width="3" points="347,-216.4321 347,-257.4321 387,-257.4321 387,-216.4321 347,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-217.9321 348.5,-255.9321 385.5,-255.9321 385.5,-217.9321 348.5,-217.9321"/>
 <text text-anchor="start" x="360" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">74</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_61)" stroke="transparent" stroke-width="3" points="397,-216.4321 397,-257.4321 437,-257.4321 437,-216.4321 397,-216.4321"/>
+<polygon fill="url(#r_61)" stroke="none" stroke-width="3" points="397,-216.4321 397,-257.4321 437,-257.4321 437,-216.4321 397,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-217.9321 398.5,-255.9321 435.5,-255.9321 435.5,-217.9321 398.5,-217.9321"/>
 <text text-anchor="start" x="410" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">75</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_62)" stroke="transparent" stroke-width="3" points="447,-216.4321 447,-257.4321 487,-257.4321 487,-216.4321 447,-216.4321"/>
+<polygon fill="url(#r_62)" stroke="none" stroke-width="3" points="447,-216.4321 447,-257.4321 487,-257.4321 487,-216.4321 447,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-217.9321 448.5,-255.9321 485.5,-255.9321 485.5,-217.9321 448.5,-217.9321"/>
 <text text-anchor="start" x="460" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">76</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_63)" stroke="transparent" stroke-width="3" points="497,-216.4321 497,-257.4321 537,-257.4321 537,-216.4321 497,-216.4321"/>
+<polygon fill="url(#r_63)" stroke="none" stroke-width="3" points="497,-216.4321 497,-257.4321 537,-257.4321 537,-216.4321 497,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-217.9321 498.5,-255.9321 535.5,-255.9321 535.5,-217.9321 498.5,-217.9321"/>
 <text text-anchor="start" x="510" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">77</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_64)" stroke="transparent" stroke-width="3" points="547,-216.4321 547,-257.4321 587,-257.4321 587,-216.4321 547,-216.4321"/>
+<polygon fill="url(#r_64)" stroke="none" stroke-width="3" points="547,-216.4321 547,-257.4321 587,-257.4321 587,-216.4321 547,-216.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-217.9321 548.5,-255.9321 585.5,-255.9321 585.5,-217.9321 548.5,-217.9321"/>
 <text text-anchor="start" x="560" y="-233.2321" font-family="Times,serif" font-size="14.00" fill="#000000">78</text>
-<polygon fill="#a52a2a" stroke="transparent" stroke-width="3" points="147,-165.4321 147,-206.4321 187,-206.4321 187,-165.4321 147,-165.4321"/>
+<polygon fill="#a52a2a" stroke="none" stroke-width="3" points="147,-165.4321 147,-206.4321 187,-206.4321 187,-165.4321 147,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="148.5,-166.9321 148.5,-204.9321 185.5,-204.9321 185.5,-166.9321 148.5,-166.9321"/>
 <text text-anchor="start" x="160" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">80</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_65)" stroke="transparent" stroke-width="3" points="197,-165.4321 197,-206.4321 237,-206.4321 237,-165.4321 197,-165.4321"/>
+<polygon fill="url(#r_65)" stroke="none" stroke-width="3" points="197,-165.4321 197,-206.4321 237,-206.4321 237,-165.4321 197,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="198.5,-166.9321 198.5,-204.9321 235.5,-204.9321 235.5,-166.9321 198.5,-166.9321"/>
 <text text-anchor="start" x="210" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">81</text>
 <defs>
 <stop offset="1" style="stop-color:#00ff00;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_66)" stroke="transparent" stroke-width="3" points="247,-165.4321 247,-206.4321 287,-206.4321 287,-165.4321 247,-165.4321"/>
+<polygon fill="url(#r_66)" stroke="none" stroke-width="3" points="247,-165.4321 247,-206.4321 287,-206.4321 287,-165.4321 247,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="248.5,-166.9321 248.5,-204.9321 285.5,-204.9321 285.5,-166.9321 248.5,-166.9321"/>
 <text text-anchor="start" x="260" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">82</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_67)" stroke="transparent" stroke-width="3" points="297,-165.4321 297,-206.4321 337,-206.4321 337,-165.4321 297,-165.4321"/>
+<polygon fill="url(#r_67)" stroke="none" stroke-width="3" points="297,-165.4321 297,-206.4321 337,-206.4321 337,-165.4321 297,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="298.5,-166.9321 298.5,-204.9321 335.5,-204.9321 335.5,-166.9321 298.5,-166.9321"/>
 <text text-anchor="start" x="310" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">83</text>
 <defs>
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_68)" stroke="transparent" stroke-width="3" points="347,-165.4321 347,-206.4321 387,-206.4321 387,-165.4321 347,-165.4321"/>
+<polygon fill="url(#r_68)" stroke="none" stroke-width="3" points="347,-165.4321 347,-206.4321 387,-206.4321 387,-165.4321 347,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="348.5,-166.9321 348.5,-204.9321 385.5,-204.9321 385.5,-166.9321 348.5,-166.9321"/>
 <text text-anchor="start" x="360" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">84</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_69)" stroke="transparent" stroke-width="3" points="397,-165.4321 397,-206.4321 437,-206.4321 437,-165.4321 397,-165.4321"/>
+<polygon fill="url(#r_69)" stroke="none" stroke-width="3" points="397,-165.4321 397,-206.4321 437,-206.4321 437,-165.4321 397,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="398.5,-166.9321 398.5,-204.9321 435.5,-204.9321 435.5,-166.9321 398.5,-166.9321"/>
 <text text-anchor="start" x="410" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">85</text>
 <defs>
 <stop offset="1" style="stop-color:#a020f0;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_70)" stroke="transparent" stroke-width="3" points="447,-165.4321 447,-206.4321 487,-206.4321 487,-165.4321 447,-165.4321"/>
+<polygon fill="url(#r_70)" stroke="none" stroke-width="3" points="447,-165.4321 447,-206.4321 487,-206.4321 487,-165.4321 447,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="448.5,-166.9321 448.5,-204.9321 485.5,-204.9321 485.5,-166.9321 448.5,-166.9321"/>
 <text text-anchor="start" x="460" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">86</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_71)" stroke="transparent" stroke-width="3" points="497,-165.4321 497,-206.4321 537,-206.4321 537,-165.4321 497,-165.4321"/>
+<polygon fill="url(#r_71)" stroke="none" stroke-width="3" points="497,-165.4321 497,-206.4321 537,-206.4321 537,-165.4321 497,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="498.5,-166.9321 498.5,-204.9321 535.5,-204.9321 535.5,-166.9321 498.5,-166.9321"/>
 <text text-anchor="start" x="510" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">87</text>
 <defs>
 <stop offset="1" style="stop-color:#ee82ee;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_72)" stroke="transparent" stroke-width="3" points="547,-165.4321 547,-206.4321 587,-206.4321 587,-165.4321 547,-165.4321"/>
+<polygon fill="url(#r_72)" stroke="none" stroke-width="3" points="547,-165.4321 547,-206.4321 587,-206.4321 587,-165.4321 547,-165.4321"/>
 <polygon fill="none" stroke="#000000" stroke-width="3" points="548.5,-166.9321 548.5,-204.9321 585.5,-204.9321 585.5,-166.9321 548.5,-166.9321"/>
 <text text-anchor="start" x="560" y="-182.2321" font-family="Times,serif" font-size="14.00" fill="#000000">88</text>
 <path fill="none" stroke="#000000" stroke-width="10" d="M144,-150.9321C144,-150.9321 590,-150.9321 590,-150.9321 596,-150.9321 602,-156.9321 602,-162.9321 602,-162.9321 602,-617.9321 602,-617.9321 602,-623.9321 596,-629.9321 590,-629.9321 590,-629.9321 144,-629.9321 144,-629.9321 138,-629.9321 132,-623.9321 132,-617.9321 132,-617.9321 132,-162.9321 132,-162.9321 132,-156.9321 138,-150.9321 144,-150.9321"/>
index 59447704dc962cffdbcdf4d565233782392f60ef..c1a1936615b8f28f1bcf90221c37bc91a64e6f88 100644 (file)
@@ -14,7 +14,7 @@
 <stop offset="1" style="stop-color:#0000ff;stop-opacity:1.;"/>
 </radialGradient>
 </defs>
-<polygon fill="url(#r_0)" stroke="transparent" points="-4,4 -4,-128 460,-128 460,4 -4,4"/>
+<polygon fill="url(#r_0)" stroke="none" points="-4,4 -4,-128 460,-128 460,4 -4,4"/>
 <text text-anchor="middle" x="228" y="-7.8" font-family="Times,serif" font-size="14.00" fill="#000000">Graph</text>
 <g id="clust1" class="cluster">
 <title>cluster_1</title>
index dfbac4cf3f8926f3dba5a05c83e076de7ef5ec45..923396e21ed3f6899f12e1146597f992bdb746e5 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 265.00 1102.09" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 1098.0923)">
 <title>G</title>
-<polygon fill="#0000ff" stroke="transparent" points="-4,4 -4,-1098.0923 261,-1098.0923 261,4 -4,4"/>
+<polygon fill="#0000ff" stroke="none" points="-4,4 -4,-1098.0923 261,-1098.0923 261,4 -4,4"/>
 <g id="clust1" class="cluster">
 <title>cluster_1</title>
 <polygon fill="#0000ff" stroke="#000000" points="8,-8 8,-1086.0923 249,-1086.0923 249,-8 8,-8"/>
index a25854cabec5884e9af1abbb5ff66ccaef927534..79c3844318fc61c1cf1a50b1f824da642f2aa900 100644 (file)
@@ -8,14 +8,14 @@
  viewBox="0.00 0.00 454.30 278.44" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 274.44)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-274.44 450.3,-274.44 450.3,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-274.44 450.3,-274.44 450.3,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
-<polygon fill="yellow" stroke="transparent" points="8.5,-42.44 8.5,-63.44 41.5,-63.44 41.5,-42.44 8.5,-42.44"/>
+<polygon fill="yellow" stroke="none" points="8.5,-42.44 8.5,-63.44 41.5,-63.44 41.5,-42.44 8.5,-42.44"/>
 <polygon fill="none" stroke="black" points="8.5,-42.44 8.5,-63.44 41.5,-63.44 41.5,-42.44 8.5,-42.44"/>
 <text text-anchor="start" x="11.5" y="-49.24" font-family="Times,serif" font-size="14.00">class</text>
-<polygon fill="lightblue" stroke="transparent" points="41.5,-42.44 41.5,-63.44 93.5,-63.44 93.5,-42.44 41.5,-42.44"/>
+<polygon fill="lightblue" stroke="none" points="41.5,-42.44 41.5,-63.44 93.5,-63.44 93.5,-42.44 41.5,-42.44"/>
 <polygon fill="none" stroke="black" points="41.5,-42.44 41.5,-63.44 93.5,-63.44 93.5,-42.44 41.5,-42.44"/>
 <text text-anchor="start" x="44.5" y="-49.24" font-family="Times,serif" font-size="14.00">qualifier</text>
 </g>
 <g id="a_node2"><a xlink:href="http://www.graphviz.org/content/node-shapes" xlink:title="&lt;TABLE&gt;">
 <ellipse fill="lightgrey" stroke="black" cx="341.65" cy="-83.44" rx="104.8" ry="83.38"/>
 <g id="a_node2_0"><a xlink:href="http://www.graphviz.org/content/node-shapes#html" xlink:title="&lt;TABLE&gt;">
-<polygon fill="bisque" stroke="transparent" points="275.65,-28.44 275.65,-138.44 407.65,-138.44 407.65,-28.44 275.65,-28.44"/>
+<polygon fill="bisque" stroke="none" points="275.65,-28.44 275.65,-138.44 407.65,-138.44 407.65,-28.44 275.65,-28.44"/>
 <g id="a_node2_1"><a xlink:href="http://go/wiki/Elephant" xlink:title="&lt;TABLE&gt;">
-<polygon fill="bisque" stroke="transparent" points="278.65,-114.44 278.65,-135.44 375.65,-135.44 375.65,-114.44 278.65,-114.44"/>
+<polygon fill="bisque" stroke="none" points="278.65,-114.44 278.65,-135.44 375.65,-135.44 375.65,-114.44 278.65,-114.44"/>
 <polygon fill="none" stroke="black" points="278.65,-114.44 278.65,-135.44 375.65,-135.44 375.65,-114.44 278.65,-114.44"/>
 <text text-anchor="start" x="304.15" y="-121.24" font-family="Times,serif" font-size="14.00">elephant</text>
 </a>
 </g>
-<polygon fill="chartreuse" stroke="transparent" points="377.65,-76.44 377.65,-135.44 404.65,-135.44 404.65,-76.44 377.65,-76.44"/>
+<polygon fill="chartreuse" stroke="none" points="377.65,-76.44 377.65,-135.44 404.65,-135.44 404.65,-76.44 377.65,-76.44"/>
 <polygon fill="none" stroke="black" points="377.65,-76.44 377.65,-135.44 404.65,-135.44 404.65,-76.44 377.65,-76.44"/>
 <text text-anchor="start" x="380.65" y="-83.24" font-family="Times,serif" font-size="14.00">two</text>
 <polygon fill="none" stroke="black" points="278.65,-31.44 278.65,-112.44 323.65,-112.44 323.65,-31.44 278.65,-31.44"/>
 <g id="a_node2_2"><a xlink:href="http://go/wiki/Grey" xlink:title="&lt;TABLE&gt;">
-<polygon fill="grey" stroke="transparent" points="281.65,-34.44 281.65,-109.44 320.65,-109.44 320.65,-34.44 281.65,-34.44"/>
+<polygon fill="grey" stroke="none" points="281.65,-34.44 281.65,-109.44 320.65,-109.44 320.65,-34.44 281.65,-34.44"/>
 <g id="a_node2_3"><a xlink:href="http://go/wiki/Sweet_corn" xlink:title="&lt;TABLE&gt;">
 <polygon fill="none" stroke="black" points="284.65,-84.44 284.65,-106.44 317.65,-106.44 317.65,-84.44 284.65,-84.44"/>
 <text text-anchor="start" x="288.65" y="-91.74" font-family="Times,serif" font-size="14.00">corn</text>
 </a>
 </g>
-<polygon fill="yellow" stroke="transparent" points="284.65,-60.44 284.65,-82.44 317.65,-82.44 317.65,-60.44 284.65,-60.44"/>
+<polygon fill="yellow" stroke="none" points="284.65,-60.44 284.65,-82.44 317.65,-82.44 317.65,-60.44 284.65,-60.44"/>
 <polygon fill="none" stroke="black" points="284.65,-60.44 284.65,-82.44 317.65,-82.44 317.65,-60.44 284.65,-60.44"/>
 <text text-anchor="start" x="297.65" y="-67.74" font-family="Times,serif" font-size="14.00">c</text>
 <g id="a_node2_4"><a xlink:href="http://go/wiki/F" xlink:title="&lt;TABLE&gt;">
@@ -54,7 +54,7 @@
 <polygon fill="none" stroke="black" points="281.65,-34.44 281.65,-109.44 320.65,-109.44 320.65,-34.44 281.65,-34.44"/>
 </a>
 </g>
-<polygon fill="white" stroke="transparent" points="325.65,-76.44 325.65,-112.44 375.65,-112.44 375.65,-76.44 325.65,-76.44"/>
+<polygon fill="white" stroke="none" points="325.65,-76.44 325.65,-112.44 375.65,-112.44 375.65,-76.44 325.65,-76.44"/>
 <polygon fill="none" stroke="black" points="325.65,-76.44 325.65,-112.44 375.65,-112.44 375.65,-76.44 325.65,-76.44"/>
 <text text-anchor="start" x="328.65" y="-90.74" font-family="Times,serif" font-size="14.00">penguin</text>
 <polygon fill="none" stroke="black" stroke-width="4" points="327.65,-33.44 327.65,-72.44 402.65,-72.44 402.65,-33.44 327.65,-33.44"/>
 <title>d&#45;&gt;c</title>
 <path fill="none" stroke="black" d="M70.47,-228.44C115.34,-228.44 229.06,-228.44 293.76,-228.44"/>
 <polygon fill="black" stroke="black" points="294.09,-231.94 304.09,-228.44 294.09,-224.94 294.09,-231.94"/>
-<polygon fill="red" stroke="transparent" points="122,-231.44 122,-267.44 132,-267.44 132,-231.44 122,-231.44"/>
+<polygon fill="red" stroke="none" points="122,-231.44 122,-267.44 132,-267.44 132,-231.44 122,-231.44"/>
 <polygon fill="none" stroke="black" points="122,-231.44 122,-267.44 132,-267.44 132,-231.44 122,-231.44"/>
 <text text-anchor="start" x="125" y="-245.74" font-family="Times,serif" font-size="14.00"> </text>
 <polygon fill="none" stroke="black" points="134,-231.44 134,-267.44 204,-267.44 204,-231.44 134,-231.44"/>
 <text text-anchor="start" x="137" y="-253.24" font-family="Times,serif" font-size="14.00">Edge labels</text>
 <text text-anchor="start" x="158" y="-238.24" font-family="Times,serif" font-size="14.00">also</text>
-<polygon fill="blue" stroke="transparent" points="206,-231.44 206,-267.44 216,-267.44 216,-231.44 206,-231.44"/>
+<polygon fill="blue" stroke="none" points="206,-231.44 206,-267.44 216,-267.44 216,-231.44 206,-231.44"/>
 <polygon fill="none" stroke="black" points="206,-231.44 206,-267.44 216,-267.44 216,-231.44 206,-231.44"/>
 <text text-anchor="start" x="209" y="-245.74" font-family="Times,serif" font-size="14.00"> </text>
 <polygon fill="none" stroke="black" points="119,-228.44 119,-270.44 219,-270.44 219,-228.44 119,-228.44"/>
index 262e0c479ec50a82c0351c594c40b42c6cbed965..c58ca78fa256a1945f32779deadd8ebfe85a9a53 100644 (file)
@@ -10,7 +10,7 @@
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 187)">
 <title>G</title>
 <g id="a_graph0"><a xlink:href="http://www.graphviz.org/doc/info/output.html" xlink:title="output">
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-187 496.84,-187 496.84,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-187 496.84,-187 496.84,4 -4,4"/>
 <text text-anchor="middle" x="246.42" y="-7.8" font-family="Times,serif" font-size="14.00">output</text>
 </a>
 </g>
@@ -37,7 +37,7 @@
 <g id="a_node2"><a xlink:href="http://www.graphviz.org/doc/info/output.html" xlink:title="&lt;TABLE&gt;">
 <ellipse fill="lightblue" stroke="black" cx="43.84" cy="-57" rx="43.68" ry="25"/>
 <g id="a_node2_0"><a xlink:href="http://www.graphviz.org/doc/info/colors.html" xlink:title="&lt;TABLE&gt;">
-<polygon fill="green" stroke="transparent" points="23.84,-46 23.84,-67 63.84,-67 63.84,-46 23.84,-46"/>
+<polygon fill="green" stroke="none" points="23.84,-46 23.84,-67 63.84,-67 63.84,-46 23.84,-46"/>
 <polygon fill="none" stroke="black" points="23.84,-46 23.84,-67 63.84,-67 63.84,-46 23.84,-46"/>
 <text text-anchor="start" x="26.84" y="-52.8" font-family="Times,serif" font-size="14.00">colors</text>
 <polygon fill="none" stroke="black" points="20.84,-43.5 20.84,-70.5 66.84,-70.5 66.84,-43.5 20.84,-43.5"/>
index a6492859b910b0811e43f57c572534345c35dda6..e4ace0b9ff59a2a40a877b9ae69566c671b56ea8 100644 (file)
@@ -8,14 +8,14 @@
  viewBox="0.00 0.00 457.13 278.44" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 274.44)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-274.44 453.13,-274.44 453.13,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-274.44 453.13,-274.44 453.13,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
-<polygon fill="yellow" stroke="transparent" points="8.5,-42.44 8.5,-63.44 42.5,-63.44 42.5,-42.44 8.5,-42.44"/>
+<polygon fill="yellow" stroke="none" points="8.5,-42.44 8.5,-63.44 42.5,-63.44 42.5,-42.44 8.5,-42.44"/>
 <polygon fill="none" stroke="black" points="8.5,-42.44 8.5,-63.44 42.5,-63.44 42.5,-42.44 8.5,-42.44"/>
 <text text-anchor="start" x="11.5" y="-49.24" font-family="Times New Roman,serif" font-size="14.00">class</text>
-<polygon fill="lightblue" stroke="transparent" points="42.5,-42.44 42.5,-63.44 93.5,-63.44 93.5,-42.44 42.5,-42.44"/>
+<polygon fill="lightblue" stroke="none" points="42.5,-42.44 42.5,-63.44 93.5,-63.44 93.5,-42.44 42.5,-42.44"/>
 <polygon fill="none" stroke="black" points="42.5,-42.44 42.5,-63.44 93.5,-63.44 93.5,-42.44 42.5,-42.44"/>
 <text text-anchor="start" x="45.5" y="-49.24" font-family="Times New Roman,serif" font-size="14.00">qualifier</text>
 </g>
 <g id="a_node2"><a xlink:href="http://www.graphviz.org/content/node-shapes" xlink:title="&lt;TABLE&gt;">
 <ellipse fill="lightgrey" stroke="black" cx="343.07" cy="-83.44" rx="106.13" ry="83.38"/>
 <g id="a_node2_0"><a xlink:href="http://www.graphviz.org/content/node-shapes#html" xlink:title="&lt;TABLE&gt;">
-<polygon fill="bisque" stroke="transparent" points="276.07,-28.44 276.07,-138.44 410.07,-138.44 410.07,-28.44 276.07,-28.44"/>
+<polygon fill="bisque" stroke="none" points="276.07,-28.44 276.07,-138.44 410.07,-138.44 410.07,-28.44 276.07,-28.44"/>
 <g id="a_node2_1"><a xlink:href="http://go/wiki/Elephant" xlink:title="&lt;TABLE&gt;">
-<polygon fill="bisque" stroke="transparent" points="279.07,-114.44 279.07,-135.44 377.07,-135.44 377.07,-114.44 279.07,-114.44"/>
+<polygon fill="bisque" stroke="none" points="279.07,-114.44 279.07,-135.44 377.07,-135.44 377.07,-114.44 279.07,-114.44"/>
 <polygon fill="none" stroke="black" points="279.07,-114.44 279.07,-135.44 377.07,-135.44 377.07,-114.44 279.07,-114.44"/>
 <text text-anchor="start" x="305.07" y="-121.24" font-family="Times New Roman,serif" font-size="14.00">elephant</text>
 </a>
 </g>
-<polygon fill="chartreuse" stroke="transparent" points="379.07,-76.44 379.07,-135.44 407.07,-135.44 407.07,-76.44 379.07,-76.44"/>
+<polygon fill="chartreuse" stroke="none" points="379.07,-76.44 379.07,-135.44 407.07,-135.44 407.07,-76.44 379.07,-76.44"/>
 <polygon fill="none" stroke="black" points="379.07,-76.44 379.07,-135.44 407.07,-135.44 407.07,-76.44 379.07,-76.44"/>
 <text text-anchor="start" x="382.07" y="-83.24" font-family="Times New Roman,serif" font-size="14.00">two</text>
 <polygon fill="none" stroke="black" points="279.07,-31.44 279.07,-112.44 325.07,-112.44 325.07,-31.44 279.07,-31.44"/>
 <g id="a_node2_2"><a xlink:href="http://go/wiki/Grey" xlink:title="&lt;TABLE&gt;">
-<polygon fill="grey" stroke="transparent" points="282.07,-34.44 282.07,-109.44 322.07,-109.44 322.07,-34.44 282.07,-34.44"/>
+<polygon fill="grey" stroke="none" points="282.07,-34.44 282.07,-109.44 322.07,-109.44 322.07,-34.44 282.07,-34.44"/>
 <g id="a_node2_3"><a xlink:href="http://go/wiki/Sweet_corn" xlink:title="&lt;TABLE&gt;">
 <polygon fill="none" stroke="black" points="285.07,-84.44 285.07,-106.44 319.07,-106.44 319.07,-84.44 285.07,-84.44"/>
 <text text-anchor="start" x="289.07" y="-91.74" font-family="Times New Roman,serif" font-size="14.00">corn</text>
 </a>
 </g>
-<polygon fill="yellow" stroke="transparent" points="285.07,-60.44 285.07,-82.44 319.07,-82.44 319.07,-60.44 285.07,-60.44"/>
+<polygon fill="yellow" stroke="none" points="285.07,-60.44 285.07,-82.44 319.07,-82.44 319.07,-60.44 285.07,-60.44"/>
 <polygon fill="none" stroke="black" points="285.07,-60.44 285.07,-82.44 319.07,-82.44 319.07,-60.44 285.07,-60.44"/>
 <text text-anchor="start" x="298.57" y="-67.74" font-family="Times New Roman,serif" font-size="14.00">c</text>
 <g id="a_node2_4"><a xlink:href="http://go/wiki/F" xlink:title="&lt;TABLE&gt;">
@@ -54,7 +54,7 @@
 <polygon fill="none" stroke="black" points="282.07,-34.44 282.07,-109.44 322.07,-109.44 322.07,-34.44 282.07,-34.44"/>
 </a>
 </g>
-<polygon fill="white" stroke="transparent" points="327.07,-76.44 327.07,-112.44 377.07,-112.44 377.07,-76.44 327.07,-76.44"/>
+<polygon fill="white" stroke="none" points="327.07,-76.44 327.07,-112.44 377.07,-112.44 377.07,-76.44 327.07,-76.44"/>
 <polygon fill="none" stroke="black" points="327.07,-76.44 327.07,-112.44 377.07,-112.44 377.07,-76.44 327.07,-76.44"/>
 <text text-anchor="start" x="330.07" y="-90.74" font-family="Times New Roman,serif" font-size="14.00">penguin</text>
 <polygon fill="none" stroke="black" stroke-width="4" points="329.07,-33.44 329.07,-72.44 405.07,-72.44 405.07,-33.44 329.07,-33.44"/>
 <title>d&#45;&gt;c</title>
 <path fill="none" stroke="black" d="M71.47,-228.44C117.26,-228.44 230.82,-228.44 295.33,-228.44"/>
 <polygon fill="black" stroke="black" points="295.63,-231.94 305.63,-228.44 295.63,-224.94 295.63,-231.94"/>
-<polygon fill="red" stroke="transparent" points="122,-231.44 122,-267.44 132,-267.44 132,-231.44 122,-231.44"/>
+<polygon fill="red" stroke="none" points="122,-231.44 122,-267.44 132,-267.44 132,-231.44 122,-231.44"/>
 <polygon fill="none" stroke="black" points="122,-231.44 122,-267.44 132,-267.44 132,-231.44 122,-231.44"/>
 <text text-anchor="start" x="125" y="-245.74" font-family="Times New Roman,serif" font-size="14.00"> </text>
 <polygon fill="none" stroke="black" points="134,-231.44 134,-267.44 204,-267.44 204,-231.44 134,-231.44"/>
 <text text-anchor="start" x="137" y="-253.24" font-family="Times New Roman,serif" font-size="14.00">Edge labels</text>
 <text text-anchor="start" x="157.5" y="-238.24" font-family="Times New Roman,serif" font-size="14.00">also</text>
-<polygon fill="blue" stroke="transparent" points="206,-231.44 206,-267.44 216,-267.44 216,-231.44 206,-231.44"/>
+<polygon fill="blue" stroke="none" points="206,-231.44 206,-267.44 216,-267.44 216,-231.44 206,-231.44"/>
 <polygon fill="none" stroke="black" points="206,-231.44 206,-267.44 216,-267.44 216,-231.44 206,-231.44"/>
 <text text-anchor="start" x="209" y="-245.74" font-family="Times New Roman,serif" font-size="14.00"> </text>
 <polygon fill="none" stroke="black" points="119,-228.44 119,-270.44 219,-270.44 219,-228.44 119,-228.44"/>
index 1ecdfcba363ad5a6692bf3efaed7ce52828edd70..2a1b0d1935d74b1f4a3202ca0d56bc20f3d9a22e 100644 (file)
@@ -10,7 +10,7 @@
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 187)">
 <title>G</title>
 <g id="a_graph0"><a xlink:href="http://www.graphviz.org/doc/info/output.html" xlink:title="output">
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-187 500.25,-187 500.25,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-187 500.25,-187 500.25,4 -4,4"/>
 <text text-anchor="middle" x="248.13" y="-7.8" font-family="Times New Roman,serif" font-size="14.00">output</text>
 </a>
 </g>
@@ -37,7 +37,7 @@
 <g id="a_node2"><a xlink:href="http://www.graphviz.org/doc/info/output.html" xlink:title="&lt;TABLE&gt;">
 <ellipse fill="lightblue" stroke="black" cx="45.25" cy="-57" rx="45.01" ry="25"/>
 <g id="a_node2_0"><a xlink:href="http://www.graphviz.org/doc/info/colors.html" xlink:title="&lt;TABLE&gt;">
-<polygon fill="green" stroke="transparent" points="24.25,-46 24.25,-67 66.25,-67 66.25,-46 24.25,-46"/>
+<polygon fill="green" stroke="none" points="24.25,-46 24.25,-67 66.25,-67 66.25,-46 24.25,-46"/>
 <polygon fill="none" stroke="black" points="24.25,-46 24.25,-67 66.25,-67 66.25,-46 24.25,-46"/>
 <text text-anchor="start" x="27.25" y="-52.8" font-family="Times New Roman,serif" font-size="14.00">colors</text>
 <polygon fill="none" stroke="black" points="21.25,-43.5 21.25,-70.5 69.25,-70.5 69.25,-43.5 21.25,-43.5"/>
index 5f9b6bfe972d7f71c766e1e99dc5da388aa4f071..cef8ebe79fdc3f3252f5609dbdbd6560561d6909 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 44.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 40,-40 40,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 40,-40 40,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 6da7dbc393718506bf48fc5a8310109f47d37af0..d3b150cc6728acf7739faf279768e11c3771d1ed 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index d2fd30a6b8968ee8311422c6320f4b2277cb583d..f660b11dcee8cefe1fa5c4f088e5bf0f32864995 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 44.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 40,-40 40,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 40,-40 40,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index a23e633b82765300443b5ca7d17d4006a335e757..d0b4d9eff52145d3b0a7461ada42035c39b8fe29 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 002a3a51f7d304260b19cb0ccd682cb3085e43e7..84364275320584e5126d0a31c05475b4470e6add 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 3652fb726d56f74a6a4b4af52728e9702d60b9c4..d2a52bd9980a317f5fac9f0e8025cb25e7f7124d 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 20e584cb7d8227187e4b4f4926114f7052e88140..4d925f0752669d08a270e30c74f954ebf8005507 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 21369922c112c622cafa584607a838aa5a57d598..0c43887e5835dd0bbe0cbe7d2ca20e6b0342df01 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 44.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 40,-40 40,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 40,-40 40,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index cec35196caf1875a598de2925925b9fa25e3a073..0ed245c7d444f9cee52d55a7c04db415e7de16d8 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 4aba3025ea4153353848e5ce3e760123d49354ff..41203becb0ac072850a029f1fa324d47306e45ab 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 62b8cef1012b185e7879ec3078a3547bddae182c..41fc072db2f3b52cc89dba5e1019da7ddc8b8e94 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 104ede0cee3fb960e436b61bfde4f88ee4b1cc0e..17d5d1a0dd27f1111299374245a8d42e9e16df80 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 52.00 52.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 48)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-48 48,-48 48,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-48 48,-48 48,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 7d27e70c05ed9fcbe2565fdff199db42ab56db79..1d3a7729579c069eee9c5b79b9dbcccfc26b4024 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 70.00 52.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 48)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-48 66,-48 66,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-48 66,-48 66,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 50a47594470ea53bff9e1f8d84f09c4937c9dd52..489e76143fbcab1b0e446d28e94485ddf2c4d423 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 65.49 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 61.49,-40 61.49,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 61.49,-40 61.49,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 294b051f74509eb179681e6cb43845453b1e05fc..a57dc24d38ce45e44aaba39d4319375fae2d9021 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 6575004b8c0803c42e53c76358e1ebd74abcb2ce..dd805bb5385248960a995530a2f140a97900e768 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index c4360378f28e35309d0e3ec6b2303ba851560f97..af9aff332558a821f3b92fbf54db5412742629aa 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index abc088e47ec6626c1628547cfe2b4b35cfa4b7cf..2b3cc52c825850ed5fe301fa5ee44e1fbece15f1 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 556826f555ee1603e252b30f15b9aaf93ebd02c4..7d0351cef0894fb6741da207830a8ada4942c200 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 18f8929c419019e5442b2948d7f2cc41e0b82e5f..c2476ad21119e1cdb336c71f7e58627faeb9ff74 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 8f71a512e774d31366a657098e43c327fa17b651..679c192590ac2d2671dd04819687bd783de656de 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 4a9b77016b00f170e897e1de678ec2187f60cb62..02ae34b11a7bd57f2fab19c8568a2e46fb14a710 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index f5df2adf4d66be9d2edf887f253333c5cdef82da..3179abf439f91a3131d94eee18bdab45e24ca376 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 5b8aa7528ae0d9df47f2eda14db86e0994d742c3..c92c366484273e27a0c2d04f7731f291ca58c77a 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 033242c555aa2b0628585437448df07cfc3a76bd..74ceef44bcbb3ac5adbd7fb80ffe088694d5f2c1 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 7716caad4b38f00a28764f08d5114a37835ca4df..36cb4fdf3144c1562b58d2a6818df8087a369c31 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index c82c8ac188dfb50584012918e52c977b53917ae1..1fbd3bcbf525346501b4eb709f496565766add2c 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index af5018188af47b51655d16b3023b4b3214621373..5976c315fbc96ef430e6444d64c8dd0e1e2ec784 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index f5ccaf8a52e59d2ed3601914ece0b308b2271fc4..f70026c814c3bfec5f11223a884cd3937a440b07 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 294b051f74509eb179681e6cb43845453b1e05fc..a57dc24d38ce45e44aaba39d4319375fae2d9021 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 2f46cbff17bc6172ae6f665755e3c79fa54cd38a..c9b356e5d6d87cedbf4bb6c08d5b2921ebcefb91 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 63.98 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 59.98,-40 59.98,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 59.98,-40 59.98,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 5fa8c7846cc0393150391455c514270c2be75357..66e7f02d70a02ca4a07d0ddf397a9a7d76998a9c 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 60e4c282f3e3087bbb17470f859c423ce14986c7..c639e1e3d787023c675a39e0095f0a8f1f572a24 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 8.00 8.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 4)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-4 4,-4 4,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-4 4,-4 4,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 7716caad4b38f00a28764f08d5114a37835ca4df..36cb4fdf3144c1562b58d2a6818df8087a369c31 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 1e07f5878c0f0132475e923d6f6c29eacf7918df..ed1986827dbe48e7468213352eba5e3aca0ef303 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 11.60 11.60" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 7.6)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-7.6 7.6,-7.6 7.6,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-7.6 7.6,-7.6 7.6,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 002a3a51f7d304260b19cb0ccd682cb3085e43e7..84364275320584e5126d0a31c05475b4470e6add 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 51e1793dac77ecd719b1673cf04ffe57b32ecacc..b4c7d269e39cb05310c24c27aeb77809332ea791 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 0c74c7b94b56693bc832f158adca4bdd8a2f28b1..34b3808a3104b57e2c41b8fd8b5fd2af1e6340ca 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 16121f281abebbcce0edd4870071c1ffadd8dc23..962dc5f5a514444e0a69d8602073085e260c0414 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index fe4e1dd31110b468a935950c831acc01f809d3eb..b439585df27a4437f1e19b4acf8a0f1fd8fc7888 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index ed2869d8fbfcdf413b6364da711449fc2bbf24e4..e998ed4df10101f91ae480677871ada39e4147ac 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 002a3a51f7d304260b19cb0ccd682cb3085e43e7..84364275320584e5126d0a31c05475b4470e6add 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 002a3a51f7d304260b19cb0ccd682cb3085e43e7..84364275320584e5126d0a31c05475b4470e6add 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 4c4120c555efffad498ceaead4a1d46fb87ce3d1..dee97613cb75744891ef53405110ab63ee988435 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 1524c38ea319f2f824e3e9cb6d53f1365fa43d5f..325853484e892c3a00b45558267897c1d3a4d1a8 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 961cac4531a62c9c5b5c6d1a5f6d4f4fd6477403..0d04f0a319c9a883ad1385aa6f1869ac3a81e1cc 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 22eaa10d2ea8c60adb4bba6b5ebc4a41bc1e2aac..11fd975d6c5acf4f6a15de5c049f69d65351bfad 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 623dd022ffba8ee7c5c505a14ec3a956ed72ca10..61a545cd6a4fa58f38ceda35345e7f5bebb50658 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index d7b839617fb34be74c191d06b84547ef9af1f90f..089c20b2f768c1d41c3080b17b41eb203a11d55f 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 289bb1ee3ba1f544500dcc88b4021094abdf655e..b37dee8b083c98faa642e6cf37b88240965c9cf7 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 44.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 40,-40 40,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 40,-40 40,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index af0fd1e4ce4e07df6ec8ef6ff849beb97e620f31..969bea805fe3ec6a284b4ec39993aecfebaa6670 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 59.36" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 55.36)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-55.36 58,-55.36 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-55.36 58,-55.36 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 4adbe70c0c0198c5dfc73c5269d1c927f09ad563..92cf02494bec9f11d8aee099dd5ed7628315bd3f 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index af577b0bf32f082cb1bf3c84057b987a55076b52..92657a1d63e50031b3a07730ac0ba66ec98c10c3 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 1685a0f7e0cadfe303b3f15b8f713e1b4ad1be6f..c3787ef1e790813cb63fb5279adde62a1dbac573 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index fe472665b878e40b38a185c77752fedf2ffe755a..edb93acc75c92b27a2241808c460d2c1fc44ec5e 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 0fb2fec0fc1b2a633f4bcd30928adeae605b3953..6da877ea95634354479f3d0e98030d6b880c59c6 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index e69a38f63130920722aaab5af89ba13891750afa..09e4dbe10825ad62b7d9e017abd144f7e80c3571 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 78.00 60.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 56)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-56 74,-56 74,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-56 74,-56 74,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index aa4cfcdf0f5fb5f29fe02186a77ca290c709a347..d437311a54e395c42b19a30235b19bc8c114a384 100644 (file)
@@ -8,11 +8,11 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
-<polygon fill="none" stroke="transparent" points="54,-36 0,-36 0,0 54,0 54,-36"/>
+<polygon fill="none" stroke="none" points="54,-36 0,-36 0,0 54,0 54,-36"/>
 <polyline fill="none" stroke="black" points="0,0 54,0 "/>
 </g>
 </g>
index 7758ed6ad4b2b22be31410f5301ccd43fba852f9..d00489d61930042577a7f4f27aa05a2c4643938c 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>
index 0fb2fec0fc1b2a633f4bcd30928adeae605b3953..6da877ea95634354479f3d0e98030d6b880c59c6 100644 (file)
@@ -8,7 +8,7 @@
  viewBox="0.00 0.00 62.00 44.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
 <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 40)">
 <title>G</title>
-<polygon fill="white" stroke="transparent" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
+<polygon fill="white" stroke="none" points="-4,4 -4,-40 58,-40 58,4 -4,4"/>
 <!-- a -->
 <g id="node1" class="node">
 <title>a</title>