changeset 0:ef5f8bbf7730 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit a41493893bdcbe330434db9c5851719012b62fa8
author iuc
date Wed, 09 Aug 2017 09:52:52 -0400
parents
children ae9994cf526f
files README.rst circgraph.xml fasta-to-karyotype.py macros.xml macros_conffiles.xml static/images/circos-sample-panel.png static/images/example.png test-data/1/0-0.wig test-data/1/1.gff3 test-data/1/2.wig test-data/1/input.fa test-data/1/links.txt test-data/1/links2.txt test-data/1/output.png test-data/1/output.svg tool-data/all_fasta.loc.sample tool_data_table_conf.xml.sample unified-histogram.py unified-tiles.py wiggle.py
diffstat 20 files changed, 6594 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/README.rst	Wed Aug 09 09:52:52 2017 -0400
@@ -0,0 +1,43 @@
+Galaxy Circos Tool
+==================
+
+.. figure:: ./static/images/example.png
+   :alt: An image showing a circos plot made with the tool.
+
+Features
+--------
+
+-  [x] Ideograms
+
+   -  [x] Can configure most aspects of these. More features on demand
+
+-  [x] 2d Data sources
+
+   -  [x] Histograms
+
+      -  [x] Stacked histograms
+      -  [x] gff3 scores
+      -  [x] wig files
+      -  [x] bed
+      -  [x] Rules
+
+         -  [x] Complex colouring rules
+
+   -  [ ] Heatmaps
+
+      -  [ ] Bugs here.
+
+   -  [x] Tiles
+   -  [x] Scatter Plots
+   -  [x] Line Plots
+
+-  [x] Links
+-  [x] Axes
+-  [x] Backgrounds
+-  [ ] Highlights
+
+   -  [ ] Wedge
+
+-  [x] Test cases
+-  [ ] Grids?
+-  [ ] Fine grained Z-depth control
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/circgraph.xml	Wed Aug 09 09:52:52 2017 -0400
@@ -0,0 +1,409 @@
+<?xml version="1.0"?>
+<tool id="circgraph" name="Circos Builder" version="@WRAPPER_VERSION@">
+    <description>creates circos plots from standard bioinformatics datatypes.</description>
+    <macros>
+        <import>macros.xml</import>
+        <import>macros_conffiles.xml</import>
+    </macros>
+    <expand macro="requirements"/>
+    <version_command>circos --version</version_command>
+    <command detect_errors="aggressive"><![CDATA[
+## Directory structure
+mkdir -p circos/conf/ circos/data/ &&
+
+#if $reference_genome.reference_genome_source == 'history':
+    ln -s '$reference_genome.genome_fasta' genomeref.fa &&
+#end if
+
+#if $reference_genome.reference_genome_source != 'karyotype':
+    ## Process the karyotype.txt file
+    python '$__tool_directory__/fasta-to-karyotype.py'
+
+        #if str($reference_genome.reference_genome_source) == 'cached':
+            '${reference_genome.fasta_indexes.fields.path}'
+        #else if str($reference_genome.reference_genome_source) == 'history':
+            genomeref.fa
+        #end if
+
+        #if $reference_genome.bands:
+            '${reference_genome.bands}'
+        #end if
+    > circos/conf/karyotype.txt &&
+#else
+    cp $reference_genome.input_karyotype circos/conf/karyotype.txt &&
+#end if
+
+mv '$circos_conf' circos/conf/circos.conf &&
+mv '$ticks_conf' circos/conf/ticks.conf &&
+mv '$ideogram_conf' circos/conf/ideogram.conf &&
+mv '$data_conf'  circos/conf/2d.conf &&
+mv '$links_conf'  circos/conf/links.conf &&
+mv '$test_case_conf' circos/conf/galaxy_test_case.xml &&
+
+## 2D Data Plots
+#for $hi, $data in enumerate($sec_tdd.data):
+    #if str($data.plot_format.plot_format_select) == 'tile':
+        python '$__tool_directory__/unified-tiles.py'
+            '${data.plot_format.data_source}' '${data.plot_format.data_source.ext}'
+            > circos/data/data-${hi}.txt &&
+    #else:
+        python $__tool_directory__/unified-histogram.py
+            $data.plot_format.plot_format_select
+            #if str($data.plot_format.plot_format_select) in ('histogram', 'heatmap'):
+                #for $fi, $file in enumerate($data.plot_format.data_source):
+                    '${file}' '${file.ext}'
+                #end for
+            #else:
+                '${data.plot_format.data_source}' '${data.plot_format.data_source.ext}'
+            #end if
+        > circos/data/data-${hi}.txt &&
+    #end if
+#end for
+
+## Link Tracks
+#for $hi, $data in enumerate($sec_links.data):
+    cp '${data.data_source}' circos/data/links-${hi}.txt &&
+#end for
+
+tar cvfz circos.tar.gz circos &&
+
+circos -conf circos/conf/circos.conf
+    ]]></command>
+    <configfiles>
+        <expand macro="configfile_circos_conf" />
+        <expand macro="configfile_ticks_conf" />
+        <expand macro="configfile_ideogram_conf" />
+        <expand macro="configfile_data_conf" />
+        <expand macro="configfile_links_conf" />
+        <expand macro="test_case" />
+    </configfiles>
+    <inputs>
+        <conditional name="reference_genome">
+            <param name="reference_genome_source" type="select" label="Reference Genome">
+                <option value="history" selected="True">From History</option>
+                <option value="cached">Locally Cached</option>
+                <option value="karyotype">Karyotype</option>
+            </param>
+            <when value="cached">
+                <param name="fasta_indexes" type="select" label="Source FASTA Sequence">
+                    <options from_data_table="all_fasta"/>
+                </param>
+                <!-- TODO: multiple band files? -->
+                <param name="bands" type="data" format="bed6,bed12" optional="true" label="Cytogenetic Bands"
+                    help="If defined, will display cytogenetic bands as part of the karyotype configuration"/>
+            </when>
+            <when value="history">
+                <param name="genome_fasta" type="data" format="fasta" label="Source FASTA Sequence"/>
+                <!-- TODO: multiple band files? -->
+                <param name="bands" type="data" format="bed6,bed12" optional="true" label="Cytogenetic Bands"
+                    help="If defined, will display cytogenetic bands as part of the karyotype configuration"/>
+            </when>
+            <when value="karyotype">
+                <param name="input_karyotype" type="data" format="tabular,txt" label="Karyotype Configuration"/>
+            </when>
+        </conditional>
+
+        <section name="ideogram" title="Ideogram Configuration (Genome/Chromosomes)">
+            <param name="spacing" type="float" value="0.005" label="Spacing Between Ideograms"/>
+            <param name="radius" type="float" value="0.90" label="Radius"/>
+            <param name="thickness" type="float" value="10" label="Thickness"/>
+
+            <section name="ideogram_labels" title="Labels">
+                <param name="show_label" type="boolean" truevalue="yes" falsevalue="no" label="Show Label"/>
+                <!--<param type="float" value="0.95" label="Radius" name="radius"/>-->
+                <!--<param type="float" value="10" label="Thickness" name="thickness"/>-->
+                <param name="parallel" type="boolean" label="Parallel" truevalue="yes" falsevalue="no"
+                    help="When set to yes/true, labels will be perpendicular to the tangent of the circle at the location of the label. Otherwise, they will be parallel with the tangent of the circle"/>
+            </section>
+        </section>
+
+        <section name="ticks" title="Ticks">
+            <param name="show_ticks" type="boolean" truevalue="yes" falsevalue="no" label="Show Ticks"/>
+            <!--<param type="boolean" label="Show Tick Labels" name="show_tick_labels" truevalue="true" falsevalue="false" />-->
+            <param name="radius"  type="float" value="1.0" label="Radius"/>
+            <expand macro="circos_color"/>
+            <param name="multiplier" type="float" value="1e-3" label="Multiplier"
+                help="1e-3 means your tick spacing will be in kb (tick spacing of 5000 = every 5kb, labels will read '5kb'). 1e-6 means mb."/>
+
+            <repeat name="tick_group" title="Tick Group">
+                <param name="spacing" type="float" value="5000" label="Tick Spacing" help="Number of bases"/>
+                <param name="size" type="float" value="10" label="Tick Size"/>
+                <param name="show_tick_labels" type="boolean" truevalue="yes" falsevalue="no" label="Show Tick Labels"/>
+                <param name="label_size" type="float" value="20" label="Label Size"/>
+                <param name="label_offset"  type="float" value="10" label="Label Offset"/>
+                <param name="format" type="select" label="Label Format">
+                    <option value="%d" selected="True">Integer</option>
+                    <option value="%f">Float</option>
+                    <option value="%.1f">Float (one decimal)</option>
+                    <option value="%.2f">Float (two decimals)</option>
+                    <sanitizer>
+                        <valid>
+                            <add value="%" />
+                        </valid>
+                    </sanitizer>
+                </param>
+            </repeat>
+
+        </section>
+
+        <section name="sec_tdd" title="2D Data">
+            <repeat name="data" title="2D Data Plot">
+                <!-- Positioning -->
+                <param name="r1" type="float" value="0.89" label="Outside Radius"/>
+                <param name="r0" type="float" value="0.8" label="Inside Radius"/>
+                <param name="orientation" type="boolean" label="Orient Inwards" truevalue="in" falsevalue="out"
+                    help="When yes/true, the plot will face inwards. I.e. lowest values will be to the outside"/>
+
+                <conditional name="plot_format">
+                    <param name="plot_format_select" type="select" label="Plot Format">
+                        <option value="histogram" selected="True">Histogram</option>
+                        <option value="heatmap">Heatmap</option>
+                        <option value="line">Line</option>
+                        <option value="scatter">Scatter</option>
+                        <option value="tile">Tiles</option>
+                    </param>
+                    <when value="histogram">
+                        <param name="data_source" type="data" format="bed6,bed12,wig,gff3" label="Histogram Data Source"
+                            multiple="True" help="If multiple files are selected, they will be treated as a stacked histogram"/>
+                        <section name="format_specific" title="Plot Format Specific Options">
+                            <expand macro="brewer_scale" label="Fill Color" name="fill_color"/>
+                            <param name="extend_bins" type="boolean" label="Join non-abutting Bins" truevalue="yes" falsevalue="no"
+                                help="Join histogram bins that do not touch (abut)" />
+                        </section>
+                    </when>
+                    <when value="heatmap">
+                        <param name="data_source" type="data" format="bed6,bed12,wig,gff3" label="Heatmap Data Source"
+                            multiple="True" help="If multiple files are selected, they will be plotted alongside each other radially"/>
+                        <section name="format_specific" title="Plot Format Specific Options">
+                            <expand macro="brewer_scale" label="Fill Color" name="fill_color"/>
+                            <param name="scale_log_base" type="float" value="1.0" label="Scale Log Base"
+                                help="If scale_log_base&lt;1, the dynamic range of color mapping of small values will be increased. If scale_log_base&gt;1, then dynamic range of large values will be increased."/>
+                        </section>
+                    </when>
+                    <when value="line">
+                        <param name="data_source" type="data" format="bed6,bed12,wig,gff3" label="Line Data Source"/>
+                        <section name="format_specific" title="Plot Format Specific Options">
+                            <expand macro="circos_color" label="Stroke Color" name="color" value="#000000"/>
+                            <param name="thickness" type="integer" value="0" label="Stroke Thickness"/>
+                        </section>
+                    </when>
+                    <when value="scatter">
+                        <param name="data_source" type="data" format="bed6,bed12,wig,gff3" label="Scatter Plot Data Source"/>
+                        <section name="format_specific" title="Plot Format Specific Options">
+                        <!-- glyph, glyph_size, min, max -->
+                            <param name="glyph" type="select" label="Glyph">
+                                <option value="circle">Circle</option>
+                                <option value="triangle">Triangle</option>
+                                <option value="rectangle">Rectangle</option>
+                            </param>
+                            <param name="glyph_size" type="integer" value="8" label="Glyph Size"/>
+                            <param name="data_min" type="float" value="0.0" label="Data Minimum" help="Minimum value of the range of the plot axis, data outside this range are clipped." />
+                            <param name="data_max" type="float" value="1.0" label="Data Maximum" help="Maximum value of the range of the plot axis, data outside this range are clipped." />
+                            <expand macro="circos_color" name="color" value="#555555" label="Color" />
+                            <expand macro="circos_color" name="stroke_color" value="#000000" label="Stroke Color"/>
+                            <param name="stroke_thickness" type="integer" value="0" label="Stroke Thickness"/>
+                        </section>
+                    </when>
+                    <when value="tile">
+                        <param name="data_source" type="data" format="bed6,bed12,gff3" label="Tile Data Source"
+                            help="If your tile source features have scores in them, they will be used in colouration"/>
+                        <section name="format_specific" title="Plot Format Specific Options">
+                            <expand macro="brewer_scale" name="fill_color" label="Fill Color"/>
+                            <expand macro="circos_color" name="color" value="#000000" label="Stroke Color"/>
+                            <param name="stroke_thickness" type="integer" value="0" label="Stroke Thickness"/>
+                            <param name="layers" type="integer" value="15" label="Layers"/>
+                            <param name="thickness" type="float" value="15" label="Thickness" help="In pixels"/>
+                            <param name="padding" type="float" value="8" label="Padding" help="In pixels"/>
+
+                            <conditional name="overflow">
+                                <param name="overflow_behavior" type="select" label="Overflow Behavior">
+                                    <option value="hide">Hide: overflow tiles are not drawn</option>
+                                    <option value="grow">Grow: new layers are added as required</option>
+                                    <option value="collapse">Collapse: overflow tiles are drawn on the first layer</option>
+                                </param>
+                                <when value="hide">
+                                </when>
+                                <when value="grow">
+                                    <expand macro="circos_color" name="layer_overflow_color" label="Layer Overflow Color"/>
+                                </when>
+                                <when value="collapse">
+                                    <expand macro="circos_color" name="layer_overflow_color"  label="Layer Overflow Color"/>
+                                </when>
+                            </conditional>
+                        </section>
+                    </when>
+                </conditional>
+
+                <expand macro="rules" />
+                <expand macro="axes" />
+                <expand macro="backgrounds" />
+            </repeat>
+        </section>
+        <section name="sec_links" title="Link Tracks">
+            <repeat name="data" title="Link Data">
+                <!-- Positioning -->
+                <param name="radius" type="float" value="0.8" label="Inside Radius"
+                    help="This is the radial position of the termination of the link; for relative values, if radius smaller than 1 then it is defined in terms of the inner ideogram radius, otherwise it is defined in terms of the outer ideogram radius" />
+                <param name="data_source" type="data" format="txt" label="Link Data Source" help="Select file with link data. Format: chr1 start1 end1 chr2 start2 end2" />
+                <conditional name="linktype">
+                    <param name="ribbon" type="select" label="Link Type" help="">
+                        <option value="no" selected="true">basic</option>
+                        <option value="yes">ribbon</option>
+                    </param>
+                    <when value="yes">
+                        <param name="twist" type="select" label="Twist Ribbon">
+                            <option value="" selected="true">auto</option>
+                            <option value="twist=yes">always</option>
+                            <option value="flat=yes">never</option>
+                        </param>
+                    </when>
+                    <when value="no"/>
+                </conditional>
+                <expand macro="circos_color" name="color" value="#000000" label="Link Color"/>
+                <param name="thickness" type="float" value="15" label="Thickness" help="In pixels"/>
+                <param name="bezier_radius" type="float" value="0.1" min="0" max="1" label="Bezier Radius"
+                    help="The radial position of the third control point (in addition to the two positions defined by the link coordinates) used to draw the Bezier curve; if this parameter is 0 then straight lines will be used"/>
+
+                <section name="advanced" title="Advanced Settings">
+                    <param name="zdepth" type="float" value="" optional="true" label="Z-depth"
+                        help="Optional. Datasets with a higher z-depth value are drawn on top of data sets with a lower value. Only useful if plotting multiple link tracks"/>
+                    <param name="crest" type="float" value="0.5" min="0" max="1" label="Crest"
+                        help="Two additional Bezier control points can be set by using the crest parameter. When defined, points p3 and p4 are added. These points lie at the same angular position as the start and end link termini and have the radial position. In the crest=0 extreme, p3 and p4 are at the same position as p0,p1. In this case, crest has no effect. When crest=1, p3,p4 are at the radial position of p2, the control point set by bezier_radius"/>
+                    <param name="bezier_radius_purity" type="float" value="0.75" min="0" max="1" label="Bezier Radius Purity"
+                        help="The bezier_radius_purity adjusts the position of p2 for each link. The p2 control point will move along the line formed by the original p2 location and the intersection of p0-p1 and the bisecting radius. When purity = 1, p2' = p2. When purity = 0, p2' = midpoint(p0,p1)"/>
+                    <conditional name="perturbation">
+                        <param name="perturb" type="select" label="Perturb links?"
+                            help="A set of parameters can be used to randomly adjust bezier_radius, bezier_radius_purity, and crest parameters to give the links a more disorganized, organic feel. By perturbing each link you can also show additional texture in the data among links which would have ordinarily overlapped. Each parameter's perturbation amount is defined as a pair of values - pmin,pmax. These are the minimum and maximum multipliers by which the value can be perturbed">
+                            <option value="no" selected="true">no</option>
+                            <option value="yes">yes</option>
+                        </param>
+                        <when value="yes">
+                            <param name="perturb_crest_min" type="float" value="0.5" label="Crest min"
+                                help="For example setting (min,max) = (0.5,1.2) will cause parameter to be randomly scaled between 50-120%"/>
+                            <param name="perturb_crest_max" type="float" value="1.5" label="Crest max"
+                                help="For example setting (min,max) = (0.5,1.2) will cause parameter to be randomly scaled between 50-120%"/>
+                            <param name="perturb_bezier_radius_min" type="float" value="0.5" label="Bezier Radius min"
+                                help="For example setting (min,max) = (0.5,1.2) will cause parameter to be randomly scaled between 50-120%"/>
+                            <param name="perturb_bezier_radius_max" type="float" value="1.5" label="Bezier Radius max"
+                                help="For example setting (min,max) = (0.5,1.2) will cause parameter to be randomly scaled between 50-120%"/>
+                            <param name="perturb_bezier_radius_purity_min" type="float" value="0.5" label="Bezier Radius Purity min"
+                                help="For example setting (min,max) = (0.5,1.2) will cause parameter to be randomly scaled between 50-120%"/>
+                            <param name="perturb_bezier_radius_purity_max" type="float" value="1.5" label="Bezier Radius Purity max"
+                                help="For example setting (min,max) = (0.5,1.2) will cause parameter to be randomly scaled between 50-120%"/>
+                        </when>
+                        <when value="no"/>
+                    </conditional>
+                </section>
+                <expand macro="linkrules"/>
+            </repeat>
+        </section>
+    </inputs>
+    <outputs>
+        <data name="output_png" format="png" from_work_dir="circos.png" label="Circos Plot (png)"/>
+        <data name="output_svg" format="svg" from_work_dir="circos.svg" label="Circos Plot (svg)"/>
+        <data name="output_tar" format="tar.gz" from_work_dir="circos.tar.gz" label="Circos Conf Files"/>
+    </outputs>
+    <tests>
+        <test>
+            <param name="reference_genome|reference_genome_source" value="history"/>
+            <param name="reference_genome|genome_fasta" value="1/input.fa" />
+            <!-- ideograms -->
+            <param name="ideogram|spacing" value="0.005" />
+            <param name="ideogram|radius" value="0.9" />
+            <param name="ideogram|thickness" value="10.0" />
+            <param name="ideogram|ideogram_labels|show_label" value="yes" />
+            <param name="ideogram|ideogram_labels|parallel" value="no" />
+            <!-- Ticks -->
+            <param name="ticks|show_ticks" value="yes" />
+            <param name="ticks|radius" value="1.0" />
+            <param name="ticks|color" value="#17365d" />
+            <param name="ticks|multiplier" value="0.001" />
+            <param name="ticks|tick_group_0|tickspacing" value="5000.0" />
+            <param name="ticks|tick_group_0|size" value="20.0" />
+            <param name="ticks|tick_group_0|show_tick_labels" value="yes" />
+            <param name="ticks|tick_group_0|label_size" value="20.0" />
+            <param name="ticks|tick_group_0|label_offset" value="10.0" />
+            <param name="ticks|tick_group_0|label_format" value="%d" />
+            <param name="ticks|tick_group_1|tickspacing" value="500.0" />
+            <param name="ticks|tick_group_1|size" value="10.0" />
+            <param name="ticks|tick_group_1|show_tick_labels" value="no" />
+            <param name="ticks|tick_group_1|label_size" value="20.0" />
+            <param name="ticks|tick_group_1|label_offset" value="10.0" />
+            <param name="ticks|tick_group_1|label_format" value="%d" />
+            <!-- Data -->
+            <param name="sec_tdd|data_0|r0" value="0.8" />
+            <param name="sec_tdd|data_0|r1" value="0.89" />
+            <param name="sec_tdd|data_0|orientation" value="out" />
+            <param name="sec_tdd|data_0|plot_format|plot_format_select" value="histogram" />
+            <param name="sec_tdd|data_0|plot_format|data_source" value="1/0-0.wig" />
+            <param name="sec_tdd|data_0|plot_format|format_specific|fill_color" value="purples-13-seq" />
+            <param name="sec_tdd|data_0|plot_format|format_specific|extend_bins" value="no" />
+
+            <param name="sec_tdd|data_1|r0" value="0.7" />
+            <param name="sec_tdd|data_1|r1" value="0.79" />
+            <param name="sec_tdd|data_1|orientation" value="out" />
+            <param name="sec_tdd|data_1|plot_format|plot_format_select" value="tile" />
+            <param name="sec_tdd|data_1|plot_format|data_source" value="1/1.gff3" />
+            <param name="sec_tdd|data_1|plot_format|format_specific|fill_color" value="rdylgn-15-div" />
+            <param name="sec_tdd|data_1|plot_format|format_specific|color" value="#000000" />
+            <param name="sec_tdd|data_1|plot_format|format_specific|stroke_thickness" value="1" />
+            <param name="sec_tdd|data_1|plot_format|format_specific|layers" value="15" />
+            <param name="sec_tdd|data_1|plot_format|format_specific|thickness" value="15.0" />
+            <param name="sec_tdd|data_1|plot_format|format_specific|padding" value="8.0" />
+            <param name="sec_tdd|data_1|plot_format|format_specific|overflow|overflow_behavior" value="grow" />
+            <param name="sec_tdd|data_1|plot_format|format_specific|overflow|layer_overflow_color" value="#ffc000" />
+
+            <param name="sec_tdd|data_2|r0" value="0.6" />
+            <param name="sec_tdd|data_2|r1" value="0.69" />
+            <param name="sec_tdd|data_2|orientation" value="out" />
+            <param name="sec_tdd|data_2|plot_format|plot_format_select" value="scatter" />
+            <param name="sec_tdd|data_2|plot_format|data_source" value="1/2.wig" />
+            <param name="sec_tdd|data_2|plot_format|format_specific|glyph" value="triangle" />
+            <param name="sec_tdd|data_2|plot_format|format_specific|glyph_size" value="8" />
+            <param name="sec_tdd|data_2|plot_format|format_specific|data_min" value="0.0" />
+            <param name="sec_tdd|data_2|plot_format|format_specific|data_max" value="1.0" />
+            <param name="sec_tdd|data_2|plot_format|format_specific|color" value="#555555" />
+            <param name="sec_tdd|data_2|plot_format|format_specific|stroke_color" value="#000000" />
+            <param name="sec_tdd|data_2|plot_format|format_specific|stroke_thickness" value="0" />
+            <!-- Links -->
+            <param name="sec_links|data_0|radius" value="0.59" />
+            <param name="sec_links|data_0|data_source" value="1/links.txt" />
+            <param name="sec_links|data_0|linktype|ribbon" value="yes" />
+            <param name="sec_links|data_0|color" value="#9966ff" />
+            <param name="sec_links|data_0|bezier_radius" value="0.3" />
+            <param name="sec_links|data_0|sec_link_rule|rules_0|conditions_0|application|application_select" value="pos1" />
+            <param name="sec_links|data_0|sec_link_rule|rules_0|conditions_0|application|comparison|compare" value="lt" />
+            <param name="sec_links|data_0|sec_link_rule|rules_0|conditions_0|application|comparison|compval" value="25000" />
+            <param name="sec_links|data_0|sec_link_rule|rules_0|actions_0|action|action_select" value="color" />
+            <param name="sec_links|data_0|sec_link_rule|rules_0|actions_0|action|action_value" value="#ffcc00" />
+
+            <param name="sec_links|data_1|radius" value="0.45" />
+            <param name="sec_links|data_1|data_source" value="1/links2.txt" />
+            <param name="sec_links|data_1|linktype|ribbon" value="yes" />
+            <param name="sec_links|data_1|color" value="#42aa42" />
+            <param name="sec_links|data_1|bezier_radius" value="0" />
+
+            <!-- Outputs -->
+            <output name="output_png" file="1/output.png" compare="sim_size" delta="15000" ftype="png" />
+            <output name="output_svg" file="1/output.svg" compare="sim_size" ftype="svg" />
+        </test>
+    </tests>
+    <help><![CDATA[
+Circos
+======
+
+Circos is a software package for visualizing data and information. It visualizes data in a circular layout — this makes Circos ideal for exploring relationships between objects or positions. There are other reasons why a circular layout is advantageous, not the least being the fact that it is attractive.
+
+Circos is ideal for creating publication-quality infographics and illustrations with a high data-to-ink ratio, richly layered data and pleasant symmetries. You have fine control each element in the figure to tailor its focus points and detail to your audience.
+
+.. image:: $PATH_TO_IMAGES/circos-sample-panel.png
+   :alt: several example circos plots
+
+For more information see the Circos documentation_.
+
+.. _documentation: http://circos.ca/documentation/
+
+
+    ]]></help>
+    <expand macro="citations" />
+</tool>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/fasta-to-karyotype.py	Wed Aug 09 09:52:52 2017 -0400
@@ -0,0 +1,48 @@
+#!/usr/bin/env python
+import sys
+
+from Bio import SeqIO
+
+
+for idx, seq in enumerate(SeqIO.parse(sys.argv[1], 'fasta')):
+    sys.stdout.write("chr - {seq_id} {idx} 0 {length} set3-12-qual-{color}\n".format(
+        seq_id=seq.id, idx=idx, length=len(seq), color=((idx + 1) % 12)
+    ))
+
+if len(sys.argv) > 2:
+    # band hs1 p36.32 p36.32 2200000 5100000 gpos25
+    # band hs1 p36.31 p36.31 5100000 6900000 gneg
+    # band hs1 p36.23 p36.23 6900000 8800000 gpos25
+    COLS = ('chrom', 'chromStart', 'chromEnd', 'name', 'score', 'strand',
+            'thickStart', 'thickEnd', 'itemRgb')
+    with open(sys.argv[2], 'r') as handle:
+        for line in handle:
+            lineData = dict(zip(COLS, line.split()))
+            sys.stdout.write("band {chrom} {name} {name} {chromStart} {chromEnd} {color}\n".format(
+                # Can access name because requiring >bed3
+                name=lineData['name'],
+                chrom=lineData['chrom'],
+                chromStart=lineData['chromStart'],
+                chromEnd=lineData['chromEnd'],
+                # ????
+                color=lineData.get('itemRgb', 'gpos50'),
+            ))
+    # band
+    # ID
+    # parentChr
+    # parentChr
+    # START
+    # END COLOR
+
+# chrom - The name of the chromosome (e.g. chr3, chrY, chr2_random) or scaffold (e.g. scaffold10671).
+# chromStart - The starting position of the feature in the chromosome or scaffold. The first base in a chromosome is numbered 0.
+# chromEnd - The ending position of the feature in the chromosome or scaffold. The chromEnd base is not included in the display of the feature. For example, the first 100 bases of a chromosome are defined as chromStart=0, chromEnd=100, and span the bases numbered 0-99.
+# name - Defines the name of the BED line. This label is displayed to the left of the BED line in the Genome Browser window when the track is open to full display mode or directly to the left of the item in pack mode.
+# score - A score between 0 and 1000. If the track line useScore attribute is set to 1 for this annotation data set, the score value will determine the level of gray in which this feature is displayed (higher numbers = darker gray). This table shows the Genome Browser's translation of BED score values into shades of gray:
+# strand - Defines the strand - either '+' or '-'.
+# thickStart - The starting position at which the feature is drawn thickly (for example, the start codon in gene displays). When there is no thick part, thickStart and thickEnd are usually set to the chromStart position.
+# thickEnd - The ending position at which the feature is drawn thickly (for example, the stop codon in gene displays).
+# itemRgb - An RGB value of the form R,G,B (e.g. 255,0,0). If the track line itemRgb attribute is set to "On", this RBG value will determine the display color of the data contained in this BED line. NOTE: It is recommended that a simple color scheme (eight colors or less) be used with this attribute to avoid overwhelming the color resources of the Genome Browser and your Internet browser.
+# blockCount - The number of blocks (exons) in the BED line.
+# blockSizes - A comma-separated list of the block sizes. The number of items in this list should correspond to blockCount.
+# blockStarts - A comma-separated list of block starts. All of the blockStart positions should be calculated relative to chromStart. The number of items in this list should correspond to blockCount.
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/macros.xml	Wed Aug 09 09:52:52 2017 -0400
@@ -0,0 +1,362 @@
+<?xml version="1.0"?>
+<macros>
+  <token name="@WRAPPER_VERSION@">0.9-RC2</token>
+  <xml name="requirements">
+      <requirements>
+        <requirement type="package" version="2.2.3">libgd</requirement>
+        <requirement type="package" version="0.69.5">circos</requirement>
+        <requirement type="package" version="2.7">python</requirement>
+        <requirement type="package" version="0.6.4">bcbiogff</requirement>
+        <requirement type="package" version="1.70">biopython</requirement>
+      </requirements>
+  </xml>
+
+  <xml name="citations">
+    <citations>
+        <citation type="doi">10.1101/gr.092759.109</citation>
+    </citations>
+  </xml>
+
+  <xml name="circos_color"
+      token_label="Color"
+      token_name="color"
+      token_value="#000000"
+      token_help=""
+      >
+    <param label="@LABEL@" type="color" name="@NAME@" value="@VALUE@" help="@HELP@">
+      <sanitizer>
+        <valid initial="string.letters,string.digits">
+          <add value="#" />
+        </valid>
+      </sanitizer>
+    </param>
+  </xml>
+
+  <xml name="auto_color"
+      token_name="color"
+      token_label="Color">
+    <conditional name="@NAME@" label="@LABEL@">
+      <param name="@NAME@_select" type="select" label="@LABEL@">
+        <option value="automatic" selected="true">Automatic Selection</option>
+        <option value="manual">Manual Specification</option>
+      </param>
+      <when value="automatic">
+      </when>
+      <when value="manual">
+        <param name="@NAME@" label="@LABEL@" type="color" value="#000000">
+          <sanitizer>
+            <valid initial="string.letters,string.digits">
+              <add value="#" />
+            </valid>
+          </sanitizer>
+        </param>
+      </when>
+    </conditional>
+  </xml>
+
+  <xml name="brewer_scale"
+      token_name="color"
+      token_label="Color">
+    <param name="@NAME@" type="select" label="@LABEL@">
+      <option value="purples-13-seq">Sequential: Purples</option>
+      <option value="reds-13-seq">Sequential: Reds</option>
+      <option value="oranges-13-seq">Sequential: Oranges</option>
+      <option value="greens-13-seq">Sequential: Greens</option>
+      <option value="blues-13-seq">Sequential: Blues</option>
+      <option value="greys-13-seq">Sequential: Greys</option>
+
+      <option value="bugn-13-seq">Sequential: Blue - Green</option>
+      <option value="bupu-13-seq">Sequential: Blue - Purple</option>
+      <option value="gnbu-13-seq">Sequential: Green - Blue</option>
+      <option value="orrd-13-seq">Sequential: Orange - Red</option>
+      <option value="pubu-13-seq">Sequential: Purple - Blue</option>
+      <option value="pubugn-13-seq">Sequential: Purple - Blue - Green</option>
+      <option value="purd-13-seq">Sequential: Purple - Red</option>
+      <option value="rdpu-13-seq">Sequential: Red - Purple</option>
+      <option value="ylgn-13-seq">Sequential: Yellow - Green</option>
+      <option value="ylgnbu-13-seq">Sequential: Yellow - Green - Blue</option>
+      <option value="ylorbr-13-seq">Sequential: Yellow - Orange - Brown</option>
+      <option value="ylorrd-13-seq">Sequential: Yellow - Orange - Red</option>
+
+      <option value="brbg-15-div">Diverging: Brown - Blue Green</option>
+      <option value="piyg-15-div">Diverging: Pink - Yellow Green</option>
+      <option value="prgn-15-div">Diverging: Purple - Green</option>
+      <option value="puor-15-div">Diverging: Purple - Orange</option>
+      <option value="rdbu-15-div">Diverging: Red - Blue</option>
+      <option value="rdgy-15-div">Diverging: Red - Grey</option>
+      <option value="rdylbu-15-div">Diverging: Red - Yellow - Blue</option>
+      <option value="rdylgn-15-div">Diverging: Red - Yellow - Green</option>
+      <option value="spectral-15-div">Diverging: Spectral</option>
+
+      <option value="accent-8-qual">Qualitative: Accent</option>
+      <option value="dark2-8-qual">Qualitative: Dark2</option>
+      <option value="paired-12-qual">Qualitative: Paired</option>
+      <option value="pastel1-9-qual">Qualitative: Pastel1</option>
+      <option value="pastel2-8-qual">Qualitative: Pastel2</option>
+      <option value="set1-9-qual">Qualitative: Set1</option>
+      <option value="set2-8-qual">Qualitative: Set2</option>
+      <option value="set3-12-qual">Qualitative: Set3</option>
+    </param>
+  </xml>
+
+  <xml name="axes">
+    <section name="sec_axes" title="Axes">
+        <repeat name="axes" title="Axis">
+            <param name="y0" type="float" value="0.0" label="Inside Radius (y0)" help="This is relative to the subplot you are currently in."/>
+            <param name="y1" type="float" value="1" label="Outside Radius (y1)" help="This is relative to the subplot you are currently in."/>
+
+            <expand macro="circos_color"/>
+            <param name="thickness" type="integer" value="1" label="Thickness"/>
+            <param name="spacing" type="float" value="0.1" label="Spacing" help="Relative spacing between each concentric arc"/>
+        </repeat>
+    </section>
+  </xml>
+
+  <xml name="backgrounds">
+    <section name="sec_bkgs" title="Backgrounds">
+        <repeat name="backgrounds" title="Background">
+            <param name="y0" type="float" value="0.0" label="Inside Radius (y0)" help="This is relative to the subplot you are currently in."/>
+            <param name="y1" type="float" value="1" label="Outside Radius (y1)" help="This is relative to the subplot you are currently in."/>
+            <expand macro="circos_color"/>
+        </repeat>
+    </section>
+  </xml>
+
+  <xml name="rules">
+    <section name="sec_rule" title="Rules">
+        <repeat name="rules" title="Rule">
+            <repeat name="conditions" title="Conditions to Apply">
+                <conditional name="application">
+                    <param name="application_select" type="select" label="Condition">
+                        <option value="1">Apply to Every Point</option>
+                        <option value="on">Check for presence/absence per chromosome</option>
+                        <option value="pos">Based on numerical position</option>
+                        <option value="value">Apply based on point value</option>
+                        <option value="var">Apply based on GFF3 qualifier value (when available)</option>
+                    </param>
+                    <when value="1">
+                    </when>
+                    <when value="on">
+                        <param name="on_genomes" type="text" label="Comma separated list of contig IDs"/>
+                    </when>
+                    <when value="pos">
+                        <param name="pos_gt" type="float" label="Greater than this base" value="1000.0" help="Leave as zero to disable this test"/>
+                        <param name="pos_lt" type="float" label="Less than this base" value="0.0" help="Leave as zero to disable this test"/>
+                    </when>
+                    <when value="value">
+                        <param name="pos_gt" type="float" label="Points above this value" value="0.0" help="Leave as zero to disable this test"/>
+                        <param name="pos_lt" type="float" label="Points below this value" value="0.0" help="Leave as zero to disable this test"/>
+                    </when>
+                    <when value="var">
+                        <param name="varname" type="text" label="Qualifier name"
+                            help="Set to the name of the qualifier in the GFF3 file you wish to compare against" />
+
+                        <param name="cond_select" type="select" label="Condition">
+                            <option value="eq">Equal to (string)</option>
+                            <option value="ne">Not equal to (string)</option>
+                        </param>
+
+                        <param name="varvalue" type="text" label="Qualifier value to compare against"/>
+                    </when>
+                </conditional>
+            </repeat>
+            <repeat name="actions" title="Actions to Apply">
+                <conditional name="action">
+                    <param name="action_select" type="select" label="Action">
+                        <option value="show">Change Visibility</option>
+                        <option value="fill_color">Change Fill Color for all points</option>
+                        <option value="fill_color_value">Change Fill Color based on Value</option>
+                        <option value="color">Change Stroke Color</option>
+                        <option value="color_value">Change Stroke Color based on Value</option>
+                    </param>
+                    <when value="show">
+                        <param name="action_value" type="boolean" truevalue="yes" falsevalue="no" label="Show"/>
+                    </when>
+                    <when value="fill_color">
+                        <expand macro="circos_color" name="action_value" label="Fill Color"/>
+                    </when>
+                    <when value="color">
+                        <expand macro="circos_color" name="action_value" label="Stroke Color"/>
+                    </when>
+                    <when value="fill_color_value">
+                        <expand macro="brewer_scale" name="action_value" label="Fill Color"/>
+                        <param name="min_value" type="float" value="-1" label="Expected minimum value of dataset"/>
+                        <param name="max_value" type="float" value="1" label="Expected maximum value of dataset"/>
+                        <param name="invert" type="boolean" truevalue="True" falsevalue="False" label="Invert Color Scale" />
+                    </when>
+                    <when value="color_value">
+                        <expand macro="brewer_scale" name="action_value" label="Stroke Color"/>
+                        <param name="min_value" type="float" value="-1" label="Expected minimum value of dataset"/>
+                        <param name="max_value" type="float" value="1" label="Expected maximum value of dataset"/>
+                        <param name="invert" type="boolean" truevalue="True" falsevalue="False" label="Invert Color Scale" />
+                    </when>
+                </conditional>
+            </repeat>
+            <param name="continue_flow" type="boolean" truevalue="flow = continue" falsevalue="" label="Continue flow"
+                help="Allow rules after this one to be applied in addition to this rule. E.g. if one rule modifies font size, and another font colour, with continued flow they could both be applied rather than whichever was encountered first."/>
+        </repeat>
+    </section>
+  </xml>
+
+  <xml name="linkrules">
+    <section name="sec_link_rule" title="Rules">
+        <repeat name="rules" title="Rule">
+            <repeat name="conditions" title="Conditions to Apply" help="Multiple conditions will be combined using AND">
+                <conditional name="application">
+                    <param name="application_select" type="select" label="Condition">
+                        <option value="always">True / Always Applied</option>
+                        <option value="interchr">Interchromosomal</option>
+                        <option value="intrachr">Intrachromosomal</option>
+                        <option value="chr">Chromosome</option>
+                        <option value="dist">Distance between sides</option>
+                        <option value="start1">Start position Left</option>
+                        <option value="end1">End Position Left</option>
+                        <option value="pos1">Middle position Left</option>
+                        <option value="size1">Size Left</option>
+                        <option value="start2">Start position Right</option>
+                        <option value="end2">End Position Right</option>
+                        <option value="pos2">Middle position Right</option>
+                        <option value="size2">Size Right</option>
+                        <option value="rev1">Reversed Left (link end is reversed (e.g. start &gt; end) </option>
+                        <option value="rev2">Reversed Right (link end is reversed (e.g. start &gt; end) </option>
+                        <option value="inv">Inverted (link is inverted (i.e. one of its ends is reversed). If both ends are reversed, the link is not inverted )</option>
+                    </param>
+                    <when value="chr">
+                        <expand macro="chromosome_comparison"/>
+                    </when>
+                    <when value="start1">
+                        <expand macro="integer_comparison"/>
+                    </when>
+                    <when value="end1">
+                        <expand macro="integer_comparison"/>
+                    </when>
+                    <when value="pos1">
+                        <expand macro="integer_comparison"/>
+                    </when>
+                    <when value="size1">
+                        <expand macro="integer_comparison"/>
+                    </when>
+                    <when value="start2">
+                        <expand macro="integer_comparison"/>
+                    </when>
+                    <when value="end2">
+                        <expand macro="integer_comparison"/>
+                    </when>
+                    <when value="pos2">
+                        <expand macro="integer_comparison"/>
+                    </when>
+                    <when value="size2">
+                        <expand macro="integer_comparison"/>
+                    </when>
+                    <when value="dist">
+                        <expand macro="integer_comparison"/>
+                    </when>
+                    <when value="rev1"/>
+                    <when value="rev2"/>
+                    <when value="inv"/>
+                    <when value="interchr"/>
+                    <when value="intrachr"/>
+                    <when value="always"/>
+                </conditional>
+            </repeat>
+            <repeat name="actions" title="Actions to Apply">
+                <conditional name="action">
+                    <param name="action_select" type="select" label="Action">
+                        <option value="show">Change Visibility</option>
+                        <option value="color">Change Link Color</option>
+                        <option value="thickness">Change Thickness</option>
+                        <option value="z">Change Z-depth</option>
+                    </param>
+                    <when value="show">
+                        <param name="action_value" type="boolean" label="Show" truevalue="yes" falsevalue="no"/>
+                    </when>
+                    <when value="color">
+                        <conditional name="dynamic">
+                            <param name="dynamic_select" type="select" label="Static / Dynamic Change">
+                                <option value="static">Static: Change is always applied</option>
+                                <option value="dynamic">Dynamic: Change is sometimes applied</option>
+                            </param>
+                            <when value="static">
+                                <expand macro="circos_color" label="Link Color" name="action_value"/>
+                            </when>
+                            <when value="dynamic">
+                                <expand macro="brewer_scale" label="Fill Color" name="action_value"/>
+                                <param name="min_value" type="float" value="-1" label="Expected minimum value of dataset"/>
+                                <param name="max_value" type="float" value="1" label="Expected maximum value of dataset"/>
+                                <param name="invert" type="boolean" truevalue="True" falsevalue="False" label="Invert Color Scale" />
+                            </when>
+                        </conditional>
+                    </when>
+                    <when value="thickness">
+                        <param name="action_value" type="integer" value="1" label="Thickness"/>
+                    </when>
+                    <when value="z">
+                        <conditional name="dynamic">
+                            <param name="dynamic_select" type="select" label="Static or Dynamic Z-Depth">
+                                <option value="static">Static</option>
+                                <option value="dynamic">Dynamic (based on value)</option>
+                            </param>
+                            <when value="static">
+                                <param name="action_value" type="float" value="1" label="Z-depth" help="Datasets with a higher z-depth value are drawn on top of datasets with lower z value"/>
+                            </when>
+                            <when value="dynamic">
+                                <param name="min_value" type="float" value="-1" label="Expected minimum value of dataset"/>
+                                <param name="max_value" type="float" value="1" label="Expected maximum value of dataset"/>
+                                <param name="invert" type="boolean" truevalue="True" falsevalue="False" label="Invert Z-Depth Mapping" />
+                            </when>
+                        </conditional>
+                    </when>
+                </conditional>
+            </repeat>
+
+            <param name="continue_flow" type="boolean" label="Continue flow" truevalue="flow = continue" falsevalue="" help="Allow rules after this one to be applied in addition to this rule. E.g. if one rule modifies font size, and another font colour, with continued flow they could both be applied rather than whichever was encountered first." />
+        </repeat>
+    </section>
+  </xml>
+
+  <xml name="integer_comparison">
+    <conditional name="comparison" >
+        <param name="compare" type="select" label="Comparison">
+            <option value="lt">less than</option>
+            <option value="gt">greater than</option>
+        </param>
+        <when value="lt">
+            <param name="compval" value="0" type="integer" label="value"/>
+        </when>
+        <when value="gt">
+            <param name="compval" value="0" type="integer" label="value"/>
+        </when>
+    </conditional>
+  </xml>
+
+  <xml name="chromosome_comparison">
+    <conditional name="comparison" >
+        <param name="compare" type="select" label="Comparison">
+            <option value="on">on chromosome (either side)</option>
+            <option value="from">from chromosome</option>
+            <option value="to">to chromosome</option>
+            <option value="fromto">from-to chromosome</option>
+            <option value="between">between chromosomes</option>
+        </param>
+        <!-- TODO select chromosome from metadata/file column instead of text fields -->
+        <when value="on">
+            <param name="compval" value="chr1" type="text" label="Chromosome"/>
+        </when>
+        <when value="from">
+            <param name="compval" value="chr1" type="text" label="Chromosome"/>
+        </when>
+        <when value="to">
+            <param name="compval" value="chr1" type="text" label="Chromosome"/>
+        </when>
+        <when value="fromto">
+            <param name="compval" value="chr1" type="text" label="From Chromosome"/>
+            <param name="compval2" value="chr1" type="text" label="To Chromosome"/>
+        </when>
+        <when value="between">
+            <param name="compval" value="chr1" type="text" label="Chromosome"/>
+            <param name="compval2" value="chr1" type="text" label="Chromosome"/>
+        </when>
+    </conditional>
+  </xml>
+
+</macros>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/macros_conffiles.xml	Wed Aug 09 09:52:52 2017 -0400
@@ -0,0 +1,424 @@
+<?xml version="1.0"?>
+<macros>
+  <xml name="configfile_circos_conf">
+    <configfile name="circos_conf"><![CDATA[
+<<include colors_fonts_patterns.conf>>
+<<include housekeeping.conf>>
+karyotype = karyotype.txt
+
+<image>
+  <<include etc/image.conf>>
+</image>
+
+<<include ticks.conf>>
+<<include ideogram.conf>>
+<plots>
+    <<include 2d.conf>>
+</plots>
+<links>
+    <<include links.conf>>
+</links>
+
+    ]]></configfile>
+  </xml>
+  <xml name="configfile_ticks_conf">
+    <configfile name="ticks_conf"><![CDATA[
+show_ticks          = ${ticks.show_ticks}
+show_tick_labels    = yes
+
+#def circosColor($value)
+    #set $value = str($value)
+    #set $r = int($value[1:3], 16)
+    #set $g = int($value[3:5], 16)
+    #set $b = int($value[5:], 16)
+    $r, $g, $b
+#end def
+
+
+<ticks>
+    radius           = ${ticks.radius}r
+    color            = $circosColor($ticks.color)
+    thickness        = 2p
+    multiplier       = ${ticks.multiplier}
+
+    #for $tick_group in $ticks.tick_group:
+    <tick>
+        spacing        = ${tick_group.spacing}
+        size           = ${tick_group.size}p
+        show_label     = ${tick_group.show_tick_labels}
+        label_size     = ${tick_group.label_size}p
+        label_offset   = ${tick_group.label_offset}p
+        format         = ${tick_group.format} kb
+        ## TODO: figure out automated tick labels
+        ##if ${ticks.multiplier} * ${tick_group.spacing}
+    </tick>
+    #end for
+</ticks>
+]]>
+    </configfile>
+  </xml>
+  <xml name="configfile_ideogram_conf">
+    <configfile name="ideogram_conf"><![CDATA[
+
+<ideogram>
+
+    <spacing>
+        ## spacing between ideograms
+        default = ${ideogram.spacing}r
+    </spacing>
+
+    # ideogram position, thickness and fill
+    radius           = ${ideogram.radius}r
+    thickness        = ${ideogram.thickness}p
+    fill             = yes
+
+    show_label       = ${ideogram.ideogram_labels.show_label}
+    label_radius     = dims(ideogram,radius) + 0.075r
+    label_size       = 24
+    label_parallel   = ${ideogram.ideogram_labels.parallel}
+
+    show_bands            = yes
+    fill_bands            = yes
+    band_transparency     = 4
+
+</ideogram>
+]]></configfile>
+  </xml>
+  <xml name="configfile_data_conf">
+    <configfile name="data_conf"><![CDATA[
+#for $hi, $data in enumerate($sec_tdd.data):
+<plot>
+    #set plot_type = str($data.plot_format.plot_format_select)
+    #def circosColor($value)
+        #set $value = str($value)
+        #set $r = int($value[1:3], 16)
+        #set $g = int($value[3:5], 16)
+        #set $b = int($value[5:], 16)
+        $r, $g, $b
+    #end def
+
+    type = ${plot_type}
+    file = data/data-${hi}.txt
+
+    r1   = ${data.r1}r
+    r0   = ${data.r0}r
+    orientation = ${data.orientation}
+
+#if str($plot_type) == 'histogram':
+    extend_bin = ${data.plot_format.format_specific.extend_bins}
+    fill_color = ${data.plot_format.format_specific.fill_color}
+#else if str($plot_type) == 'heatmap':
+    color = $circosColor($data.plot_format.format_specific.fill_color)
+    scale_log_base = ${data.plot_format.format_specific.scale_log_base}
+#else if str($plot_type) == 'line':
+    color     = $circosColor($data.plot_format.format_specific.color)
+    thickness = ${data.plot_format.format_specific.thickness}
+#else if str($plot_type) == 'scatter':
+    glyph                = ${data.plot_format.format_specific.glyph}
+    glyph_size           = ${data.plot_format.format_specific.glyph_size}
+    color                = $circosColor($data.plot_format.format_specific.color)
+    stroke_color         = $circosColor($data.plot_format.format_specific.stroke_color)
+    stroke_thickness     = ${data.plot_format.format_specific.stroke_thickness}
+#else if str($plot_type) == 'tile':
+    color                = ${data.plot_format.format_specific.color}
+    stroke_color         = $circosColor($data.plot_format.format_specific.color)
+    stroke_thickness     = ${data.plot_format.format_specific.stroke_thickness}
+    layers               = ${data.plot_format.format_specific.layers}
+    thickness            = ${data.plot_format.format_specific.thickness}
+    padding              = ${data.plot_format.format_specific.padding}
+
+    layers_overflow       = ${data.plot_format.format_specific.overflow.overflow_behavior}
+    #if str($data.plot_format.format_specific.overflow.overflow_behavior) != "hide":
+    layers_overflow_color = $circosColor($data.plot_format.format_specific.overflow.layer_overflow_color)
+    #end if
+#end if
+
+    <rules>
+    #for $rule in $data.sec_rule.rules:
+        <rule>
+            #for $condition in $rule.conditions
+                #if str($condition.application.application_select) == "1":
+                    condition = 1
+                #elif str($condition.application.application_select) == "on":
+                    #set on_str = ' '.join([ "on(%s)" % $chr.strip() for $chr in $condition.application.on_genomes.split(',') ])
+                    condition = $on_str
+                #elif str($condition.application.application_select) == "pos":
+                    #if float($condition.application.pos_gt) != 0:
+                    condition = var(start) > $condition.application.pos_gt
+                    #end if
+
+                    #if float($condition.application.pos_lt) != 0:
+                    condition = var(start) < $condition.application.pos_lt
+                    #end if
+                #elif str($condition.application.application_select) == "value":
+                    #if float($condition.application.pos_gt) != 0:
+                    condition = var(value) > $condition.application.pos_gt
+                    #end if
+
+                    #if float($condition.application.pos_lt) != 0:
+                    condition = var(value) < $condition.application.pos_lt
+                    #end if
+                #elif str($condition.application.application_select) == "var":
+                    condition = var(${condition.application.varname}) ${condition.application.cond_select} "${condition.application.varvalue}"
+                #end if
+            #end for
+
+            #for $action in $rule.actions:
+                #if str($action.action.action_select) == "fill_color_value" or str($action.action.action_select) == "color_value" :
+                    #set x_fill_color = $action.action.action_value
+                    #set x_fill_color_count = int(str($x_fill_color).split('-')[1])
+                    #set x_min = $x_fill_color_count if $action.action.invert else 1
+                    #set x_max = 1 if $action.action.invert else $x_fill_color_count
+                    #set color_action = "fill_color" if str($plot_type) == 'histogram' else "color"
+
+                    $color_action = eval(sprintf("${action.action.action_value}-%d", remap_int(var(value), ${action.action.min_value}, ${action.action.max_value}, ${x_min}, ${x_max})))
+                #else
+                    $action.action.action_select = ${action.action.action_value}
+                #end if
+            #end for
+            $rule.continue_flow
+        </rule>
+    #end for
+    </rules>
+
+    <axes>
+        #for $axis in $data.sec_axes.axes:
+        <axis>
+            color     = $circosColor($axis.color)
+            thickness = ${axis.thickness}
+            spacing   = ${axis.spacing}r
+            y0        = ${axis.y0}r
+            y1        = ${axis.y1}r
+        </axis>
+        #end for
+    </axes>
+    <backgrounds>
+        #for $bkg in $data.sec_bkgs.backgrounds:
+        <background>
+            color = $circosColor($bkg.color)
+            y0    = ${bkg.y0}r
+            y1    = ${bkg.y1}r
+        </background>
+        #end for
+    </backgrounds>
+</plot>
+#end for
+    ]]></configfile>
+  </xml>
+
+  <xml name="configfile_links_conf">
+    <configfile name="links_conf"><![CDATA[
+#for $hi, $data in enumerate($sec_links.data):
+<link>
+    #def circosColor($value)
+        #set $value = str($value)
+        #set $r = int($value[1:3], 16)
+        #set $g = int($value[3:5], 16)
+        #set $b = int($value[5:], 16)
+        $r, $g, $b
+    #end def
+
+    file = data/links-${hi}.txt
+
+    radius   = ${data.radius}r
+    ribbon   = ${data.linktype.ribbon}
+    #if $data.linktype.ribbon == 'yes'
+        ${data.linktype.twist}
+    #end if
+    color                = $circosColor($data.color)
+    bezier_radius        = ${data.bezier_radius}r
+    thickness            = ${data.thickness}
+    crest                = ${data.advanced.crest}
+    bezier_radius_purity = ${data.advanced.bezier_radius_purity}
+
+    #if $data.advanced.perturbation.perturb == 'yes'
+        perturb = yes
+        perturb_crest = ${data.advanced.perturbation.perturb_crest_min},${data.advanced.perturbation.perturb_crest_max}
+        perturb_bezier_radius = ${data.advanced.perturbation.perturb_bezier_radius_min},${data.advanced.perturbation.perturb_bezier_radius_max}
+        perturb_bezier_radius_purity = ${data.advanced.perturbation.perturb_bezier_radius_purity_min},${data.advanced.perturbation.perturb_bezier_radius_purity_max}
+    #end if
+
+    #if $data.advanced.zdepth
+        z = ${data.advanced.zdepth}
+    #end if
+
+    <rules>
+    #for $rule in $data.sec_link_rule.rules:
+        <rule>
+            #for $condition in $rule.conditions
+                #set cond = $condition.application.application_select
+                #if $cond == 'interchr' or $cond == 'intrachr' or $cond == 'inv' or $cond == 'rev'
+                    condition = var($cond)
+                #elif $cond == 'always'
+                    condition = 1
+                #else
+                    #set op = $condition.application.comparison.compare
+                    #set val = $condition.application.comparison.compval
+                    #if $cond == 'chr'
+                        #if $op == 'between' or $op == 'fromto'
+                            #set val2 = $condition.application.comparison.compval2
+                            #set c=''.join([str($op),"(",str($val),",",str($val2),")"])
+                        #else
+                            #set c=''.join([str($op),"(",str($val),")"])
+                        #end if
+                        condition = $c
+                    #else
+                        #if $cond == 'dist' and $op == 'lt'
+                            condition = abs(var(pos1) - var(pos2)) < $val
+                        #elif $cond == 'dist' and $op == 'gt'
+                            condition = abs(var(pos1) - var(pos2)) > $val
+                        #elif $op == 'lt'
+                            condition = var($cond) < $val
+                        #elif $op == 'gt'
+                            condition = var($cond) > $val
+                        #end if
+                    #end if
+                #end if
+            #end for
+
+            #for $action in $rule.actions:
+                #set actiontype = $action.action.action_select
+                #if $actiontype == 'color':
+                    #if $action.action.dynamic.dynamic_select == "static":
+                        #set actionval = $circosColor($action.action.dynamic.action_value)
+                        $actiontype = $actionval
+                    #else
+                        #set x_fill_color = $action.action.dynamic.action_value
+                        #set x_fill_color_count = int(str($x_fill_color).split('-')[1])
+                        #set x_min = $x_fill_color_count if $action.action.dynamic.invert else 1
+                        #set x_max = 1 if $action.action.dynamic.invert else $x_fill_color_count
+
+                        $actiontype = eval(sprintf("${action.action.dynamic.action_value}-%d", remap_int(var(value), ${action.action.dynamic.min_value}, ${action.action.dynamic.max_value}, ${x_min}, ${x_max})))
+                    #end if
+                #elif $actiontype == 'z':
+                    #if $action.action.dynamic.dynamic_select == "static":
+                        #set actionval = $action.action.dynamic.action_value
+                        $actiontype = $actionval
+                    #else
+                        #set x_min = 1000 if $action.action.dynamic.invert else 1
+                        #set x_max = 1 if $action.action.dynamic.invert else 1000
+                        $actiontype = eval(remap_int(var(value), ${action.action.dynamic.min_value}, ${action.action.dynamic.max_value}, ${x_min}, ${x_max}))
+                    #end if
+                #else
+                    #set actionval = $action.action.action_value
+                    $actiontype = $actionval
+                #end if
+            #end for
+
+            $rule.continue_flow
+
+        </rule>
+    #end for
+    </rules>
+</link>
+#end for
+    ]]></configfile>
+  </xml>
+
+  <xml name="test_case">
+    <configfile name="test_case_conf"><![CDATA[
+<!--
+mkdir -p test-data/my-test-case/ &&
+#if $reference_genome.reference_genome_source == 'history':
+    cp '${genome_fasta}' test-data/my-test-case/input.fa &&
+#end if
+
+#if $reference_genome.reference_genome_source != 'karyotype':
+#if $reference_genome.bands:
+cp '${reference_genome.bands}' test-data/my-test-case/bands.${reference_genome.bands.ext} &&
+#end if
+#end if
+
+#for $idx, $data in enumerate($sec_tdd.data):
+    #if str($data.plot_format.plot_format_select) in ('histogram', 'heatmap'):
+        #for $jdx, $file in enumerate($data.plot_format.data_source):
+cp '${file}' test-data/my-test-case/${idx}-${jdx}.${file.ext} &&
+        #end for
+    #else
+cp '${data.plot_format.data_source}' test-data/my-test-case/${idx}.${data.plot_format.data_source.ext} &&
+    #end if
+#end for
+cp "$output_png" test-data/my-test-case/output.png &&
+cp "$output_svg" test-data/my-test-case/output.svg &&
+-->
+<test>
+    <param name="reference_genome|reference_genome_source" value="${reference_genome.reference_genome_source}"/>
+    <param name="reference_genome|genome_fasta" value="my-test-case/input.fa" />
+    <!-- ideograms -->
+    <param name="ideogram|spacing" value="${ideogram.spacing}" />
+    <param name="ideogram|radius" value="${ideogram.radius}" />
+    <param name="ideogram|thickness" value="${ideogram.thickness}" />
+    <param name="ideogram|ideogram_labels|show_label" value="${ideogram.ideogram_labels.show_label}" />
+    <param name="ideogram|ideogram_labels|parallel" value="${ideogram.ideogram_labels.parallel}" />
+    #if $reference_genome.reference_genome_source != 'karyotype':
+    #if $reference_genome.bands:
+    <param name="reference_genome.bands" value="my-test-case/bands.${reference_genome.bands.ext}" />
+    #end if
+    #end if
+    <!-- Ticks -->
+    <param name="ticks|show_ticks" value="${ticks.show_ticks}" />
+    <param name="ticks|radius" value="${ticks.radius}" />
+    <param name="ticks|color" value="${ticks.color}" />
+    <param name="ticks|multiplier" value="${ticks.multiplier}" />
+    #for $idx, $tick_group in enumerate($ticks.tick_group):
+    <param name="ticks|tick_group_${idx}|tickspacing" value="${tick_group.spacing}" />
+    <param name="ticks|tick_group_${idx}|size" value="${tick_group.size}" />
+    <param name="ticks|tick_group_${idx}|show_tick_labels" value="${tick_group.show_tick_labels}" />
+    <param name="ticks|tick_group_${idx}|label_size" value="${tick_group.label_size}" />
+    <param name="ticks|tick_group_${idx}|label_offset" value="${tick_group.label_offset}" />
+    <param name="ticks|tick_group_${idx}|label_format" value="${tick_group.format}" />
+    #end for
+    <!-- Data -->
+    #for $idx, $data_group in enumerate($sec_tdd.data):
+    <param name="sec_tdd|data_${idx}|r0" value="${data_group.r0}" />
+    <param name="sec_tdd|data_${idx}|r1" value="${data_group.r1}" />
+    <param name="sec_tdd|data_${idx}|orientation" value="${data_group.orientation}" />
+    <param name="sec_tdd|data_${idx}|plot_format|plot_format_select" value="${data_group.plot_format.plot_format_select}" />
+        <!-- Note, please double check your files -->
+    #if str($data_group.plot_format.plot_format_select) == 'histogram':
+        #set my_files = ','.join([ "my-test-case/%s-%s.%s" % ($idx, $j, $file.ext) for ($j, $file) in enumerate($data_group.plot_format.data_source)])
+        <param name="sec_tdd|data_${idx}|plot_format|data_source" value="${my_files}" />
+        <param name="sec_tdd|data_${idx}|plot_format|format_specific|fill_color" value="${data_group.plot_format.format_specific.fill_color}" />
+        <param name="sec_tdd|data_${idx}|plot_format|format_specific|extend_bins" value="${data_group.plot_format.format_specific.extend_bins}" />
+    #else if str($data_group.plot_format.plot_format_select) == 'heatmap':
+        #set my_files = ','.join([ "my-test-case/%s-%s.%s" % ($idx, $j, $file.ext) for ($j, $file) in enumerate($data_group.plot_format.data_source)])
+        <param name="sec_tdd|data_${idx}|plot_format|data_source" value="${my_files}" />
+        <param name="sec_tdd|data_${idx}|plot_format|format_specific|fill_color" value="${data_group.plot_format.format_specific.fill_color}" />
+        <param name="sec_tdd|data_${idx}|plot_format|format_specific|scale_log_base" value="${data_group.plot_format.format_specific.scale_log_base}" />
+    #else if str($data_group.plot_format.plot_format_select) == 'line':
+        <param name="sec_tdd|data_${idx}|plot_format|data_source" value="my-test-case/${idx}.${data.plot_format.data_source.ext}" />
+        <param name="sec_tdd|data_${idx}|plot_format|format_specific|color" value="${data_group.plot_format.format_specific.color}" />
+        <param name="sec_tdd|data_${idx}|plot_format|format_specific|stroke" value="${data_group.plot_format.format_specific.stroke}" />
+    #else if str($data_group.plot_format.plot_format_select) == 'scatter':
+        <param name="sec_tdd|data_${idx}|plot_format|data_source" value="my-test-case/${idx}.${data.plot_format.data_source.ext}" />
+        <param name="sec_tdd|data_${idx}|plot_format|format_specific|glyph" value="${data_group.plot_format.format_specific.glyph}" />
+        <param name="sec_tdd|data_${idx}|plot_format|format_specific|glyph_size" value="${data_group.plot_format.format_specific.glyph_size}" />
+        <param name="sec_tdd|data_${idx}|plot_format|format_specific|data_min" value="${data_group.plot_format.format_specific.data_min}" />
+        <param name="sec_tdd|data_${idx}|plot_format|format_specific|data_max" value="${data_group.plot_format.format_specific.data_max}" />
+        <param name="sec_tdd|data_${idx}|plot_format|format_specific|color" value="${data_group.plot_format.format_specific.color}" />
+        <param name="sec_tdd|data_${idx}|plot_format|format_specific|stroke_color" value="${data_group.plot_format.format_specific.stroke_color}" />
+        <param name="sec_tdd|data_${idx}|plot_format|format_specific|stroke_thickness" value="${data_group.plot_format.format_specific.stroke_thickness}" />
+    #else if str($data_group.plot_format.plot_format_select) == 'tile':
+        <param name="sec_tdd|data_${idx}|plot_format|data_source" value="my-test-case/${idx}.${data.plot_format.data_source.ext}" />
+        <param name="sec_tdd|data_${idx}|plot_format|format_specific|fill_color" value="${data_group.plot_format.format_specific.fill_color}" />
+        <param name="sec_tdd|data_${idx}|plot_format|format_specific|color" value="${data_group.plot_format.format_specific.color}" />
+        <param name="sec_tdd|data_${idx}|plot_format|format_specific|stroke_thickness" value="${data_group.plot_format.format_specific.stroke_thickness}" />
+        <param name="sec_tdd|data_${idx}|plot_format|format_specific|layers" value="${data_group.plot_format.format_specific.layers}" />
+        <param name="sec_tdd|data_${idx}|plot_format|format_specific|thickness" value="${data_group.plot_format.format_specific.thickness}" />
+        <param name="sec_tdd|data_${idx}|plot_format|format_specific|padding" value="${data_group.plot_format.format_specific.padding}" />
+        <param name="sec_tdd|data_${idx}|plot_format|format_specific|overflow|overflow_behavior" value="${data_group.plot_format.format_specific.overflow.overflow_behavior}" />
+        #if str($data_group.plot_format.format_specific.overflow.overflow_behavior) != 'hide':
+        <param name="sec_tdd|data_${idx}|plot_format|format_specific|overflow|layer_overflow_color" value="${data_group.plot_format.format_specific.overflow.layer_overflow_color}" />
+        #end if
+    #end if
+    ## Next line intentionally blank
+
+    #end for
+
+    <!-- Outputs -->
+    <output name="output_png" file="my-test-case/output.png" />
+    <output name="output_svg" file="my-test-case/output.svg" />
+</test>
+    ]]></configfile>
+  </xml>
+</macros>
Binary file static/images/circos-sample-panel.png has changed
Binary file static/images/example.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/1/0-0.wig	Wed Aug 09 09:52:52 2017 -0400
@@ -0,0 +1,503 @@
+track type=wiggle_0 name="example" description="discontinuous sine wave"
+fixedStep chrom=ctgA start=1 step=100 span=20
+0
+-0.506365641109759
+-0.873297297213995
+-0.999755839901149
+-0.850919359639177
+-0.467771805322476
+0.0441824483318732
+0.543970523363376
+0.893969648197021
+0.99780327442197
+0.826879540532003
+0.428264391396659
+-0.0882786064717262
+-0.580513008156313
+-0.91289603861164
+-0.993901956906654
+-0.801224790676895
+-0.387920558984219
+0.132202352755937
+0.615921726468774
+0.930039504416137
+0.988059506793465
+0.774005214886395
+0.34681910129778
+-0.175867902248536
+-0.650127523574896
+-0.945366563696042
+-0.980287334634812
+-0.745273974144339
+-0.305040291224202
+0.219189974282818
+0.683063594104854
+0.958847282055722
+0.970600619811948
+0.71508718178021
+0.262665724548229
+-0.262083959018097
+-0.714665612518583
+-0.970455331081526
+-0.959018280889002
+-0.683503793877429
+-0.219778160592474
+0.304466082686301
+0.744871858736274
+0.980168039762288
+0.945562938664219
+0.650585494129627
+0.176461360584952
+-0.346253571205695
+-0.773623338680308
+-0.987966438766777
+-0.930260871990585
+-0.61639657336978
+-0.132799924069858
+0.38736481184216
+0.800863899493182
+0.993835297491596
+0.913141966452114
+0.581003804007494
+0.0888791236810795
+-0.427719512602322
+-0.826540339206424
+-0.997763153807204
+-0.894239655996039
+-0.544476309619657
+-0.044784738601126
+0.467238859047214
+0.850602510646281
+0.999742336443933
+0.873590857634893
+0.50688542994917
+0.000602887030758908
+-0.505845668220208
+-0.873003419373278
+-0.999768979974307
+-0.851235899346026
+-0.468304581575409
+0.043580142003502
+0.543464539388603
+0.893699315464349
+0.997843032362382
+0.827218441309355
+0.428809114528536
+-0.0876780571755001
+-0.580022001304441
+-0.912649778958282
+-0.993968255065378
+-0.801585390637186
+-0.388476165127704
+0.131604733390055
+0.615446655696971
+0.929817798797622
+0.988152215687393
+0.774386809762636
+0.347384505330554
+-0.17527437998892
+-0.64966931671649
+-0.945169845112828
+-0.980406273199548
+-0.745675818665582
+-0.305614388888252
+0.218601708303567
+0.682623146057239
+0.958675934707531
+0.97074555575544
+0.715508491127093
+0.263247394606515
+-0.261502098227572
+-0.714243783495441
+-0.970309689616982
+-0.959188931145217
+-0.683943745214962
+-0.220366267018746
+0.303891763483259
+0.744469472587545
+0.980048388625338
+0.945758969945982
+0.651043228214223
+0.177054754782462
+-0.345687915259853
+-0.773241181283175
+-0.987873011641156
+-0.930481901440504
+-0.616871196227395
+-0.133397447114619
+0.386808923903526
+0.800502717217221
+0.993768276844436
+0.913387562390317
+0.581494388679593
+0.0894796085852885
+-0.427174478343574
+-0.82620083745591
+-0.997722670532666
+-0.89450933876326
+-0.544981897973607
+-0.0453870125923442
+0.466705742943332
+0.850285352482504
+0.999728469607566
+0.873884100529272
+0.507405034549512
+0.00120577384238478
+-0.505325511469513
+-0.87270922421956
+-0.999781756658628
+-0.851552129651776
+-0.468837187612361
+0.0429778198349343
+0.542958357879249
+0.893428657896279
+0.997882427613987
+0.827557041415301
+0.429353681799962
+-0.0870774760106846
+-0.579530783630345
+-0.912403187581549
+-0.994034191943674
+-0.801945699242987
+-0.389031630070668
+0.131007066189432
+0.614971361227045
+0.929595755215624
+0.988244565414863
+0.774768123170331
+0.347949783098507
+-0.174680794021833
+-0.649210873720956
+-0.94497278298608
+-0.980524855413266
+-0.746077392153944
+-0.306188375469783
+0.21801336286854
+0.682182449894674
+0.958504238906709
+0.970890138859323
+0.715929540406099
+0.263828968981531
+-0.260920142388146
+-0.713821694864108
+-0.970163695471254
+-0.959359232762341
+-0.684383447957544
+-0.220954293347872
+0.303317333823826
+0.744066815844409
+0.979928381267452
+0.94595465747008
+0.651500725662311
+0.177648084625384
+-0.345122133665854
+-0.772858742833902
+-0.987779225450561
+-0.930702592685557
+-0.617345594869105
+-0.133994921673036
+0.386252895370368
+0.800141243980293
+0.993700894989533
+0.91363282633698
+0.581984761994295
+0.0900800609660932
+-0.42662928881852
+-0.825861035403859
+-0.99768182461307
+-0.894778696400663
+-0.545487288241457
+-0.0459892700866177
+0.466172457204606
+0.849967885263126
+0.999714239397087
+0.874177025790545
+0.507924454721923
+0.00180866021574464
+-0.504805171046737
+-0.872414711859773
+-0.999794169949471
+-0.851868050441484
+-0.469369623239746
+0.0423754820450979
+0.542451979019298
+0.893157675591189
+0.997921460162468
+0.827895340726768
+0.429898093013001
+-0.0864768631955748
+-0.579039355312569
+-0.91215626457107
+-0.994099767517573
+-0.802305716363335
+-0.389586953611214
+0.130409351371303
+0.614495843231754
+0.929373373750848
+0.98833655594231
+0.775149154970883
+0.348514934396177
+-0.174087144563029
+-0.648752194754925
+-0.944775377387424
+-0.980643081232865
+-0.746478694463463
+-0.306762250760167
+0.217424938191585
+0.681741505777341
+0.958332194715663
+0.971034369071043
+0.716350329464186
+0.264410447461892
+-0.260338091711345
+-0.713399346778001
+-0.970017348697407
+-0.959529185678474
+-0.684822901945355
+-0.221542239366122
+0.302742793916791
+0.743663888653221
+0.979808017732248
+0.946150001165385
+0.651957986307603
+0.178241349898059
+-0.344556226629346
+-0.772476023471494
+-0.98768508022908
+-0.930922945645528
+-0.617819769122481
+-0.134592347527942
+0.385696726444787
+0.799779479913782
+0.993633151951378
+0.913877758202957
+0.582474923773363
+0.0906804806052454
+-0.426083944225323
+-0.825520933173783
+-0.997640616063263
+-0.895047728810343
+-0.545992480239513
+-0.0465915108650422
+0.465639002024868
+0.849650109103536
+0.99969964581767
+0.874469633312244
+0.508443690277607
+0.00241154593170571
+-0.50428464714101
+-0.872119882400963
+-0.999806219842322
+-0.852183661600323
+-0.469901888264038
+0.0417731288529262
+0.541945402992805
+0.892886368647573
+0.997960129993637
+0.828233339120793
+0.430442347969774
+-0.0858762189484769
+-0.578547716529735
+-0.911909010016595
+-0.994164981763242
+-0.802665441867374
+-0.390142135547497
+0.129811589152921
+0.614020101883935
+0.929150654484127
+0.988428187236296
+0.775529905025798
+0.349079959018146
+-0.173493431828281
+-0.648293279985113
+-0.944577628388612
+-0.980760950615372
+-0.746879725448277
+-0.307336014550815
+0.216836434486577
+0.68130031386551
+0.958159802196927
+0.971178246338178
+0.716770858148409
+0.264991829836246
+-0.259755946408727
+-0.712976739390632
+-0.969870649348633
+-0.959698789831842
+-0.685262107018665
+-0.222130104859792
+0.302168143970983
+0.743260691160433
+0.979687298063475
+0.946345000960895
+0.652415009983898
+0.17883455038485
+-0.34399019435602
+-0.772093023335059
+-0.987590576010932
+-0.931142960240324
+-0.618293718815172
+-0.13518972446219
+0.385140417328934
+0.79941742514918
+0.993565047754595
+0.914122357899222
+0.582964873838637
+0.091280867284509
+-0.425538444762198
+-0.825180530889296
+-0.997599044898223
+-0.895316435894515
+-0.546497473784151
+-0.0471937347087195
+0.465105377598017
+0.849332024119238
+0.999684688874618
+0.874761922988011
+0.508962741027838
+0.00301443077113541
+-0.503763939941528
+-0.871824735950293
+-0.999817906332802
+-0.852498963013576
+-0.470433982491772
+0.0411707604773582
+0.541438629983896
+0.892614737164045
+0.997998437093437
+0.828571036474523
+0.430986446472459
+-0.0852755434877088
+-0.57805586746054
+-0.911661424007995
+-0.994229834656976
+-0.803024875624353
+-0.390697175677724
+0.129213779751557
+0.613544137356508
+0.92892759749641
+0.988519459263516
+0.775910373196683
+0.349644856759043
+-0.17289965603339
+-0.647834129578325
+-0.944379536061519
+-0.980878463517946
+-0.747280484962623
+-0.30790966663318
+0.216247851967423
+0.680858874319544
+0.957987061413159
+0.971321770608431
+0.717191126305919
+0.265573115893276
+-0.259173706691886
+-0.712553872855609
+-0.969723597478254
+-0.959868045160799
+-0.685701063017834
+-0.22271788961521
+0.301593384195272
+0.742857223512596
+0.979566222305013
+0.946539656785734
+0.652871796525078
+0.179427685870145
+-0.343424037051613
+-0.771709742563807
+-0.987495712830468
+-0.931362636389977
+-0.618767443774911
+-0.13578705225865
+0.384583968225014
+0.799055079818084
+0.993496582423937
+0.91436662533687
+0.583454612012034
+0.0918812207856598
+-0.424992790627422
+-0.824839828674128
+-0.997557111133059
+-0.895584817555511
+-0.547002268691819
+-0.0477959413987577
+0.464571584118009
+0.849013630425847
+0.999669368573369
+0.87505389471161
+0.509481606783953
+0.0036173145149015
+-0.503243049637554
+-0.871529272615042
+-0.999829229416663
+-0.85281395456664
+-0.470965905729547
+0.0405683771373384
+0.540931660176769
+0.892342781239334
+0.998036381447947
+0.828908432665215
+0.431530388323292
+-0.0846748370315997
+-0.577563808283757
+-0.911413506635259
+-0.994294326175203
+-0.803384017503629
+-0.391252073800153
+0.128615923384498
+0.613067949822471
+0.928704202868774
+0.988610371990796
+0.776290559345248
+0.350209627413543
+-0.172305817394175
+-0.647374743701449
+-0.944181100478148
+-0.980995619897873
+-0.747680972860835
+-0.308483206798754
+0.215659190848055
+0.680417187299892
+0.957813972427147
+0.971464941829636
+0.717611133783957
+0.266154305421701
+-0.258591372772452
+-0.71213074732663
+-0.969576193139719
+-0.960036951603826
+-0.686139769783315
+-0.223305593418733
+0.301018514798568
+0.742453485856362
+0.979444790500868
+0.946733968569148
+0.653328345765115
+0.180020756138357
+-0.342857754921908
+-0.77132618129705
+-0.987400490722168
+-0.931581974014641
+-0.619240943829511
+-0.13638433070021
+0.38402737933528
+0.798692444052197
+0.993427755984289
+0.914610560427116
+0.583944138115545
+0.0924815408904855
+-0.424446982019324
+-0.824498826652114
+-0.997514814783015
+-0.895852873695781
+-0.547506864779039
+-0.048398130716271
+0.464037621778865
+0.848694928139091
+0.99965368491949
+0.875345548376914
+0.51000028735736
+0.00422019694387214
+-0.502721976418416
+-0.871233492502601
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/1/1.gff3	Wed Aug 09 09:52:52 2017 -0400
@@ -0,0 +1,268 @@
+##gff-version 3
+# Note: See http://song.sourceforge.net
+ctgA	example	contig	1	50001	.	.	.	Name=ctgA
+ctgA	example	remark	1659	1984	1110	+	.	Name=f07;Note=This is an example
+ctgA	example	remark	3014	6130	999	+	.	Name=f06;Note=This is another example
+ctgA	example	remark	4715	5968	444	-	.	Name=f05;Note=Ok! Ok! I get the message.
+ctgA	example	remark	13280	16394	203	+	.	Name=f08
+ctgA	example	remark	15329	15533	1000	+	.	Name=f10
+ctgA	example	remark	19157	22915	100	-	.	Name=f13
+ctgA	example	remark	22132	24633	320	+	.	Name=f15
+ctgA	example	remark	23072	23185	850	+	.	Name=f14
+ctgA	example	remark	24562	28338	208	+	.	Name=f02
+ctgA	example	remark	36034	38167	100	+	.	Name=f09
+ctgA	example	remark	36649	40440	300	-	.	Name=f03
+ctgA	example	remark	37242	38653	10	+	.	Name=f04
+ctgA	example	remark	44705	47713	400	-	.	Name=f01
+ctgA	example	remark	46990	48410	100	-	.	Name=f11
+ctgA	example	remark	49758	50000	3040	-	.	Name=f12
+
+ctgA	example	SNP	1000	1000	0.987	.	.	ID=FakeSNP1;Name=FakeSNP;Note=This is a fake SNP that should appear at 1000 with length 1	
+
+ctgA	example	remark	1000	2000	.	.	.	Name=Remark:hga;Alias=hga
+ctgA	example	protein_coding_primary_transcript	1100	2000	.	+	.	Name=Gene:hga;Alias=hga
+ctgA	example	polypeptide	1200	1900	.	+	.	Name=Protein:HGA;Alias=hga
+ctgA	example	protein_coding_primary_transcript	1600	3000	.	-	.	Name=Gene:hgb;Alias=hgb
+ctgA	example	polypeptide	1800	2900	.	-	.	Name=Protein:HGB;Alias=hgb
+
+ctgA	example	polypeptide_domain	11911	15561	.	+	502	Name=m11;Note=kinase
+ctgA	example	polypeptide_domain	13801	14007	.	-	415	Name=m05;Note=helix loop helix
+ctgA	example	polypeptide_domain	14731	17239	.	-	746	Name=m14;Note=kinase
+ctgA	example	polypeptide_domain	15396	16159	.	+	40 	Name=m03;Note=zinc finger
+ctgA	example	polypeptide_domain	17023	17675	.	+	830	Name=m08;Note=7-transmembrane
+ctgA	example	polypeptide_domain	17667	17690	.	+	943	Name=m13;Note=DEAD box
+ctgA	example	polypeptide_domain	18048	18552	.	-	658	Name=m07;Note=7-transmembrane
+ctgA	example	polypeptide_domain	21748	25612	.	+	467	Name=m12;Note=kinase
+ctgA	example	polypeptide_domain	28332	30033	.	-	711	Name=m02;Note=HOX
+ctgA	example	polypeptide_domain	28342	28447	.	-	533	Name=m10;Note=DEAD box
+ctgA	example	polypeptide_domain	30578	31748	.	+	646	Name=m06;Note=SUSHI repeat
+ctgA	example	polypeptide_domain	33325	35791	.	+	479	Name=m04;Note=Ig-like
+ctgA	example	polypeptide_domain	37497	40559	.	-	711	Name=m15;Note=7-transmembrane
+ctgA	example	polypeptide_domain	46012	48851	.	+	533	Name=m09;Note=kinase
+ctgA	example	polypeptide_domain	48253	48366	.	+	646	Name=m01;Note=WD40
+
+ctgA	example	match	32329	32359	.	+	825	Name=seg01
+ctgA	example	match	26122	26126	.	+	185	Name=seg02
+ctgA	example	match	26497	26869	.	+	502	Name=seg02
+ctgA	example	match	27201	27325	.	+	442	Name=seg02
+ctgA	example	match	27372	27433	.	+	970	Name=seg02
+ctgA	example	match	27565	27565	.	+	519	Name=seg02
+ctgA	example	match	27813	28091	.	+	592	Name=seg02
+ctgA	example	match	28093	28201	.	+	475	Name=seg02
+ctgA	example	match	28329	28377	.	+	17 	Name=seg02
+ctgA	example	match	28829	29194	.	+	276	Name=seg02
+ctgA	example	match	29517	29702	.	+	492	Name=seg02
+ctgA	example	match	29713	30061	.	+	465	Name=seg02
+ctgA	example	match	30329	30774	.	+	525	Name=seg02
+ctgA	example	match	30808	31306	.	+	619	Name=seg02
+ctgA	example	match	31516	31729	.	+	248	Name=seg02
+ctgA	example	match	31753	32154	.	+	613	Name=seg02
+ctgA	example	match	32595	32696	.	+	701	Name=seg02
+ctgA	example	match	32892	32901	.	+	724	Name=seg02
+ctgA	example	match	33127	33388	.	+	977	Name=seg02
+ctgA	example	match	33439	33443	.	+	502	Name=seg02
+ctgA	example	match	33759	34209	.	+	415	Name=seg02
+ctgA	example	match	34401	34466	.	+	746	Name=seg02
+ctgA	example	match	6885	7241	.	-	40 	Name=seg03
+ctgA	example	match	7410	7737	.	-	830	Name=seg03
+ctgA	example	match	8055	8080	.	-	943	Name=seg03
+ctgA	example	match	8306	8999	.	-	658	Name=seg03
+ctgA	example	match	5233	5302	.	-	467	Name=seg04
+ctgA	example	match	5800	6101	.	-	711	Name=seg04
+ctgA	example	match	6442	6854	.	-	533	Name=seg04
+ctgA	example	match	7106	7211	.	-	646	Name=seg04
+ctgA	example	match	7695	8177	.	-	479	Name=seg04
+ctgA	example	match	8545	8783	.	-	568	Name=seg04
+ctgA	example	match	8869	8935	.	-	62 	Name=seg04
+ctgA	example	match	9404	9825	.	-	191	Name=seg04
+ctgA	example	match	26503	26799	.	-	645	Name=seg05
+ctgA	example	match	27172	27185	.	-	774	Name=seg05
+ctgA	example	match	27448	27860	.	-	643	Name=seg05
+ctgA	example	match	27887	28076	.	-	361	Name=seg05
+ctgA	example	match	28225	28316	.	-	444	Name=seg05
+ctgA	example	match	28777	29058	.	-	109	Name=seg05
+ctgA	example	match	29513	29647	.	-	67 	Name=seg05
+ctgA	example	match	30108	30216	.	-	964	Name=seg05
+ctgA	example	match	30465	30798	.	-	563	Name=seg05
+ctgA	example	match	31232	31236	.	-	313	Name=seg05
+ctgA	example	match	31421	31817	.	-	530	Name=seg05
+ctgA	example	match	32010	32057	.	-	788	Name=seg05
+ctgA	example	match	32208	32680	.	-	441	Name=seg05
+ctgA	example	match	33053	33325	.	-	152	Name=seg05
+ctgA	example	match	33438	33868	.	-	226	Name=seg05
+ctgA	example	match	34244	34313	.	-	838	Name=seg05
+ctgA	example	match	34605	34983	.	-	529	Name=seg05
+ctgA	example	match	35333	35507	.	-	822	Name=seg05
+ctgA	example	match	35642	35904	.	-	107	Name=seg05
+ctgA	example	match	19249	19559	.	+	404	Name=seg06
+ctgA	example	match	19975	20260	.	+	882	Name=seg06
+ctgA	example	match	20379	20491	.	+	16 	Name=seg06
+ctgA	example	match	20533	21005	.	+	645	Name=seg06
+ctgA	example	match	21122	21331	.	+	237	Name=seg06
+ctgA	example	match	21682	22176	.	+	36 	Name=seg06
+ctgA	example	match	22374	22570	.	+	893	Name=seg06
+ctgA	example	match	23025	23427	.	+	169	Name=seg06
+ctgA	example	match	44191	44514	.	-	295	Name=seg07
+ctgA	example	match	44552	45043	.	-	645	Name=seg07
+ctgA	example	match	45373	45600	.	-	683	Name=seg07
+ctgA	example	match	45897	46315	.	-	580	Name=seg07
+ctgA	example	match	46491	46890	.	-	291	Name=seg07
+ctgA	example	match	47126	47297	.	-	880	Name=seg07
+ctgA	example	match	47735	47983	.	-	587	Name=seg07
+ctgA	example	match	48447	48709	.	-	159	Name=seg07
+ctgA	example	match	48931	49186	.	-	496	Name=seg07
+ctgA	example	match	49472	49699	.	-	921	Name=seg07
+ctgA	example	match	49957	50000	.	-	226	Name=seg07
+ctgA	example	match	18509	18985	.	+	915	Name=seg08
+ctgA	example	match	18989	19388	.	+	791	Name=seg08
+ctgA	example	match	19496	19962	.	+	600	Name=seg08
+ctgA	example	match	20093	20580	.	+	140	Name=seg08
+ctgA	example	match	20970	21052	.	+	460	Name=seg08
+ctgA	example	match	21270	21277	.	+	228	Name=seg08
+ctgA	example	match	21685	22168	.	+	373	Name=seg08
+ctgA	example	match	22564	22869	.	+	570	Name=seg08
+ctgA	example	match	22958	23298	.	+	831	Name=seg08
+ctgA	example	match	23412	23469	.	+	811	Name=seg08
+ctgA	example	match	23932	23932	.	+	22 	Name=seg08
+ctgA	example	match	24328	24787	.	+	894	Name=seg08
+ctgA	example	match	25228	25367	.	+	463	Name=seg08
+ctgA	example	match	36616	37057	.	-	736	Name=seg09
+ctgA	example	match	37208	37227	.	-	409	Name=seg09
+ctgA	example	match	29771	29942	.	+	402	Name=seg10
+ctgA	example	match	30042	30340	.	+	513	Name=seg10
+ctgA	example	match	30810	31307	.	+	22 	Name=seg10
+ctgA	example	match	31761	31984	.	+	228	Name=seg10
+ctgA	example	match	32374	32937	.	+	752	Name=seg10
+ctgA	example	match	24228	24510	.	+	35 	Name=seg11
+ctgA	example	match	24868	25012	.	+	276	Name=seg11
+ctgA	example	match	25212	25426	.	+	709	Name=seg11
+ctgA	example	match	25794	25874	.	+	666	Name=seg11
+ctgA	example	match	26075	26519	.	+	604	Name=seg11
+ctgA	example	match	26930	26940	.	+	31 	Name=seg11
+ctgA	example	match	26975	27063	.	+	764	Name=seg11
+ctgA	example	match	27415	27799	.	+	973	Name=seg11
+ctgA	example	match	27880	27943	.	+	823	Name=seg11
+ctgA	example	match	28225	28346	.	+	931	Name=seg11
+ctgA	example	match	28375	28570	.	+	697	Name=seg11
+ctgA	example	match	28758	29041	.	+	241	Name=seg11
+ctgA	example	match	29101	29302	.	+	343	Name=seg11
+ctgA	example	match	29604	29702	.	+	771	Name=seg11
+ctgA	example	match	29867	29885	.	+	147	Name=seg11
+ctgA	example	match	30241	30246	.	+	949	Name=seg11
+ctgA	example	match	30575	30738	.	+	928	Name=seg11
+ctgA	example	match	12531	12895	.	+	693	Name=seg12
+ctgA	example	match	13122	13449	.	+	750	Name=seg12
+ctgA	example	match	13452	13745	.	+	502	Name=seg12
+ctgA	example	match	13908	13965	.	+	177	Name=seg12
+ctgA	example	match	13998	14488	.	+	605	Name=seg12
+ctgA	example	match	14564	14899	.	+	939	Name=seg12
+ctgA	example	match	15185	15276	.	+	249	Name=seg12
+ctgA	example	match	15639	15736	.	+	597	Name=seg12
+ctgA	example	match	15745	15870	.	+	364	Name=seg12
+ctgA	example	match	49406	49476	.	+	706	Name=seg13
+ctgA	example	match	49762	50000	.	+	605	Name=seg13
+ctgA	example	match	41137	41318	.	-	729	Name=seg14
+ctgA	example	match	41754	41948	.	-	21 	Name=seg14
+ctgA	example	match	42057	42474	.	-	63 	Name=seg14
+ctgA	example	match	42890	43270	.	-	356	Name=seg14
+ctgA	example	match	43395	43811	.	-	70 	Name=seg14
+ctgA	example	match	44065	44556	.	-	430	Name=seg14
+ctgA	example	match	44763	45030	.	-	730	Name=seg14
+ctgA	example	match	45231	45488	.	-	531	Name=seg14
+ctgA	example	match	45790	46022	.	-	247	Name=seg14
+ctgA	example	match	46092	46318	.	-	552	Name=seg14
+ctgA	example	match	46816	46992	.	-	547	Name=seg14
+ctgA	example	match	47449	47829	.	-	879	Name=seg14
+ctgA	example	match	39265	39361	.	-	750	Name=seg15
+ctgA	example	match	39753	40034	.	-	875	Name=seg15
+ctgA	example	match	40515	40954	.	-	135	Name=seg15
+ctgA	example	match	41252	41365	.	-	534	Name=seg15
+ctgA	example	match	41492	41504	.	-	653	Name=seg15
+ctgA	example	match	41941	42377	.	-	374	Name=seg15
+ctgA	example	match	42748	42954	.	-	847	Name=seg15
+ctgA	example	match	43401	43897	.	-	15 	Name=seg15
+ctgA	example	match	44043	44113	.	-	905	Name=seg15
+ctgA	example	match	44399	44888	.	-	868	Name=seg15
+ctgA	example	match	45281	45375	.	-	462	Name=seg15
+ctgA	example	match	45711	46041	.	-	262	Name=seg15
+ctgA	example	match	46425	46564	.	-	823	Name=seg15
+ctgA	example	match	46738	47087	.	-	7  	Name=seg15
+ctgA	example	match	47329	47595	.	-	928	Name=seg15
+ctgA	example	match	47858	47979	.	-	64 	Name=seg15
+ctgA	example	match	48169	48453	.	-	305	Name=seg15
+
+# single exon gene - one CDS only
+ctgA	bare_predicted	CDS	10000	11500	.	+	0	Name=Apple1;Note=CDS with no parent
+
+# multi-exon gene - several linked CDSs
+ctgA	predicted	mRNA	13000	17200	.	+	0	ID=cds-Apple2;Name=Apple2;Note=mRNA with CDSs but no UTRs
+ctgA	predicted	CDS	13500	13800	.	+	0	Parent=cds-Apple2
+ctgA	predicted	CDS	15000	15500	.	+	1	Parent=cds-Apple2
+ctgA	predicted	CDS	16500	17000	.	+	2	Parent=cds-Apple2
+
+ctgA	exonerate	mRNA	17400	23000	.	+	.	ID=rna-Apple3;Name=Apple3;Note=mRNA with both CDSs and UTRs
+ctgA	exonerate	UTR	17400	17999	.	+	.	Parent=rna-Apple3
+ctgA	exonerate	CDS	18000	18800	.	+	0	Parent=rna-Apple3
+ctgA	exonerate	CDS	19000	19500	.	+	1	Parent=rna-Apple3
+ctgA	exonerate	CDS	21000	21200	.	+	2	Parent=rna-Apple3
+ctgA	exonerate	UTR	21201	23000	.	+	.	Parent=rna-Apple3
+
+ctgA	example	gene	1050	9000	.	+	.	ID=EDEN;Name=EDEN;Note=protein kinase
+ctgA	example	mRNA	1050	9000	.	+	.	ID=EDEN.1;Parent=EDEN;Name=EDEN.1;Note=Eden splice form 1;Index=1
+ctgA	example	five_prime_UTR	1050	1200	.	+	.	Parent=EDEN.1
+ctgA	example	CDS	1201	1500	.	+	0	Parent=EDEN.1
+ctgA	example	CDS	3000	3902	.	+	0	Parent=EDEN.1
+ctgA	example	CDS	5000	5500	.	+	0	Parent=EDEN.1
+ctgA	example	CDS	7000	7608	.	+	0	Parent=EDEN.1
+ctgA	example	three_prime_UTR	7609	9000	.	+	.	Parent=EDEN.1
+
+ctgA	example	mRNA	1050	9000	.	+	.	ID=EDEN.2;Parent=EDEN;Name=EDEN.2;Note=Eden splice form 2;Index=1
+ctgA	example	five_prime_UTR	1050	1200	.	+	.	Parent=EDEN.2
+ctgA	example	CDS	1201	1500	.	+	0	Parent=EDEN.2
+ctgA	example	CDS	5000	5500	.	+	0	Parent=EDEN.2
+ctgA	example	CDS	7000	7608	.	+	0	Parent=EDEN.2
+ctgA	example	three_prime_UTR	7609	9000	.	+	.	Parent=EDEN.2
+
+ctgA	example	mRNA	1300	9000	.	+	.	ID=EDEN.3;Parent=EDEN;Name=EDEN.3;Note=Eden splice form 3;Index=1
+ctgA	example	five_prime_UTR	1300	1500	.	+	.	Parent=EDEN.3
+ctgA	example	five_prime_UTR	3000	3300	.	+	.	Parent=EDEN.3
+ctgA	example	CDS	3301	3902	.	+	0	Parent=EDEN.3
+ctgA	example	CDS	5000	5500	.	+	1	Parent=EDEN.3
+ctgA	example	CDS	7000	7600	.	+	1	Parent=EDEN.3
+ctgA	example	three_prime_UTR	7601	9000	.	+	.	Parent=EDEN.3
+
+ctgA	example	BAC	1000	20000	.	.	.	ID=b101.2;Name=b101.2;Note=Fingerprinted BAC with end reads
+ctgA	example	clone_start	1000	1500	.	+	.	Parent=b101.2
+ctgA	example	clone_end	19500	20000	.	-	.	Parent=b101.2
+
+ctgA	est	EST_match	1050	3202	.	+	.	ID=Match1;Name=agt830.5;Target=agt830.5 1 654
+ctgA	est	match_part	1050	1500	.	+	.	Parent=Match1;Name=agt830.5;Target=agt830.5 1 451
+ctgA	est	match_part	3000	3202	.	+	.	Parent=Match1;Name=agt830.5;Target=agt830.5 452 654
+
+ctgA	est	EST_match	5410	7503	.	-	.	ID=Match2;Name=agt830.3;Target=agt830.3 1 595
+ctgA	est	match_part	5410	5500	.	-	.	Parent=Match2;Name=agt830.3;Target=agt830.3 505 595
+ctgA	est	match_part	7000	7503	.	-	.	Parent=Match2;Name=agt830.3;Target=agt830.3 1 504
+
+ctgA	est	EST_match	1050	7300	.	+	.	ID=Match3;Name=agt221.5;Target=agt221.5 1 1253
+ctgA	est	match_part	1050	1500	.	+	.	Parent=Match3;Name=agt221.5;Target=agt221.5 1 451
+ctgA	est	match_part	5000	5500	.	+	.	Parent=Match3;Name=agt221.5;Target=agt221.5 452 952
+ctgA	est	match_part	7000	7300	.	+	.	Parent=Match3;Name=agt221.5;Target=agt221.5 953 1253
+
+ctgA	est	EST_match	7500	8000	.	-	.	ID=Match4;Name=agt221.3;Target=agt221.3 1 501
+
+ctgA	est	EST_match	1150	7200	.	+	.	ID=Match5;Name=agt767.5;Target=agt767.5 1 1153
+ctgA	est	match_part	1150	1500	.	+	.	Parent=Match5;Name=agt767.5;Target=agt767.5 1 351
+ctgA	est	match_part	5000	5500	.	+	.	Parent=Match5;Name=agt767.5;Target=agt767.5 352 852
+ctgA	est	match_part	7000	7200	.	+	.	Parent=Match5;Name=agt767.5;Target=agt767.5 853 1153
+
+ctgA	est	EST_match	8000	9000	.	-	.	ID=Match6;Name=agt767.3;Target=agt767.3 1 1001
+
+
+
+ctgB	example	contig	1	6079	.	.	.	Name=ctgB
+ctgB	example	remark	1659	1984	.	+	.	Name=f07;Note=This is an example
+ctgB	example	remark	3014	6130	.	+	.	Name=f06;Note=This is another example
+ctgB	example	remark	4715	5968	.	-	.	Name=f05;Note=ああ、この機能は、世界中を旅しています!
+##FASTA
+>foobar
+ACTGATGATCGCTAGATGCTCGACTAGC
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/1/2.wig	Wed Aug 09 09:52:52 2017 -0400
@@ -0,0 +1,503 @@
+track type=wiggle_0 name="example" description="discontinuous sine wave"
+fixedStep chrom=ctgA start=1 step=100 span=20
+0
+-0.506365641109759
+-0.873297297213995
+-0.999755839901149
+-0.850919359639177
+-0.467771805322476
+0.0441824483318732
+0.543970523363376
+0.893969648197021
+0.99780327442197
+0.826879540532003
+0.428264391396659
+-0.0882786064717262
+-0.580513008156313
+-0.91289603861164
+-0.993901956906654
+-0.801224790676895
+-0.387920558984219
+0.132202352755937
+0.615921726468774
+0.930039504416137
+0.988059506793465
+0.774005214886395
+0.34681910129778
+-0.175867902248536
+-0.650127523574896
+-0.945366563696042
+-0.980287334634812
+-0.745273974144339
+-0.305040291224202
+0.219189974282818
+0.683063594104854
+0.958847282055722
+0.970600619811948
+0.71508718178021
+0.262665724548229
+-0.262083959018097
+-0.714665612518583
+-0.970455331081526
+-0.959018280889002
+-0.683503793877429
+-0.219778160592474
+0.304466082686301
+0.744871858736274
+0.980168039762288
+0.945562938664219
+0.650585494129627
+0.176461360584952
+-0.346253571205695
+-0.773623338680308
+-0.987966438766777
+-0.930260871990585
+-0.61639657336978
+-0.132799924069858
+0.38736481184216
+0.800863899493182
+0.993835297491596
+0.913141966452114
+0.581003804007494
+0.0888791236810795
+-0.427719512602322
+-0.826540339206424
+-0.997763153807204
+-0.894239655996039
+-0.544476309619657
+-0.044784738601126
+0.467238859047214
+0.850602510646281
+0.999742336443933
+0.873590857634893
+0.50688542994917
+0.000602887030758908
+-0.505845668220208
+-0.873003419373278
+-0.999768979974307
+-0.851235899346026
+-0.468304581575409
+0.043580142003502
+0.543464539388603
+0.893699315464349
+0.997843032362382
+0.827218441309355
+0.428809114528536
+-0.0876780571755001
+-0.580022001304441
+-0.912649778958282
+-0.993968255065378
+-0.801585390637186
+-0.388476165127704
+0.131604733390055
+0.615446655696971
+0.929817798797622
+0.988152215687393
+0.774386809762636
+0.347384505330554
+-0.17527437998892
+-0.64966931671649
+-0.945169845112828
+-0.980406273199548
+-0.745675818665582
+-0.305614388888252
+0.218601708303567
+0.682623146057239
+0.958675934707531
+0.97074555575544
+0.715508491127093
+0.263247394606515
+-0.261502098227572
+-0.714243783495441
+-0.970309689616982
+-0.959188931145217
+-0.683943745214962
+-0.220366267018746
+0.303891763483259
+0.744469472587545
+0.980048388625338
+0.945758969945982
+0.651043228214223
+0.177054754782462
+-0.345687915259853
+-0.773241181283175
+-0.987873011641156
+-0.930481901440504
+-0.616871196227395
+-0.133397447114619
+0.386808923903526
+0.800502717217221
+0.993768276844436
+0.913387562390317
+0.581494388679593
+0.0894796085852885
+-0.427174478343574
+-0.82620083745591
+-0.997722670532666
+-0.89450933876326
+-0.544981897973607
+-0.0453870125923442
+0.466705742943332
+0.850285352482504
+0.999728469607566
+0.873884100529272
+0.507405034549512
+0.00120577384238478
+-0.505325511469513
+-0.87270922421956
+-0.999781756658628
+-0.851552129651776
+-0.468837187612361
+0.0429778198349343
+0.542958357879249
+0.893428657896279
+0.997882427613987
+0.827557041415301
+0.429353681799962
+-0.0870774760106846
+-0.579530783630345
+-0.912403187581549
+-0.994034191943674
+-0.801945699242987
+-0.389031630070668
+0.131007066189432
+0.614971361227045
+0.929595755215624
+0.988244565414863
+0.774768123170331
+0.347949783098507
+-0.174680794021833
+-0.649210873720956
+-0.94497278298608
+-0.980524855413266
+-0.746077392153944
+-0.306188375469783
+0.21801336286854
+0.682182449894674
+0.958504238906709
+0.970890138859323
+0.715929540406099
+0.263828968981531
+-0.260920142388146
+-0.713821694864108
+-0.970163695471254
+-0.959359232762341
+-0.684383447957544
+-0.220954293347872
+0.303317333823826
+0.744066815844409
+0.979928381267452
+0.94595465747008
+0.651500725662311
+0.177648084625384
+-0.345122133665854
+-0.772858742833902
+-0.987779225450561
+-0.930702592685557
+-0.617345594869105
+-0.133994921673036
+0.386252895370368
+0.800141243980293
+0.993700894989533
+0.91363282633698
+0.581984761994295
+0.0900800609660932
+-0.42662928881852
+-0.825861035403859
+-0.99768182461307
+-0.894778696400663
+-0.545487288241457
+-0.0459892700866177
+0.466172457204606
+0.849967885263126
+0.999714239397087
+0.874177025790545
+0.507924454721923
+0.00180866021574464
+-0.504805171046737
+-0.872414711859773
+-0.999794169949471
+-0.851868050441484
+-0.469369623239746
+0.0423754820450979
+0.542451979019298
+0.893157675591189
+0.997921460162468
+0.827895340726768
+0.429898093013001
+-0.0864768631955748
+-0.579039355312569
+-0.91215626457107
+-0.994099767517573
+-0.802305716363335
+-0.389586953611214
+0.130409351371303
+0.614495843231754
+0.929373373750848
+0.98833655594231
+0.775149154970883
+0.348514934396177
+-0.174087144563029
+-0.648752194754925
+-0.944775377387424
+-0.980643081232865
+-0.746478694463463
+-0.306762250760167
+0.217424938191585
+0.681741505777341
+0.958332194715663
+0.971034369071043
+0.716350329464186
+0.264410447461892
+-0.260338091711345
+-0.713399346778001
+-0.970017348697407
+-0.959529185678474
+-0.684822901945355
+-0.221542239366122
+0.302742793916791
+0.743663888653221
+0.979808017732248
+0.946150001165385
+0.651957986307603
+0.178241349898059
+-0.344556226629346
+-0.772476023471494
+-0.98768508022908
+-0.930922945645528
+-0.617819769122481
+-0.134592347527942
+0.385696726444787
+0.799779479913782
+0.993633151951378
+0.913877758202957
+0.582474923773363
+0.0906804806052454
+-0.426083944225323
+-0.825520933173783
+-0.997640616063263
+-0.895047728810343
+-0.545992480239513
+-0.0465915108650422
+0.465639002024868
+0.849650109103536
+0.99969964581767
+0.874469633312244
+0.508443690277607
+0.00241154593170571
+-0.50428464714101
+-0.872119882400963
+-0.999806219842322
+-0.852183661600323
+-0.469901888264038
+0.0417731288529262
+0.541945402992805
+0.892886368647573
+0.997960129993637
+0.828233339120793
+0.430442347969774
+-0.0858762189484769
+-0.578547716529735
+-0.911909010016595
+-0.994164981763242
+-0.802665441867374
+-0.390142135547497
+0.129811589152921
+0.614020101883935
+0.929150654484127
+0.988428187236296
+0.775529905025798
+0.349079959018146
+-0.173493431828281
+-0.648293279985113
+-0.944577628388612
+-0.980760950615372
+-0.746879725448277
+-0.307336014550815
+0.216836434486577
+0.68130031386551
+0.958159802196927
+0.971178246338178
+0.716770858148409
+0.264991829836246
+-0.259755946408727
+-0.712976739390632
+-0.969870649348633
+-0.959698789831842
+-0.685262107018665
+-0.222130104859792
+0.302168143970983
+0.743260691160433
+0.979687298063475
+0.946345000960895
+0.652415009983898
+0.17883455038485
+-0.34399019435602
+-0.772093023335059
+-0.987590576010932
+-0.931142960240324
+-0.618293718815172
+-0.13518972446219
+0.385140417328934
+0.79941742514918
+0.993565047754595
+0.914122357899222
+0.582964873838637
+0.091280867284509
+-0.425538444762198
+-0.825180530889296
+-0.997599044898223
+-0.895316435894515
+-0.546497473784151
+-0.0471937347087195
+0.465105377598017
+0.849332024119238
+0.999684688874618
+0.874761922988011
+0.508962741027838
+0.00301443077113541
+-0.503763939941528
+-0.871824735950293
+-0.999817906332802
+-0.852498963013576
+-0.470433982491772
+0.0411707604773582
+0.541438629983896
+0.892614737164045
+0.997998437093437
+0.828571036474523
+0.430986446472459
+-0.0852755434877088
+-0.57805586746054
+-0.911661424007995
+-0.994229834656976
+-0.803024875624353
+-0.390697175677724
+0.129213779751557
+0.613544137356508
+0.92892759749641
+0.988519459263516
+0.775910373196683
+0.349644856759043
+-0.17289965603339
+-0.647834129578325
+-0.944379536061519
+-0.980878463517946
+-0.747280484962623
+-0.30790966663318
+0.216247851967423
+0.680858874319544
+0.957987061413159
+0.971321770608431
+0.717191126305919
+0.265573115893276
+-0.259173706691886
+-0.712553872855609
+-0.969723597478254
+-0.959868045160799
+-0.685701063017834
+-0.22271788961521
+0.301593384195272
+0.742857223512596
+0.979566222305013
+0.946539656785734
+0.652871796525078
+0.179427685870145
+-0.343424037051613
+-0.771709742563807
+-0.987495712830468
+-0.931362636389977
+-0.618767443774911
+-0.13578705225865
+0.384583968225014
+0.799055079818084
+0.993496582423937
+0.91436662533687
+0.583454612012034
+0.0918812207856598
+-0.424992790627422
+-0.824839828674128
+-0.997557111133059
+-0.895584817555511
+-0.547002268691819
+-0.0477959413987577
+0.464571584118009
+0.849013630425847
+0.999669368573369
+0.87505389471161
+0.509481606783953
+0.0036173145149015
+-0.503243049637554
+-0.871529272615042
+-0.999829229416663
+-0.85281395456664
+-0.470965905729547
+0.0405683771373384
+0.540931660176769
+0.892342781239334
+0.998036381447947
+0.828908432665215
+0.431530388323292
+-0.0846748370315997
+-0.577563808283757
+-0.911413506635259
+-0.994294326175203
+-0.803384017503629
+-0.391252073800153
+0.128615923384498
+0.613067949822471
+0.928704202868774
+0.988610371990796
+0.776290559345248
+0.350209627413543
+-0.172305817394175
+-0.647374743701449
+-0.944181100478148
+-0.980995619897873
+-0.747680972860835
+-0.308483206798754
+0.215659190848055
+0.680417187299892
+0.957813972427147
+0.971464941829636
+0.717611133783957
+0.266154305421701
+-0.258591372772452
+-0.71213074732663
+-0.969576193139719
+-0.960036951603826
+-0.686139769783315
+-0.223305593418733
+0.301018514798568
+0.742453485856362
+0.979444790500868
+0.946733968569148
+0.653328345765115
+0.180020756138357
+-0.342857754921908
+-0.77132618129705
+-0.987400490722168
+-0.931581974014641
+-0.619240943829511
+-0.13638433070021
+0.38402737933528
+0.798692444052197
+0.993427755984289
+0.914610560427116
+0.583944138115545
+0.0924815408904855
+-0.424446982019324
+-0.824498826652114
+-0.997514814783015
+-0.895852873695781
+-0.547506864779039
+-0.048398130716271
+0.464037621778865
+0.848694928139091
+0.99965368491949
+0.875345548376914
+0.51000028735736
+0.00422019694387214
+-0.502721976418416
+-0.871233492502601
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/1/input.fa	Wed Aug 09 09:52:52 2017 -0400
@@ -0,0 +1,897 @@
+>ctgA
+cattgttgcggagttgaacaACGGCATTAGGAACACTTCCGTCTCtcacttttatacgat
+tatgattggttctttagccttggtttagattggtagtagtagcggcgctaatgctacctg
+aattgagaactcgagcgggggctaggcaaattctgattcagcctgacttctcttggaacc
+ctgcccataaatcaaagggttagtgcggccaaaacgttggacaacggtattagaagacca
+acctgaccaccaaaccgtcaattaaccggtatcttctcggaaacggcggttctctcctag
+atagcgatctgtggtctcaccatgcaatttaaacaggtgagtaaagattgctacaaatac
+gagactagctgtcaccagatgctgttcatctgttggctccttggtcgctccgttgtaccc
+aggctactttgaaagagcgcagaatacttagacggtatcgatcatggtagcatagcattc
+tgataacatgtatggagttcgaacatccgtctggggccggacggtccgtttgaggttggt
+tgatctgggtgatagtcagcaagatagacgttagataacaaattaaaggattttacctta
+gattgcgactagtacaacggtacatcggtgattcgcgctctactagatcacgctatgggt
+accataaacaaacggtggaccttctcaagctggttgacgcctcagcaacataggcttcct
+cctccacgcatctcagcataaaaggcttataaactgcttctttgtgccagagcaactcaa
+ttaagcccttggtaccgtgggcacgcattctgtcacggtgaccaactgttcatcctgaat
+cgccgaatgggactatttggtacaggaatcaagcggatggcactactgcagcttatttac
+gacggtattcttaaagtttttaagacaatgtatttcatgggtagttcggtttgttttatt
+gctacacaggctcttgtagacgacctacttagcactacggccgagcgcaataacccccgg
+aaagcacttgctactgggaggcgggtttatccatcggcaataggggttatcagtactacc
+aagaagattgtgaagatattaacagcattgaaaaaagttcggactgggcatgaaacgtgt
+gtcagagttagagtccttgagggactgaatgggtttgtcccaggcccaagcttgaggtgg
+atgtcacctcgggtactgcctctattacagaggtatcttaatggcgcatccagccttgtg
+gctgggtctacgtacgcgtgggcaccatacgtatgttggcaggaaaggtcaatcatgctt
+gtttcctcgtcgcagaaacgttcacactattggctcgcgggatcgaacgggcctgattat
+ttttccagctcctgcgttcctatcacgccaactgtcgctaataaaatgttatatagagat
+aacccattgctatgcaaggatggagaaaccgcttcacaacaccctagaattacttcagca
+ctaacatctaagataccgggaaaaccgtaggtgccacttggttttgagggcaatgcctct
+tgcactggcgattcgtggagtaaccttgctaccgatttccaccttttctaggtatgatta
+catgcgatcgccattgtcagtcgtcgtacgaaatccaggaaggaattcgaatacatgacc
+gaaagctatggcatcataagcgtggctctttactaaggacacgtgtagtcggctgatttc
+gcgcagaacttcgctcaccggacagtgactgctgtccgaacttgggggcagcgtagattc
+tagctagagaccgcagcgaaaatgccactcgctaggtggctatggacgtccagctatagg
+cccccacattcgtatgtatactccggtaattgagtctacctttcgaaagatcaaagttca
+caaaccttctctcacgttaacatagatgctcgcacatagctagtccggtgataaagcggc
+cgtgcatgcgagtatttagcgcacggaacagatattaggctgcgaaataccctcatatgc
+tacagcgcaggtaacagacggttgatctccccgtagaattccctcaaggccggatcgttc
+tcatgagtagcctttgtctgacatttcctctcaatagattgcagactcctgtgtcgtggg
+aaaacttcgcggaatcgctgtcgttacataaatctaaacagtgcagtccaagctatttac
+taccacgtatcataatgaacatctctttgtgaaatacgccggtacgccgagagatcgccc
+acattgcgtgtcaccaagacccagtgtctattgggcgcgctggttatagtatgcggaggc
+acccgatgtgctgctaatcactacaaactcgacaccaagaggcgaccgcgtgcgggaggg
+ctagaacgcgagagccacgtcaacgtggtggtaccgctcctgatgatacgagcactgtgc
+tggcaccgctgccctatgtccagctaacaggtgtcacataatatcgcatctatagttgag
+tatcttatcgctagcgttacttgtgagttctcgggtagaatcgtcgtagcattctagtcc
+ttagcgtaagcaacgatatcgccgatattataggggcaataggtctcacccaccacgggt
+gtatatttaacgccctaagtagttaacggagactattaaacaattatgcacgtgaaagat
+tagggtactgcacacgtgtcacgttgacgatgtaaacaccataaaggttgttctgtgatg
+cgatgcccatacctgcggtgcaacgtcctaaacttatgcggatcaccttctaattcagcc
+gacgttgagaacgccagctatactctgtgagtacaaggtgaaagccccagatcaaaatat
+tggagtcttgtccgtagctcttgggtggagagtgtgaccacgtttatcccttaatactga
+gactcttctcgttccacgccccggacattcgcgatacagcctagtttgataggtggctac
+aagggctctatccgaatagcacaaaactcagtcctagtgcgtataggtcgtgctctgcgg
+ttatacgctccacagaagaaagtacccactgcagtttgtcggtgggacttagcaaaacct
+gtaaccaaaaccgcacatggactctgttttggtggcgtggagtgtgcccgccgcctttat
+gctgggtcaaaatactatatgatttgttgtggtcgggcgcgacattggctcttatggttt
+ataactattattcggtgcacagaaccgacttatgccccgattttgcacctcccgagagaa
+atggtactagtcattgtctcggggttttacaactcaaggataatctgccagcggtacccc
+gaaaaatcccatcccgaacggctggtacctatgctggagaccgaaatggagccagtgcta
+tgcaaaccctcgctctttctatttggcccgaccagctgcgagagtcattcgacatacatt
+gcgatggctggttcatctctctgcttcggattccgatcctgctgcctatggccacaacac
+gaaagagatcttggatacgtcctcaccatagtccaacggacaaatatggaggtgtacgcg
+cacggatacgagtacgacgggccgcccaatgctggtccttcgtgttatactgtttacttg
+cctccggtaagagtgtacagcttgtacccacgcggtggaggaccttacgcgtcgtccgca
+ggtgtggagatttcgctacctgttgcattggggcctcgccttacgtttttttcgacggag
+gcccgacccgccaggccagaccctcatcattgggatttttactgccttggacggcagatt
+ctgatgctggtaacgcgcttggcacacaccctggtcgtaattacgtactatcacctctat
+tttaccaggggcgggccccgcctcaacgatcggtagtctcgttagaacagttgcttatac
+tccgttagcactcacaactcggagaatgagcttacacagtccgtaatagtctccacagct
+tcccctggaaggttcgtacaggggccctggggtctaatgtgctaccgcctaacttcgtta
+gtgtaaggtctcgtgtgcacctccaataacgctgcatttttgtatagaactcctttatag
+gcctgactcttcggaacagcccactaattgacgtgcacgatgctgcatatacccttctca
+atgacgcataccggtgactaaatcctgtggctggttgacactttgcataacccaccacga
+aaacgcggtttgcacgtggttggaagcgagtaccggttaagggaagttacgtaaacccaa
+catagtgagcgatgcttaaaacactgcatgcgaacaacgaccggaacgagagcctaatag
+aaccaaatggataggtggttacgaaatccgcgcacaagtgtcgtgccactctcgtaaaga
+atgattgcttgcttatctatgagaaacctaataggcacgcacgtgtcgccagggaaaaac
+caccatccgacaagacgctgaaaatcgagatagatgcagcccgcgcgtactttaagcacg
+atagccatcttgagcgcgacgattcagcttacggagattacttctcaaagcggacacctc
+gacgctgaagctctctatcgatgcacttgcatgtccatctacggcttgagcgaaccatgc
+ttaacgcttggatgacgttgttagtcggattcgatcgtaccatactgtcctatccatcat
+aacttcccgaattaaaactcattttctaccctcatttgtttcattggcgcatatgagcgc
+cccatgggcgctgatcgacacaggcttgtagcgcacggctcgtcttgcagtagataacca
+tagtctttacgtcgcatatattaatatatcctcagacttccactgcggtattttggatcg
+tggcgtctgggacagtcacactctttaacgggagcgcgttcaatgtctgagtccatccgt
+gcagttcggtgcgattttattcttccctgcatcttccggattccttcttcttgtcggaga
+attcgccgctcgatcaaactcatcattggtacttattgaccgtttcatgctattacaccg
+gtacactgatgataacgctgcggttttatcccccccaatacgcgcacacacgcttctttc
+ggtgcgtcctgtcgtacccctattgcgcatcatggcactccagccgagcaatgctttgga
+caggtgtaaccaagctggatctagcgtgggttcgacacagctcggttcgtataaccacac
+gcatgaactgcgagtgcctcgccccagcgccgctgtctacttgctgtttagaggaagaag
+caacagcttgcacccaatccgcatatctgcatataggtggccgttcctccgtggcgcgcc
+gctacgttgtagcgcacggatcaaaagcgctgtgttactatacactggttcggagacggt
+tcatgacgagcgcgctatatgtcggcatctgcgccccatgagcggccgctgtccggcggc
+acgaataatatagtgcaagaaaaaccgaagactacggttatatatgatggaacggccctc
+acagcattctaacaggtttgacaaacttaataaatgatgggccgcgcctgctgtgaatcc
+cggacggtttggccggaaatacctaggcagtctttggaaaagcttttcctagatcaccat
+atcgttgtcagtggccaaggtttcgttaactctcggcgtacccagtatcggcgcaatagg
+cctttgatcaacccttggaagattagtcgatcgtaacttcctacatcccggtgaaaggct
+ttaattctaagtcttcgccacaaacgcttcaggagcgtcgagttctatcactttcgaggt
+actgccacttactatacaccggtacacttgttaagcaagtgtttgcggatgtggttaaat
+tttgatggcagatttctgggtgttttagctatagctgtatcctcgaggtcgtcgtttaac
+cgctcctgttgctagatcatatgtatcgttgttcgagacgctagtagtcgctcctaccga
+atcttacaggttcgatctctgctcggcttttgccgcgggccggtgcttgtgctataatta
+taatgataagggcagtggccgcacaactgcagattactgacacttgagtgagaactaagc
+cttgaagcatagtgttgaatgttgtagaaaagtatactgtgacaaaaacagggcctggtg
+tcaagtgtcctcagtgatctggatatcatcacgccttgttagcaggatttacccgcatag
+taatggccggactttatattgccctgctgcgctagctagtactgcgggggctctcttccc
+cctattgatattccgggcagaatgcgcgggtagtcagcattcatgtcaggcttctatcaa
+cgtctcattcacccttggagtgtgacctacgtgttagaggcaatgtagcccgagagcccg
+ttcaaagacaaactcccgaattaaacagacaccggttatgggagtgtgagtagtgacttc
+cgaccagtgtttggtttcagcctgtcggttaacctcgcagggctaggagaatgagctgct
+agtaggtgattaccgaagtctccccagaaagggaacagtcttatagagtagagaatgtca
+aatagcgttattgagttctgtctactgcactaccaagagcatgcccaccagagatgcgtc
+gcagtcgtagcgtagacgtcgtaatgacccaggtggcgttcggcctattcgcgtcggacg
+cgcgcgctactacaacgaagggttctgaaagtgcatgttcacactgaaattctaagtgtt
+agtaaacaaacgcgtgtattccagggtcgtgtgtgacattatggctgtctgcgcccctca
+atgatcatcaagacgttcaattgtatgttaacgtagatatcaggtttagttatccgtata
+ctttttacgccgcgcgcttggaacagattctcctaacagccctcgcggtttcaaaaagaa
+ccaaagtctataccatccttgttcccaattctgcctggttgcggagaaaagaccgcctcc
+atacgtacccgactcggtattggtaagtggggaagcagtcgaacgcatatttcttggtta
+tatcacaggccacgttctatatcggaagtggccggattacgatttgacgttctatccccg
+agagcgcattcttgtttgttactactaccacgcgggcgcttcttattcccagaccagagg
+gaatgtgcggaagctttttccacagattggcggaactccagcgtgcttagtgcaggcgga
+gaacgtccgttcagtggtgcgtgctttatttttcaatctgacccgacctgcgctcaaggg
+ttgcaagttgttgtgcgcccgagtaataggcgactcgtcgcaatgggtctggtacattgc
+attttcatcggtacggcgcttcataaagtgcggcaaatttctcaccccagtactcatgtt
+tatagggtatcaggacccgaagcttctctgttccaaagaaatgtactgtttggctcccct
+gtccatattggaggtagatcacttgtggattatgcaatgaatgaatgaaagtttggtgct
+ccccaccggggcgctctcaaagagagtgagctaaatttgaacatttaaattgctattcca
+acccggagtcctgaccggaacagtaatgaaacttcaaccatgccggacagactagaagaa
+gggaaagttgcttgtatatgggagtaaaaatgatgttggtgccgtaatggtgccggaagt
+gactatagagcatgtcgtgacgcaccggtaggcagtgctataatcgtatgtccttcaggc
+gccgccggacctacgaagctgaaattagacaccggcacactagccccgtcagcgacggtg
+cgcggccgctgccctgcagcgaatggggctaacacgcataaaacgcccgcataaccactc
+gagctacgggaattcactcaggctgttgcttcgacgtgtagtctcattacataatcataa
+tacctccaagaccaacggctgctcatgactctcttaccttgttagggacatttcggcact
+agggaagagctgaggactttgaaaacgtcgataaaaccatcgcgggaactagctgcgtta
+gaactccatattttacgggtcgcaagcttgaggtcctgtcccggcagctgcaagtgctac
+ggcaggaggggatctacctaacgtgcagtaacgagcccctgcccgtaatgaggcgtactc
+gtctctaatcgtcagtaagttactatgtccgaggacgcctctacgagttgaactctggct
+aggcccacctgtccgcgccctgctcgggtaccccatctgcttatccaacttcacctcgcc
+ttacggaatctctggttgccagtcatccgatggtcattaagcagcgtggtacatcgtagc
+caatacttcagggcgccagccatattcccagccaagcggctgcataattacagcgcctgg
+cacgactaatcgatcccacaagcctggtagatgacccttagccctaaagcgccctctgac
+ctatctgcacgtgatacttgattatttgtaatgagcggacagggtagatgactaatatac
+agggtcgtctaggtttgcacaatgcagacatcatccgcgcaaggcccggacggctgtact
+cacacagctagctccatctccctcagcagcactaagattcccacgtgaccagggcgacgg
+gcctcagccaaacgtatccttgatatctacttaagtcaaggttgactccgaaccctatgg
+gtcggtgccgttaacagggagtctatatctcggcgttccattgcttgtttcaaactcctg
+ctataaggtgaaagcgctggagggcatagtttatgcccaaagttgcgcgtagatccgtcg
+ggatatgtgctataataaggactgctcgaggtaggcggtaacggctcccgccttcagtag
+gcgcggaactcgaatcggagttacaggacttgaccgagtcatatccaagtttatgttacc
+cgatcggatccggatgctcgtatctgcgacgaggtcggaagacggacgaaatacgattca
+accgcgcgaaccattagcatctaacctttagcctcaatgggtgttaacgtggtgggctca
+ctcggcgtactctttgtgcaactattccgtatgaacaacagtcaagttgcgacatgatgc
+tcttacgtgattcccacagtttcccacctcaggatgctttctttagctaaacccaatagt
+tatggcggcaccttcagactcccacgaggacggctatgacgttgctaaaccattcgccgc
+caaaggctagcgctaacgagttctgtgagtttgttccgggccagatctccaggatggtcg
+caacaacgcagtaccggttttatactggtgaccctctacctgttattaagttacagcgtt
+gtcctacgtacatggtcgtgagtactcgcgtagtcaaacgccaggactagcagcgagaat
+tattgtcgcgatacttactacaatacttacccgatattgacgtgcagggttgaaagagat
+ggacagttgaatatctattttgacggaatcctcaaaactccctccacctcaggtaacggc
+cctgtccgggaccgcattcttgcatatattggttcccagagcgtatctaagttagtctct
+tgaccgttcaccgactctagggcgactcgttatcgccctccgaaacgatgctttcgttac
+ctcaatgatgacaggctgtaacgtaagtgatcccaatctcactcgtgccttgtccaccgt
+tccgtgaagacgaagcaatacgcggaatacgtggcttcgtaatattttgacgatatgggg
+ctgggacgctcaagacttccatgacaaacaaagtgaagagcaactgcatccctcatcatg
+atcactattaccagagtagcgatggataacgctaatttggtcagggcagctatcgcatcc
+cgcaggtgtaggcggagactttttcttttgttgcgagttgacaggtaatctcacggtata
+agcacggttatttacgcaagcgacgtccctgggagaatccgcccacgtaggaccccataa
+tccataaatactgcggtcgaaaccttcatatcgtgacagaaccgctttctagggatgcgg
+tccccgcattcagagttctactttggccagcgtgagacttaacaactccacttacgcggt
+acattgaagtcgttcagtccagtgtgacctgtgtaccgaataacgtgtagaccagcgcgt
+ctacgacttagcgcggctccactccaaagcaccttttgggactttccaacgagcctgttg
+gccgttaagcggtatttcacaaatagatcaccctagtgtcggtaaccgactaccctattg
+ggatcatcgtgagctcgaaacactagaggcggaccaacggatgacatttgattcggctct
+acagagcttgtcgccagagaaaaactgtggcaatctacgctcgcggggaattgactttag
+cggcccctagacaggtgtgggacactagtctagattcacgtcctacacgacataacagca
+ccttcctggccagcccagaaatagtacctggacgacatccagccttccgacgccataatg
+tgagccgtagcgcccacgacgatcaacgaggagaaatttacaaaggctgtgtgaatgcta
+cgtcgtctaccattgctcatcgaaacgaacgcaacgcacagcatacaacgtttaccatgc
+cggagcgggatcctcaagtacagaaaacagaggtctaaacatgatccgaacaaatcggta
+ggtttacacagctacctcgtccattggcgtactgcatcgatcgtgcttactacggtcatg
+ccggcccgcgatgcacgtacgaaggaataccctgtctgcccccgcgcgagttacgctgtc
+tcgcacataccgagcactgtcgttcgaagctaaactatgagcccagccgagctccttatg
+gccgcaacgctggtgcggccagctgataaattccacagtacacgatcctcgtgtaagatc
+tcgggcatagtaagtcatttcacatggttaggagagatagaatacatggttctggtagct
+caaccaggatttgtggaacccttggcccttggtgagtgctacaataaaattctccgtatg
+ggacaaccaaagggtgctggatgtgacttcccggcccaggttagatgtccatatcattca
+tacattgcccgaccgacccaatgcctaaatcagaggcgccttagctagttcttgtagtgt
+gccacgtccggccacgcagacacgaccctcggcgagtgatcaccattaccggattggcat
+cgaagtctttttctgggaagttagccagtttggtgtgcggtgcttagaatcttattccca
+gtcaaacgcccctgggacgaattgctaaccctagttgccacgccggaaccatcttcggga
+gagtagacaaatccgagttagatatgttagcgtcttcgtgagtctgaaatgtatcacttc
+accgcagaatacgcgaatgtctgtttgccctggactgacggaattggcttaaaagccgac
+tagagcattttggtacggttcctatccgcgatgtaattacctatctaggttatcgctaga
+cgaatagcgagtacagtgtagcaggccctttgttagcaagttgctctaaacagttgtcaa
+aacgtaggcacaatagtgcgattcttctaaatccgggaagctcatggcgctgggcagaaa
+tatcacatacgggaataatcaacctccattttggttcgttttactcgatgagtgcccctt
+gcttgagacgagcgttctgagttgatggcatgtcgaaaggtttacgcggtgagtagagca
+ctttacccctacagatcggaatcctcgaggaggacagttggaacttcacattaacctttg
+ttcgattgcatgaaggttgtgttctgggagtaggctcccaaggtagcggttcatgctggg
+ggcagccctaagtttgtattatgtgagtttgcgtctgaaactacatttagcatgaggaac
+gtaagctttctggagggatcttctaaagccaggtatcgcccgctacgatgccggagccgg
+tggttcacagctacctgtgctcaaaggcttaaggctaatcatagcaacagtgcgaaagga
+cgtctttcagatttcgaaaggtgctgacacaacaagggtcagggcggtcctacccttctg
+attccctacctggttttttagcaagggtcaaggctaggcttatactcccgaacgctttaa
+acactatcccacccctgacggggggaagttgcgcgttaagtataagaataagatttaaca
+gtacactttaggttcctcttccgcgagccgtcatacagcaccgagcgccgttgaaacgcg
+attaacgcgtattgtcgtgcgaaaaaaaaacgctcgccagcatattggagtgtcgacttg
+aaatattgaacaacaccgcatatcaaggacgaatagtagggcttcactacctccacctga
+cggccctaggacttatactcgaaaaagaccttccatcacgatgtcccttaccggcgagag
+ggctatatacgcatgaatagcagatcttgccgtcgctgagtgtcacccagggttgctcca
+gaaaggagatagggcggagagccatcgacagcagctctcgtctaggtggtagcagctaag
+gagtcgtgtcgtcgcgccgagttggaacattatcgatgtacatcaatgcagtaatgatgc
+tgatagactcgggagtttcctcaaacccagagttacgagaagacgcaggtctatcagtta
+gaaggagtcagtattggcctttgaaagatcttatgctcatgcccaatcgtagttaaacgc
+gaatcgggaaggccaatctggcggttttgacccccggactcttaagacgtccaatgtggc
+tagacataagtaacgaattactctataccgaggggcgggaaccggccaatttattacgag
+agcacgagagccttgtagcggccagcacactatcctcgagtccctctatcctgagacgta
+gatatacatatacgcctagagagaatagccgtctaggcttccgtcgccctctccgtcgtt
+cgcgtgaaccgtaagtcttccgcattcccttcctcaagcgcgttggtgtgagagtggtat
+tgaggcccagtcttataacgcatatacttgtgcactctattacttaccatgggaaccaat
+ggcactctcgaatcatgctcacagctgagcaacggtgctgctcaccaattacatatgagt
+cgtggtttagcgttggagcggaagatgaatttccatctgttcgcgcgcatcactaaccaa
+tatacggttatcccagcgctatctagttctgaccgggttggtagcgaacccttttgcaag
+ccggcttagtggatgtgaagtgggagtgataacttaagccgccacgttcgggggggactc
+gtttatattggtgctggaatacgaacggcgtgattcgtagtcgccctaatcgggcgcgac
+aacacatgtagtactgtcgaggcggtttaaacccacagtaggtactctatcagcagaatt
+atgctagaagtttcacaacaactttccgcatgaggctcagcggcagcgtcgcactcccaa
+tggccagtgccggtagcgatgtttggtggaattagttccttcggaatacgaaccggattt
+aaagagcctcggagaacctaaacgaatccgtacgcatcttgcccaaggtgctgagccttg
+tcgcctttctcagttccacctacattaatgcaatgcgttcgaagctctgaccgcaaacag
+gaatcaagttcagacagagtgcaagagtttcgcaataattgggaacgacccacttgatat
+aggtgcttttagagatgtgtgtacgaccgtccttcgagcatacctacgggttacaattgc
+tccggtaagtcaaggcacatagaaaacatagccaactgagagtgtatacaagattacctc
+atgtagactgaaatacacacatcgctttaagctctcaaccgatgtagaacagattttggg
+cggcgttgacagcgtgcccgctcaccggtttgctcccttctcaccaaataaccatgagac
+gactttggtgactggactgccagatgacgggctacaaccgttttggttccgaattcgctc
+taactcaactaacatcatactatatgcgccaggatattctcgcggttggacccccctgcc
+aattcgggttaaaaccactccccccatgtagggagctgccgcaattacaatatcgacgat
+cccagatggacgctcacaaaatatcagtcctttcacgatccgctcatatagacggatgaa
+gggactgaggctgttagatagtgacgtcgagcatggcgtagacgagcgcaaccgggtcga
+ggcccgcattaccgtgacacccagttgaaaggatttacactgcttcattcgatatttacc
+actttgtatgaggagctcaacctaagtcaacacggaccatcatacaggtcgccagtaatg
+agaaggctgctgtgccatggagaagcgctgctacagcacacaacgaacatcttgcaatgt
+gaaggagggtgctcttttgggatgagcctacggggatgtgtatccctgccctgtaggcag
+ttgggacttagcgcgactatctagataactaaggcgccagccgcggctgtttgccgaagt
+cgtgctgatgctgtacaacgaagggcgagcgtgttaacatgctacacgttgacctagact
+agtccaagtctgaaagtcccaatttaggtcgggtagtacagtcctcggttccagtcccat
+gttgtgccgacaaggacaagcgatcatcaaatcgactgaaattgaatcagctacctcaga
+ccacattcagctctcggtaacatgggaggcttgtggttgcaccgtaaaagggggatagcc
+catccatcctgtaaacctacaatcgcgcgtagcttaatacgctcacattagacattcgat
+cgagagacctggtttcaagagccttcccttttgctttagtgggccaaatcgcaaccctgc
+tcccctcccttacgccttatacacttcagtgcaaattcatgcgttcagcgaacaactgga
+cttctgttgtacgtagtccacgggggcttattcattatagaaagccccctactgtcaccg
+ttatatggttcacacatgagctgatcacctagagagtcgtcatgcacattcgcctaacaa
+ggacatatgagtaaccgggaggggatatcttcgatttgcagcaccaatcgacgttgtact
+ggtctattgtcggttaggtccgattatccgaccggcaatgaggcaagcccatctattcag
+gaaacttaggcagttccctgtgctggcccgacgtcgatgagttaagtctatacaggccgg
+ccgcgagtagttaacgagaccaacatagaactatcatactagccggcaatgatcaatagg
+gtcttagtgccactgtccttcgagccctcgcctaatttagcgcgaccggtttcctattgg
+cctgtggggttgcgggcgcgtccgctttaagaatggtccttaacacctacccggagatcc
+attgcatagcacactctccccattagcctagacacgtcgtcgcccgtcgactttggctgg
+aatttaatcgccggggatatcgaactttcacgccctttaacgacgaggaaacctaccgtc
+gcctggctggtaaatgggtgccttacggggactcacgatgctgtgaaccgcccgccagtc
+tctggggctcccaaaatccaggttggaattacggacctccgccggtactacgcattacgg
+ggtggaaagtcctaagataggtgaatgaaagggcttcgctaaaccagtaagtcattaaca
+ggacatcggcgtcacgtctcgcgggtttacacggcgcacaaatcctattcccatgataaa
+caccttatgccaatccacatccctcgctgcctaataaaattgtcacacctgcgctactga
+ctaacgtttacgcaatgagagatgaattccgacacccacgcttgttgcaagcacagccgt
+atgggttctcgggtaaggtaacacgaggcacactccggcgcggccacttcggcccctccc
+tgacgatgaccctcattggtcaagcatcagtcgaatgattcgtaacaaggagcaaccgac
+tcagtagagagggtgaatctcacgcgctagcctgaggaccgcctaagtgcttgctgtgcg
+tcgcggcagtcgcgaggtgcgggctaaagtaaataattactggtcttacctaattaaagt
+tggtggttagggacaacgttaccactaccagggtgcgcccctgaattcgggtatcggact
+atccagggcgccttttgcggccttaaatacctttttaatcacgctggagctagaaggcca
+tcgggatagacggggttctaggtactcgaaaaaacaggcctaataactttattgcgcttg
+gactaacctatgtacaacacgttgtagcatactatggaatgttactgacctacacggata
+gcatttgttcgggagcgtcattgacctcccagaccctatgccgatctgcaccattcagtg
+accatccacaagtctctaggtttagccaaaggtgacaggtcaagcacttgcgcatgtcca
+ctagtcgattatgcaacgtctctgaacagttagcacttatctcccgccgtgtgactcacg
+cagtgaacttacctatagcatacgcctactattgaatgttcgttgttctaacacagcgct
+aatacctcactggcagaggtgcgcacgctcctagtatgggagggagtcaggtcagagtgt
+atgagactgatttttattcccgataggggttcagtgaaatcgacctctcaaaagagaggc
+gcagaattcgctgataagctctgctacgatcgctaaggcacgataagcagggcggtgaag
+gttggagcaagataatatcacccggacgcgggtcctgtcgcaacgagcggccgtgagacc
+tggtgcgcaccgtgtctcgatcggccgaatatcggaacccactgcgtgactcaaatgata
+tttttgctatctgtgggggatttatgtcccggtagaactctgcttctagcagaggataaa
+ctttacaaggacggcgaatatggtgtcagagcgccctaatgatcccgtgctattccgcgg
+gccaccggccgttaatggacttcgggttagaaggatgggttattcatcttccacagaaac
+gcccagccgcaatcgtgggtttactcgaccgcggttatctgcctacttagctgcattcct
+aaaacaggattaaaaaggccgcgagggttgcgaacctatggttgagaacagagtcataga
+gtcagatgcgcagggacggcacggatccacatggcagttaactaatattaataccccctt
+agcctcgtatatgggcgtgtgcagtcttgtccactcgcggacgcgtatccgagcgattct
+gtcttccaacgctattcgttaccactttggcacctctttgctaagcaggatgagaacatc
+tcactcactacgagccttgactttcagcacgcggtacgagggcactgggcttctcgtcct
+ttgctagatgtaggtgccttcccgccctcatgacgatgtcacgtctatcggtttattaag
+gtcggggaccattacgagattaccccgcgaccttcgtccaaatgggatcacggcaacgtt
+ccacgaggggcgcgttgcctgagccactcgggtatccccttccgatatccgcagaagtct
+agctaggagcaccgccaagcattacccgattaagcaaagcctactcatcgcatacacggt
+tcttggggtttgcgtcagatagcaacttccggcggcagtagagatgatattttatccgat
+tgagcttgcccagcgcaccctcgggccccgtggctcttctcttaaatgtgccctgcacga
+tgttagcggttcctactcctccccgagccctatgggtggacagactcgccctctgaggct
+gcgtgttcaactggttccaagtccggcgcctgtggatctacgacgcgaccagcaacatta
+taccaatgtctaggcttagctcgaaaactagtaagccttagaactagggtcgtagcttct
+tctaaatgaagggcagcgtcatagccatccacgttagcgcttactcaatcgcctgtcggc
+tgtcatgttaccgctgccgtaagttcgtgaacataaaatacaacacattttaggtttaac
+aaggattgtttaccgccacgtactggtgccggtagtgaaacgaaaaacctcagcatcggg
+aggaggagaacggaatccctaccaatcttatctctacttaaagaacaaagcgcgcggtac
+atggcgcagacgagaatgaatccccgaacgggccgagttagactcctcaacctgtcgaaa
+agttgcgatccgctagatcgtagagtacggacttaaaaaagaaaagaaggtctctacccg
+agcggtgagcccaaccagttccaggttgctgccggattcttccacacggcggtgccatat
+ggacgaccccgtactttgggcattctaggctacctactgcgaacgcctcgcgttcatgcg
+caaagttttctctagataggcgcgctttggtaagcatagtaataggttcttcagcgtcta
+aagcccgcccattaggcctggcgactctgctttagtggtaaagagatagcatcgatgtac
+atcgatggagagagtattttcacgaaagtgcgcgccgtacactatttatcggcatgcgcg
+ctaaactggagggtctaataaccagatcacgcaacgaggtcccatgtacggttcgcattg
+cgaaagtatgggatactagaggttttatcgggcctcgcttgaggtctgtctgggactggc
+gcacatcgctcgtcgcccagtcgatagcggggtgattaaataagaaatatgttagtgccc
+ggatttggaaccaaccagtcccggtagcggtacaaaaagcctttcctgctagttctatgc
+ttaaagcgtactcctgttacaatccgtaggcaacctgaagaggcaacctggttttccttt
+atttcgactttgtttgccatttccaatgtgatactgtgcggcgaccttaatgctttttgg
+taaaaccataccgagatccagcgcacgcgacattcagaccggtcccggtttggcggtcaa
+cctcgtactctgcactgttcagctagaggggtctcctatcccgaggtaccggtcgtctaa
+cgggtggttacaggggctggtcctactctaccaacagttaaggagggcaacaagttcgat
+ggggcatcgtataacttgaatgccattggacaaataataattgctccacgtcccaaacct
+caactgaccttgtacgcataggtgccacctgcacgcaaccgagctcgttcaagtgtcctt
+cttagctggcgccgagtgaacctgcatctgagagtctacccaacgatctagtatcataat
+gtctgtagccagcgactatgacacttagagagccgcctaagaaagtgtttgcggctcctg
+ccccggtgcgcttgttcggtgggaggtcgttatatagaaccatggggatataatgaatgg
+taacatatctgccacgttgacaagccgctattatgaattcagggttggatactattatgg
+cccttcacggtcacttgtaggacggccccaaacaggattagtaaagtcggtggtctaagt
+gtaagcgataggcaaactgcggttattcgcgtagaccgcttgatgatgtaaaataacagt
+tttcatgtctttgcaattaccgcgtgtagtctgaggacttaaggccccttctcggatagt
+gaaatagttcaggtccggctgttgacaggtgtcctgaccggaacgctttacagctcctga
+ggagcgtagcgccctacgtccttcctgatccagccgcacccatagctagtaaacaagttg
+actgcgagacacaaagtcaagggcctgggcaagcgcgggccggactgcttgtcgaatatt
+gaagcgtactcgatccagatctgcgccattgagttaaaaggactatacgcctgtctccag
+ccgattgcagaaaggacagatcctaatagaagaactggggctccattctctcaccgacac
+cctcctattcctatcccactggccccattgctggtaacccaaacctctcacgacgattca
+gcgctgcgattaaagagtggagtaaggttaaaatcggttggggcgagtagtgtttgatgc
+aagatccattgattatcgccagtgggatggcggcaaaggtaccatacctcgagcttattt
+gggtgcctcactcctcggggaaccatatagacttgcacttggcaaaatatggtcgggttc
+aaccgaccttttatgcctggaccctctgctgagggcctcttgatcaaaatgcttgcgttg
+cttataagttgccgcttgatgtccaggattattattccagcgtggaacgggaaatgatag
+cttatctgttactcagggcgcctgaattagggttgccattacataaaggaacgacaaggt
+gagcactgggagggcgcattcttataaccgggcatatgcgcggaacaccagcgttggatg
+gcctacctccgcggaggtcggggtcgaaggcccccgtttcctggaacaataacactgtcc
+cacttggtttgtaaagaacctccactcgtcatgacacggcctagcggtgttatcggcgac
+gataatcatgggtctttacaagtgaatcaggcttaccaggcggaccaggaggaaacactc
+cacgagtgagacctggatccggggggatggcatacatcccatacgctcactcagcatgca
+cgttcctagcacatgctggaatcttgcaagctggacagagtgtattgtggcccttgagct
+atacttctaacgccagatccatgtttgcaaacatagctccagtggcctattcgacggttt
+agcctctgcaccatgttatggctcttataggtgttgggtcgacagtgggtgactagacgt
+aaagagagtatgccgtggttgaaccgagacctaaaaagctcaagatcacgacggatatct
+ttaacggataccagcaatcggctaagaccagtgtctactactcgtgatcggcaccggccg
+cccgttatctggtgtagtagtcagccccgcatcacccgtgcctatgcgagccttgactct
+atcagtctaagagcacacgtttagacctgagccaagcgtaggtcactatcgagtcaacct
+taaccctagttgattaatgctcttgacgtgtatgattacaccgaccgcgaataaactctc
+acgcgcgtgacggtttcctcgctagaagaagccatatactgtacacactgctgtgaccga
+caagacttacctttggtttacgtacaggtggacagttgtttctcccctcgggtcgatagc
+gtttggtcgtgattccaataagtgccagatgtcggaacaacatgtttccataaagacgcg
+tgacatgatatggtttgctatgaagccactacgaaaatgccagtgcttctctttatattt
+tgcagatgtggaagaagtgcatccattatagtccttttacgtacctggattctccgccag
+cactgccactactttcttactatccgttggggggggacgctcaacagagcgcggactcag
+gaatcagataacgaccggaacggggcatatgcccagcattcgttgttgtaaagcgattga
+gtttgggctgctaaggggccggcagttcgttccgggatacccgcaaaatttatgcctttg
+tccggtgattctaggtttagctcgatccacgaatacgacaatacaaggtttgcctcctct
+ttcgtctatcacgcaagcttagagttgctaaaatttcgtagtccgtgcgttaaagctccc
+tacatttctaagctgtacgacaccacactatcttgcaacaagagtcactctatttctcat
+atccgaatgaatatcgtcctgtacacgggtggcaatctcggcaagatggccgagatgtgt
+agcactgtcacgttcaaaagctcaaacttctgcccactgccagccctaacagaatctgga
+gacatcataccagcgctgtcccatgtggcggagagttgcttcaatagaacgctatcaccg
+tgggatcacatacgtcactactccgtgtgacactatttattattcctttacctccaatac
+gcccgtccttgcatcgcattttgtagtaagacatcagacgacgttactgccacggaacca
+taaaacgtgctgagcccacgtaaacgtcctatcggtgaggtccgctcatcgtacgactct
+gaaatttggaaactaccagtttgttggcggtgaatatccaacctgtcggcatacacgctc
+acgcgtatggttggtacatgcgaaaaactacccaagcaccgggcgcgcgagacactatga
+gtttagtgatgatttacggagcacgttttttgaactcaacagaccgattgaatccttcaa
+acagggttactcgttcgtgacaaccgattacagcattctgaacgtggtacgtgcacatag
+cttggagagttgcgcgaatctctttcgtaccgtattctacctgatcgctagctttccggg
+gtaacgacatcggcaatgatgagtagcagccagtatccatactggacaggtactccatat
+aaaactcccgcttcaacacgcgagatttgaaccgcacagtgattgtgctgagtcctagtc
+accatcccgatcttgtacacgggtaggggtgtaacgtgggcagatgatgcttacccttcc
+gctggcttgtaaaggtgccccgcttcacttgatgagctgcgtcgacaagaccacccaacc
+cgagccacgtggttccgacgactcaatgatttccagtatggtccaatcgagcaccttcca
+ctcatgaaatttgagcactgttggggatcgagtatgtgttttgcagtgggtctgtagcat
+ggaaagatgtaccctaacccggctctggcattatcaacggtggattgggtggttaaacag
+cttcccttcggagacttaatggactaaaacgaatgaatcagacgccgagaacgagaactc
+accatctggcccaggagccatatttttgattggtaaatcgctcgcatagtgcccgatacg
+atgcgtacttgagcgtaaacggcgcagcctctaatcataggtgattgctaagtctacggt
+catccccagtggctgacgaggaattaaagacctatttccgtacttgttgcgcgccttcaa
+ttatccagcgtataccccgatggctactgctacatgtctaaagtgactagccagaaaaac
+ctaaccctcgcccacgaggccttgatcatctcaatcatagagtaatgttcattgaattgc
+acggctcttggtgtgcacattgagacaatttctaaaccgacaagtttaatggccgagctc
+ctcctgcgtccagctggaccttcatgcaggcatgaaggtccatatatattgtcctcccat
+agcccgccgaccgggtctgactcaactgtgttttcgctatcccaggctagcacttctatt
+ctttgttacgtccagtcatagtgttactatagggtaattttagtcatagtagacggccgc
+tttttcgtatggcccgagaccgtccaccggctacccaattaagtcacatccggatcttgg
+gtctagatattcctatcgaaaatagtctcgccgcctcactgcgtagttcagggggcgtca
+cacttgttcgcggcttttcctcatgggatctttacccgatggttgatgcaataaatgtct
+acaccggactggcgtgtccgagacgactttatacacgtgtgacgagtagatcagatcgta
+cgaatggtctgtctcacctatcccagtgggaggatggaaaacactcctgcctaccgggtc
+gaattatttacgcgtgttacaatatgtaatttagaaaaagggattgctggtcgatgcgtc
+tccaagggattttttatctaaaagcatccttttgggtgtactctgatcgcacgtcgcaga
+cagcagtgggttttgacgcagtccgtaggcccacagactcgtttgttgtttattaatccc
+aggggagcgttgaagccacacctattctgtagctgtttgaaaggtagctagcccggatat
+tactcaaggtgactcccttcagaatcacacgtcgctggagtcgccacagggtggcatata
+cgagtgatagagcaccttactttcgaggtagcggtacattagtgcaacgatgaacccact
+atagtcttagtgatttcatgttttacttacgcgaaaacgtggggttttgtcaacacgtat
+acgttgaatgcacatgcctcatcctaaactgatgcactgccacaagtctgaaagagcgac
+agtctgcaacatagcggaaggttacgcccaagccagtggtgatcccccataagcttggag
+ggactccccttagcgttggatgtctttgccccagcggcctcggtgtacgggttctccacc
+ccactatggtttggaactatgaagaggtacggcaacctacccgaggcaccaaatcgtgaa
+cctacgcctatatatacggatagcagggtatccattcttaccatgagctcgtaaaccact
+ccgctgaattcgatgggctttggcgcacatcaccgtttctatcacagatctgtcaacgga
+atctaacgctatttactcggcgcacacagatcggaaaacccaactgtggcgcgggacgga
+ctccaggaatcgttacgcgttatcaccttcggctaagtcttgacgacattagagctatat
+ggtattaatagtagctgtacatcaaatgataaaattatctgaattataagtgatagcgcc
+cacataatgacacacacgttttagatagttagtagacgctcgagactttgcgagcaagaa
+tggactgttaaccttaggggcgggttcccgcttacaaaagctgattcgctcctagagatc
+tataagcgaagttcaacccctaattaccattgcataagaccgggagaacctgtgacacct
+gttcccatgggattagcgaaggattgttgacttattgccgagtgacctagtattgattaa
+aaatgcgacgtgaagtaaccaggccttcgatgggcgtctccgaatgggccagtaacaacc
+atatacaaactacaagttaaacccgaaaccgtggctaccatgctcatctagtcgggttcc
+cgatggaacattccacggtgagcggccttggatgtcggaccaccatttggcaggacaacc
+gtcacgattcgcaacagcggttaaagcaagatggacgccaataatgatattcgaaagtgg
+ggttaaaactggccgccgcttgatcggtcctacttagtagcgtctcagatgctagaacca
+ttccgagtgcaatgtgtgctagcaacagtggaatcggtctataacggtttcatgatccct
+tctccggccatccattgagaacgattctacattaatctgttaagcgaccgccaatcactg
+attagctccagaaaacctaagattaccgtatataagaatcaacctgctaaagtaggaagg
+cgcaggttgccgatgaacagatcaagttcatacaggagctcttaatccaccgtacccaag
+acctagtcaagcgggatgtcgttaacaactttgtacagacatttgggagcattgcaccac
+agactccaatgaataacgcatccgctaggaccggatatagactgaagaaagtatagtcag
+ctgcctcctaaaggaggcagtagtaggagccaacctaacgtcgtggatacgcattactcg
+gtagcgtggtaaacacacgaacccgatctcagaattttagcggcgagaagttccataaat
+catatttctacttcgtgctccggcttcatctgatggtggtcattattctccatatgcatc
+cagtagagcttgcgcttcacgcaaagttccaggatgctcacatatgtccatacggcgcta
+ctacatttactcgaacacttggaagcccgccgtcgggtgtatgactagcctttgactgag
+actcagcctcgcaattgtatgtaactagcgtatcccggcaaagtttataggtccatatta
+acaacagatgggagtagagcagcagcttttattcggactggcacctcatcgctttcgctg
+tctgcgggatcaccggtctctcttgaacgtgttagagcctgagggatctgagggcacaca
+cggcacttgtatccggaaaacctatgtatagagcctcggttgccagtactagttcgtggt
+ccatagcgcctgaggggattaaacgcctccggaaacacgcgagttgttcttgtgcacgta
+aaaatcacttgatgttatcgtgttcggccccagtcgctgtctcacttcaaaccagcgccg
+tatccattctatgcaattacgattatacttttgacccgatctacgaatcagttacccatg
+aatgcgacctgcgataacatacagtgcgacctccagtcctgttcgattaaatcgacagag
+ggtcccgaacgcatccaagcggcttgggtcccgctggcaccgctgggaagtaggtagaga
+cgtattgaaggaagcgtgtacagattggtgattacggtgctcttataggaccagactcgg
+gcgattctacggggtcgtccacactatggacccgagcatcgaatcagtatgtcaatctga
+agggactaatcggggagacgctggactccgtcaggagtgaccagaagcagggatgcaaag
+acatcccggacgtggatagactacaaatcggacactcagatacatacctctagaaaatac
+tattccccgtttctattccgttccgcggccttttacgtttagcttggagcaaactatata
+gccgaggagggtactacaacgcgacgcacttatatcccaatgaaagaataaaagctggta
+agacaacgctagccactctacctgtgttgcactcgcgatattagggagacaggttacaat
+cagctgacacatgactagctgacccggagcactcaattctgcccatcggggatctgatca
+aattcgtcgtcgcattggacggcttccctgcgtagcgaaggaatggttaccgtacgcctc
+ccaacacacggcggtcaaaatagtcttcagcaacagtaacacaaatctcttcctagtact
+cttggtacacggccctagagttaattgtgtgcccccccatactctctacatgtgataaca
+gcgacccactaggttgccaaacagagtcggaagtcctatcgagtccagggcgctgtaggg
+cctacagactctccgatgtcctgtgttcttcgtaattgcaatattttcgggacccttctg
+ctgttgtcagattcagtctgttccatcttctggaaatgttgaggaactcgaaaacgctaa
+ctccctgatatttgtggccttacatcaaccgtcctcaggtgaagcccaatgctaaaggag
+tgaaccagacgtgcaggaagaagctgttgaccctttaaagctctagttcttgtcaggtgt
+tccgactcgctggcgagagtatgatccagtaagcggcggacctgcgaccacatgatgagg
+tccctacaaaatcctatgctccctgcgaattacaactcacagagaacagcctaggctttc
+ttagttattgatgcacattctactgacgaacgcagcattcgaactaaaccattggtaatg
+taattgtgacacgtgggaatctatttaaagctgcaagaactccaccacgtgttcatccac
+atcggtctctgtggaatggtccaggaccgtcccaatagggggaattgcgagacccaacta
+atcgagtgattgaacatgggagcaattcccgaatagaaacttgcaacgcgcagtactacg
+acgatggtagcaataacgacgcgctacttcagctcatgggtctaaattagggcgaacgat
+tgcacctaatctgctggcttctctagattgtagatccacagggccaattaacagtgcaaa
+gaatagcgtcatatgattagtttgaaaataatatacatgaaaatcgagcacccgcatcaa
+taagctacgagagtctttggagagtgccaatacacctagcacatgctgtgcttatgttat
+gaaaattcatacttgactaacgttagccaccagccgatggcgctgtcacaacgaccctgg
+gttaccgtttagttctctaagaagggtcactctaccagcggggttaaatataccggccga
+ctgtctcgagagtgggttgagataactcaatttggatcagcattaagtctagagcgattc
+tcgcggagcgatctatgcgcactgacttactcttggaatgtcactcgcggcttacatgcc
+tccttgttccgcggattgaatattttatgcggtagtcatgactttaatcgtttctacaga
+aaagaccgtttgaaatggcagaggaaacaaccctgctggatcctccctaagtcacatccg
+gacggacagattctacttaacctccaataaattgagaaaaatgcaaaaggatgccaatac
+ctatagtacattttacgtttcccgtgtggttcgtgccaacccctggacggtggatgtccc
+cggtgggtttttggaccgggcgaaattattggccaacccggaaacccaccgagagcctaa
+gacgtgcatgatagttataagtttaatgggagccttaattgcaaccgatgggggcgggta
+tttgtctcctacaccgacactatggttgttatttgcggcttcactcaactacaatctggt
+ctgtagagagtaaccccgtattatcttcccttgcgccctgggtgcgttagcggaagtatg
+gggattaaggggcgtgaacaatgcttctaagagcccggcgctaacggacggtgtcacaga
+gtgtctaggcagagtccccactgtggaatacgcatgcgtagcgaaccgcgcgagtcagta
+ggaacacattgggagcgattgttcctcctatcagccggcctagcaagcatgacgtcaaac
+cttagtgagcagcccaagaaataacgctcggactgcaacagatctaagcgggaaatatat
+cgatagcgaggaagccgagaggactaagcagagagacgaagaggtgagccggagtgattt
+agccccagatggcaggtatagcttccgttcacaacgaattgaacagaaagtccggcgccc
+ctggaatttcgaaacgtcaccaggttggccgtaaggttggtaactcaacaccctaagact
+agcggtcttgcgtcatgcaagcggggcgtgtagcctgcacagacataatacggtagggag
+gttaggcgtggggcgacacagtaagatctgatgaatccatgtacgttgcctccccgtcgt
+acgcagttgatacttcgcatcatacttagcagaaagcatcatcgcgacctctcgtacaat
+ggcaaaaaggagggcttcgtgcacggggtagagtcttccgcactctaatgaatcaacagt
+cgaggttcatggccacaaatgtaacgacgcgatatgactcgttatgtctaggtcccactg
+cggatctccttagaagcgaattgtataaatctcatagccccccccttagcaagtggtacg
+tagcccacacgatttacgcagagtggggtaagacctcccccacgacttggggaacgcgcg
+ctcaccggatagctactgccactgtagagccactagcgcatagtgtatccatagtgatgt
+acgtagccaagcggggagtccttgtcttatgactagcgccatggggctatcaactgagaa
+cggatgcacaaacggtccggccattcgcacagtccgccggtcactaatgaccggtctgca
+tggggctgcaacgatcgcccaaggattggaaattgttaataagagtccagtggacaattt
+agtaacgcgacgcgcatctctccccgcctaacaaggctcatttttagcttgacggcgcgt
+ctcacgttgccgggctcagctcgagctcacgtgccgcgcggggttacctcaggtttgagg
+aatgtgtcttgaacggttcgtaccggcttagcgtcgggtgctcctcagggttcccagcaa
+cattcttaccgcaatccaatactgagggcgctaccaatctaacgtatcactgacccagta
+aaactcggtattacgggggcgatatatgtgcttgcctcaacatagaactaccgccttgac
+gttagaacgttaagttagagcacctgcccatctggattgcggcgataaaatcgattattg
+tcacctggatgaggaatatggcggacaaacgatcgtgtggacctgcgccgcaaccgtggg
+atgccgcagcagaatatctacagagcgtttgcaggagggccacgcggtatccacgtaagt
+tcgcgcaatagcagcatcatctcgttcggggttgctgctctcagactgtcgatacgtccg
+aataccagcaacccctcgaggctttgtaatatttacggagtcctaagggatttggtgccc
+caagtatagttttgccgaagggggggcacagtgccgtgactacgattgggctattgggca
+acccgaccccgtgcgcacacgtttgatctcagacagagggcaaaaagacgaagccacgag
+ctcttcgaaatcaatctacatctatgctgggataagttctggtccacacctagatccgag
+aatggaccgtggataacgagcaccgttacctttgaggcggcagcacttttaacaccgtaa
+aagtaactctatagttgtcagcctttaaagattgcgttcccaatacggtacgcaccgtct
+actaccgtcaacacaccgtagcttaggtccccccgcggcagcgcttccatcgtggagggc
+tgtcccccatcctccgtagaactgcgtttaccggtctggggagactccctaaagaaacac
+cacaggtgaggtggacgggaatcaagttaacgcattcacgtaattcactcctgttcactt
+acataagagaagttctggttcgcgccttaagtgccatccatgaggcatacgatgcgatgg
+ggaccacgcctgtagactagagaaacaccatcaagttgataaggagtgaaaattagtata
+ggtctggcccgctcgtctgttgatagggcctttaaatgtaataggcctccgctctgaacg
+agtccgtacttatctgttggatagtaagaacacggttctcagtccgcaaggtagtatatg
+actacgcgtcgatggacctaaagatacgtttggcatcgtcctgagcagcttatgaaaatt
+gctgcgcgtttcaggtggaagaatctgtgttattagtgcggggacggtagtttcgtaggg
+aattatgggtagtacagatctatggacgggaggtgactgtcagcagactgtgcgcaggcg
+ctggtggtataatcgctgggaccacgtactggcaagacgcatgcagcctggtgacatcca
+caccgccctcgctcagataggacggacgtgcggcaataccctatctggctcctggacacg
+gaaaaacagcagtttaaaaaaaagtgggttttgtgcattatcactttgtccgttcgacag
+tttattgcacctcccagcatgctagtaaccccttgctctgatttgagatttattatcgta
+acacggagtcgacgtgaagtttgatctgcggagaataggccgagaagcccctacgtaccc
+tatgattcccgccatgtgcggtgtaaaattaaccactacttatggatttcatccaaatta
+actgacgcattatatatacctcgagtgtgtaagccggccctcgcggtaccaaatttcggg
+ctgcatacctagaagtgtatgtcatctaaacctaaggatcgggtagtgacgtgtaactaa
+cacgtgggacaatgtctgtcctgagctacgtcttaagaagtatttagtcctacgtactca
+ggcatcgatactccccgatgttgggtgcagtggggcgtccgggcggctaagatagtccag
+ccactccttatgtgaatttatcaaaccgggaagaccagtgcataggccacgacctacgta
+gcacctccgtacaaccttgctccagggcacgtctaaatgtcgtactgggttcggactcca
+tgcctggcgactagcctggcggtccacatattttacaaatccgagacaacaaagcacttc
+caaagtcgcgtggaccttaaggaaggcaacacaggggacatttagccactctaaagaccc
+gcatactccagggcatacacgtaacgcgttctcttcactacggagtccgcgagcgaacga
+ctaagggcgagggccgtagatctccttctcgtaaatataatcaaggttgccagcgcttat
+cggtgccaccgatccgaagagcgtaaggacgttacagtgtaggatacatggtttgcgccc
+gtccatacataatcgaccatcaaatcgaaagcgcgtatgcagtacctcgtactgcccaaa
+ggacagagcgcattacgtcaccccgagcgtagcttaccatgttaagaccgtgctcatggt
+ttccacccgtaagatgagcacagattgcttgctctaggtaacatagtaataagagaacat
+tcatagacgttggaccacggttgaaagaccgcctcttaactactgaaaaacaatatttgt
+ccttagtaaccaagatacattaatcaatcctccgctaatgaagttggtaggcaagccttc
+agtagcgtaccgtggatttgtgtttactgcatttacaccgcggctgggtacgaagcggtg
+tcgggcacgcacacgcgttcgatactgtaggtttcgttggggttgcttgttgccgctaac
+gttcgggtcgcttacttctgcaggcttgattactgagttcattcgatcggttcccaactt
+cggactattgcgccatcatcaatgtgggaaatcatttttaggaatacacctcgtacatgc
+atatgaagtctgcgtgcaacagactttccatgatgcgagctgggcttcccgtcctgcggg
+atgcaattggcccagtgcgcgaaggctgggctgattacggacatatctgctgtcctgaca
+atcgatggtgtagagcgtaacaatcattccaatttttcgacacgggccagggctttaggc
+cactacgcacctgggttaacactcggcgacccgcctaacactgggtggacattcccgagt
+tataacgacacctcattttcaacaaccacaaaaaggcataggcaaccgaactaacctttt
+gtttagttacttctggtatgttcatagtgtagggcaggtgatcggttaaacgcttgtacg
+gaccccattctgtagcgcttttctgaacgataacactacgttgggagatacttgttgcgc
+agtcgtgggttaaaagcgagccgacgataaactgcaataaggaaagcggacctgtcacct
+cccgcgggtaaatctactcgctcgtttagaggccgtaaagcgacataacggtgtccagta
+caagcccaactggtttagagaattcttctcctactacattcaccgtccgtatttcggcgc
+gccctacggtattcgtggtgttctgagcatacatgggatggactatcacccctgcgcgta
+aggactagcagttgtaagtcacgttaaggttgcgtaggcaactgttggagtgcgtccata
+cttttcagcaccccgaatttgtacgcccaagttgtatcgtcgtgctgggacgagactcag
+cctttaccctaagcgtttaggaaagcgatgttttaccgcagacgcatatgagagaacgtt
+gcaagatcgatctttctcgcgcacgttctgtagctagacctgcagctaatctaactgccg
+aactgttaggatgttttctctcctagacgcagggaccagttgtaagtaagggtttctcat
+cgctaggctagggtgatggtaggtgataccaatggagcggcgcgttaaaagggttgtaat
+ctcggtgatatgtgcaccatagattgttccgttattttccttggtcatttagatacgaga
+taggggcgccccagtgccacgaggtccatcttatgctgttgcgtagctagagccctacaa
+ctttctaagtaaaacctccatcgagtgcgcttggagaatttcatgtaccgtggcggtacc
+ttacttgatgccgcgacccctatctaattaaagaccgcttcccgatgggcgaccttaatc
+ttgctgcagtccaagttaacttcctctacgcccgatgacaaatttagccggagtaagttg
+ttaacctagcctaatttgtaccgaattttgggttgtgagaagaccatttctacccgacga
+tcatgggttcctctcaactatacctagtgtcggttaatgatttatggcaaacaatccccc
+aatgtagcacccatatgggcgcaattatgtgaacttcaacactaactattggtttagtta
+gtgatatttagcgcaaataagaggcatgggctgcgaaaagattgtgtttccgcaatgcta
+gggaacctgacggcatacccgagatgatagttaggtgagcccgaatcatgcttgattaac
+gtaacgtctatcactacccgtgggcttttgcgattgcgatgcgttactcaaggcatactc
+aatggggctggtaataccgatatgggcctgtgtcttagcagcgacgtgtcgataatcgaa
+gtacaatacgccagtctacgttagggctttgctaacacatcacccacagttgaagcatca
+cgcacagccctcattaggttgtcgtcaacctggaactcctagcaggctgggcagtatggc
+atccttcacgaacaatcttaagagacgcacttgacacaggttgcgacagtcaggatgggg
+agcttctgaaaatctctacataaggtggcctcgtgatatcgtattaactcggagagcggt
+tggactaatgagtgagtccaatcagtgatcggtttttaatgccgggaccacggcttgcgg
+ctgcgcgatctatttccctcgcgttacacaaggggtaggcataagcaacaagcccaaaaa
+aatcctcacgcaggcgtcaggtacagactttttccctcagcaacgcaaggtacacgtgta
+gtcgaatgtggtcataaccagcagctgtcttgcgcaagggcggtgctacacgcatgtttc
+actccacagtgacatgatgcccgctcttcggttgttctatgcagcgcgctggtcgcacct
+taagcccagttcaatccatgcaattcaccgttgcagcactagatcatataccgcatactt
+cgtcagagcacaaccagatcacttacaacgaccgcaagctaagcatccctatcgtgcgta
+tgtgtcgaggcgcaagtactatggtcggatgaggaggtgtgccctcaggacacacagtat
+cgctcctcattcgacgacgcaagtcgtctagttctatgataggcgaagtgagtactgcgg
+atcactacgcccaagacttggagtgacgacgccggctactagcgatggcagttcagaatg
+gtgccttccaagggacactcggtcctaatcaggcacacgcgtctcaaagccactactcat
+tcatgagctcgctggcgtggcagtggtcttatgcggctagcgaccagaatttctactagc
+cttaggcgtacaagcgttgggcaggtcgcgagtaacctctacactctatcatggaccaca
+cccatccatgttttaaacacagaggtcttaagaatagcgatggtacggttgagaacgtgg
+gagttttttgctctacagcaagcacgttgcagtgaggagagctttaatcctaaatcataa
+gtgatactggtgccgagcatctttcggacgaatatgaagacccaacgctaatgtgcctgt
+tcgtcggcacattctcttgggacacccgctacccacatgtatgtgaattgggcccgtctt
+gattgtgtcgtagatgccaacggttcaatcagccccgacgacgagaagcatttctacgtc
+tccagccttgcaacggtttctagagtcttgctgttcgtaaattgaagaatctactgtgca
+gactttatcgacccacgatacgctaatccgagcgcgactcggtctcggaaaattatccga
+gggagctcgttcaatgcggcggaggctctgagtgaagtttaaggctgagatagtcacacg
+cattcgggtccctacaccttgtttcgaatgtccaacgcgaactctgggcaacatcgcgag
+actttgaaagatgagggggctgtgacagggcctttgtaataggggtactttaagggcggc
+acaatgtgatacctatgtattcctatggtctgggtcagttatttaaattgaccggacaag
+aatctgactcgtagactgctgtatagatcacgattagagtttggcaatggttctgaaagt
+gatcatgtctaacgtaccggatgacactagtaataactgcagcagcgtgacgatgtaggg
+gacttactctgtttacgggtctcgtctgccataaacatcctgctccggcagcggtcaaag
+acgtcctattatcgcactcgggcagaaactccagtcatggtgaggcacaccaacagtgtg
+gggtcggttcgtggttaccaagccaccatttttcggcccaaactcatcttgaatagtcgt
+cctcattcatttgatcgatcgtcattacaaggttcataaatgcccagcgccgcgtctccg
+gccagatggaagagctacgtgcaggcggtaagcaattgacgctatagccctatatacgta
+tgtgggactcaaggcgacatgctataccgactggtatcgaggcgaacgacaattgctatg
+ggtcatcacctcatatttagattcagcccctggtggcgtcgctttgaccaactagttaag
+gttgaggagttcgctctcaaacctgataacgagctaggccatgtaccaaccttggctgtg
+caccgacgagctgaaggaccgagctgctaggaggtcgcagtatcgattgctctttcagcc
+ttctaaaggtgcgacagaaacttgaacctctcggtactctaacactaggggtacgagtgg
+ataactcgattacattagtcctggtacaaaagtcctccttccgggcgccttaagctgctt
+taaagctatgtccgcttacgagaaaggggcgcacggtccgatctacttacagactgtcaa
+aacggtgtagtcggaatgggctcgaacgacgctaatagatacacgcgcattggcatggta
+cttcaccaatactatatctttaaagaagggcggcgagcctatttacccacttcgattagg
+ggataacacaggtgattgagttttctggaaccgtcatctaatagccgaagcagtccacat
+tacagtccattgcatttaaccactaggaatcgcgccaatcttgcgcttatgttgtttagg
+aggggccacgctagatcttgcctatcctgagttatatgagggacgatcctacatgtatcc
+tcaaagttcgcgctcatccttagattctaggagatggattactaagtgtgtgtccatagt
+ttaacgcaacacataatgttcgtgtcgtgatgcgtatccttggtcccgacctactactct
+agacctatacgatagcgttcaaagctccaccatcgatgcaacgtggtcgtaccagtactt
+atgaaaccttttttcgcagttcgaaccgcctggaaagaagcatacgcaatatcgtgtgat
+cagcacgcagggtatcagttaaagagcccaagacttagtctatcgagcagaagaccgatt
+agggtatacaccatgtcagaatcgcctccagactagtggctgatatcgtacgttacacga
+ggtcgctcttgtcgagtgctcgaacgatctatcccctagatcacgcgtcccagtcggagt
+atcccgcctcggatcgaaatgacggctaaaaggtgtaatcacgcgcgtaattcctgcaag
+ctctctgagttctgctcgctggttcgaatgagcctgcaggcagtacctacaattcctgct
+cggaggacctgttgcgagggatgcccccatacactgctgagggtaagtagctgaagtata
+aaggcggcaatcttctgacaaacacccttcttccccttggttaaccagacaagctggatt
+tatcacccctcccggggacactgccctgttttatatcgcggacttgcatcagtcgcagta
+gtccgcgtagatgtggggacccctcccaccttacatggcaacgcgtgatggagtagtatc
+tcgcgtcagtgagcgagttcgcatatttgtagggcgtcataacaaatgtaaatgctagta
+agtgaaagatgtcaacatgcgggctcggttttgcgctccaggtatatcctgcatctgatg
+aacttttcaatgaccgtgtctggcgcagggctgtcgttttgcaggaggggatgcccagcg
+catctcgagaatcatcggctaatcaacgcgaaaaagttaatcttctatcagtcagcgggc
+tataactccttgaccaacagaggatcgcaggtatttgtactgtggagaaacaatcgtaag
+atggccggccatgaggcaaggattgtaatataccggggtggttatcgaagaagtaaagta
+aggcctaccttctggggagcaatggggttctcagacgctaactcttcgttcacctacaac
+acgattggacttagagagggacctacggacccgaaattcacataggggggttccccgata
+agccaaggcaggatagagtctgaatccatggacttccatcaaacccctgtggtggttccg
+ttcaagtcagggagtatcacgactcacttactgagtcacgtcctcaatatgactgaagtc
+gataagacgaaggcttaatttacggaacccccgtttagtaatcaagaaacgcattggcgc
+gggtctaacgtaagctcttcacaccgccgtctacgaaccagttcccggcgttgcatggtg
+atcgccgggttcccttggagggagtaccttgtgccctgcccgtatggtcgttcctaaata
+gcgaccaagtattagttgactgttgcgacttaaaatccaacccataagcatatatcgtgc
+acccagggactggagggcctcagccccttctttcgaaacttaaaccgtcttcttatgggt
+gaaatgtaagtttctacgtctggaataaacggttcgggccaccatgaagcgtctcgtgtg
+atagagattcgcaatgagtctgggaagtagaatcacaccaagttagaaaaattctccaac
+tcagctaccgcgacccatccgttggggtaacgcaagggtattagccgctcagaggccaaa
+gattagagaaacgcgacgcctgcggctgtcttgtgactactccgaccatgccgtcagctg
+gagaccctacggtgggtagttgggtagagcgccgatagctaattctcgagtggaactgcg
+gaatgtgtcatatgaggtagcgatattgggctatcacaagtacgtgagcctgtgaaaacg
+gacgactcactagcaagtaagcacggccctggcgtggcggcggtacgcgtacaaacctcc
+actgcttggggaataaggtgcgaacaccgtgatccattgaggcgtggaggcatagggccg
+gagtgttcccgtaccaattacgagctaagaccgcctgtccagccctggtgattacgtagt
+aagctcggtacaagcctgtaattagcttccgggtggcggacattcgttcatattgccagt
+cacggcagaggccgcgctagctaggccagccccgatgaaacacgtgctagttttctatcg
+tgcctaaggatcgatggctatcgcggcattgttaacttatcaagcagccgaatcggcgat
+agtggacacaacatgaacacgctaagctctgagtgccagactctaccgcggcgaatccta
+ggccctgctggggctcccccacagagcagtaatggtcttctgcggccgcgtgcattcaat
+ccgcgctggtcaatgcgttccatcgtgccttaagcggggcagtgtgataagacaattttg
+ggggtttcatggagatatcttcagaaacctcgcgaggtgcgtttagataccacacgcgcg
+gcggtcttttcacacaattcagtccgcggccggtaacctaactttgcttatcaatacata
+atcctcccaaatgtacggtttcgaaggagatacctctcccctgttagactctaggttttg
+cagtgctacctagagatcacaccagcattaaaccaaggtatcagcatcgtaacatgggga
+ggcacgcgcttggcggtaagtacccgccacgattactctgtttcatagcgccaacgcccg
+tatagtgtgcttttaacgtcctcagaaatcaccgactgatcagtatggcgacatcggagg
+gaggttggcgaaatgttgcttttatagatcgttaaaacctatcgttggcgcgtatcgcct
+ccatagaacttcttactcacctagtctgatcccgggactggtcgaaatggagacgacgta
+gcttgagatctggatcgatcgactgatatcacacttaaatatgatcagattttactacgg
+tcgatctccatatatctatcccagcacttgatacctcctgtccagccgactgcttggacc
+ctagcacgcgatattagagggcgcgttgtagctcaaagtaaccagtgggacgacccgagt
+gaggttaccgctggcacgtaagggtgacatgactcccccagaaacactgaatttgtctag
+cagtacatcataatctgagaacatttagcgaagacgagaacaagctgtctcaatggacgt
+aggacgagaggaatgtgacggttataatacgcgacctctatgtgtctattaaatccctac
+gggccgtagcgagcaagctcgggatctttagtagcggatcgggtcttctacatggcgcac
+caggtttgatatttcgagctagagttgctctaaagaaacgctcttgcttgggaaagtgac
+ctggggtacgacgaagacacgggcctggttgcataccgtctcaccttcattcatcgagcg
+cgatagcgtagcattatccagcacgggaggcacctggcatgggcgtgaaatacaatccga
+agagcagcatgaaaaaaaaatgagcggtcgtgacccgagggtgcgtccctccgaacgttg
+ttcgttgccaaggtaagggacccacgccaagcatggttagggaagcgtgaccgacacaac
+atagaggacaatctcaatatgccttctgggtatcacctgggtgtgtagcagtgctactgt
+tacaagtcgcgccatctgcgacgtcgttcgtccctattccctcctaaaggccccgactct
+gaaaaaacctacaatcctagacacgttgtggcccagcacaacgcgtctgctatacagcaa
+gtcattcgtcgaatggggcaacacgtataagaaggccgtgattccaagggcacatggcgg
+gtctctcaatgatctacgacgtgacgcaaacggggaaaggctggaccgttgtccggtagg
+cgatccatcataaaaggcgtctggttctgtggttattgtgtacacgtttgaaatatctga
+ctgtagaacgatggaggtctctacgtagctctgcacgattccctcgggctcacgttcatg
+gcaaggcgacatcacatgaacagggttgggtaacagccatctctgaagcattcccccagc
+tcgcacggctcctttacccgctactacgtcatgcactggctagagacccaccaactattg
+tgcaagtaaagaccataaaattttggagctgtagcgaaagcgagttgctgcgatggttag
+accaacattgggtcaaactattctaatccggctaggctcattaagcatcgcagattgccg
+atactaatgctaacgagcgatgaatgggcctcttcgagacgcgtccgtacctgcgaatat
+caaccatgaaccctaatctggaaagtttgatgccgctgtgatagccactcctgtgtcgcg
+acggcaacgtaatgtacgtgcttggtttgagctctaaacataccttcgttagagttggtc
+agaggaggatattgtcatagcgctacaaccagcgccaaaggatagctccgtggctggtcg
+gacgcgctagaatctaggcagaacacgtgcggcttcttgcactctgacgctcacgcattg
+gactttggcggtcatctggttctcataagtccgaatcacagtagataaagatccgcgtga
+taagatatgcctacgtacttaagtagcaccctctgttcttggcgatcctatcattgcggg
+ttctatacatatgttgatccaaccatcggccgccgggccgtcgtaggatctaatggccaa
+cacatcaatcaaatcactcgcgaggacgcggaggtcccgtccataggtgtgtatgttggt
+acgcagcacctaatctggtctggtcaagcaactggcttgttccagtatataatctcagat
+agactgccctgaaagtagacaatgataaatatgtaagagcggggaaatcccatcgtcgac
+tgtgttgcggacgattagcttgcaaagagaggtgtgagcggctgtcttaaattatggact
+cctcgcttccgtcgaacgtctgactagagaatctcttggaggtacacacgaacgtaggtt
+cctcacagtatgtggcatggacaccggacaggtcacttgtatttatccattgaacgtgat
+atagtgtgtcgagtcgttatacaatacatactccaagcgtactccctttgggtaacgggt
+ttgggtacatattaccatggtgtggaccgatttgtaaccctataagcgttccgggtactt
+taccatcgcggatgcgatcgcggatctacctatgtcagcgacatactgcccgtccaaaag
+tgattcagtatgtgttaatcagcgtattgcatcatcagtcattgagagtggaccgttctc
+gaagagcaagattcctgaccctttccactgggccatccagtacacccaattatatgcaga
+cgaaaagctccatacatatataatacctcttcacaccgtgtgcagagaccaacttgatcg
+atattgtactcactcgtacggaataattagaagggcccgactgtcgagaccgttagcatt
+tgcattatcgcggtgagcgtatagaaacaattataggctttgctgcgatcgcagtgtctg
+ggacagagtctcctagacctagatcagcttaaaacaatgattgtaggtaatgtgcgttgc
+cgtcgggccacacctttcagttcggttacaccgactcagaattatcttctatcgggaccc
+tcaaactgataatggggtcaaatggtggtggtcccgtctttctgcagtgctttgtgagca
+gaatagctctcgagcgctccagtacgcctgagtatggctgcgcccaccaattggcgccgt
+taatgcgtggcgacacaagagaaccagtccacataagttatgcccttaagaagatcaccg
+ggtttgcgccatcctgattcaggtaacggacgtccgtgtacacgaaccatactaatgagt
+tctacatcgctccaacgcgtcttgaaccctatcgacaattacaaatgcaaagtattagtt
+gggtcagtgcgtagcttatccaagggctgcagtaagtcgtccccatgacagacggacggc
+ataagggccaaaaattccgccgcattagctgttaataatgccatccagaaccggacagtc
+tcgatatataacttacggctgcgaactggcccttatgaattacatccacgtgctagttaa
+caggacggatcgcccggactaattgccgatcggccgtcccattctccgtacgatgtactg
+aacccaggcgtgtgaatgggtatgtcaacgtttacccatcgaccctgcctatagacctga
+gtttcattccagttgagcgtagaatgggatgagcagctttgcttgaggtgcgatattcgg
+gagacctggtcagcaggattgatggttttatagtgctggattccctgctgaaattctctc
+ttctgccgcatgtgaagaaggccttgcttcccttccacatgattgtaagatttcctaagg
+cctcccagctgcgtggaactgtgagtcaattaaacctctttcctttataaattacccagt
+ctcaggtatttccttatcgtggtatgagaacggattaatacagttgtgtaagccagctcc
+ttataataaatctctctccctctctctgcctctcatctatgtatgtatgtatctgtcatc
+tatctcctataagttgtttcttttgagaactctgactaacatagacattaaataaacaat
+ttgtatactgaataattatataactactgcttgggggtgtggttgtgttgtgtggtgagg
+gggtgtagaaatgtctaggggttgatctagcctaacaccttccagatgaccctaggttct
+ggcctttccccaaagagtcctggtctactcagtcatctcccacaatttggccatcttctt
+gggtgctcaggacaataaatgacccagccagatcctctagagtcgacctgcaggcatgca
+agcttggcgtaatcatggtcatagctgtttgctgtgtgaaattgttatgcgctcacattg
+cacacaacatacgagccggaagcatacagtgtagagcctggggtggcgtatgagtgagct
+aactcacattaatttgcgtttgcgctcactgccgcttttcagtcggggaaactgtcgtga
+cagctgcatttaatgatcggtcatcgcgcggggagatgcggttttgcgtattgtgccgca
+ggtggttatttctctcaacagtgagacgggcacagctgattgccctcaccggctgggctg
+agagagttgcagcaagcgtacacgcggggtttgcccagcagggcgaaattcctgttgtga
+tgtggattccgaatcgggcaaatgccctataaatcaaagcatagtccgagatagggtttg
+agtgtgttcagttttgggacagaggtcactataaagaacgttgactgcacgtcaagggcg
+agaaacgtcatcaggcgattgcactacgtgacatcaccaatcagttttttgggtcaggtg
+cgtgagacttatcggaactaaaggagcccgttttagcttcggggaaacgcgaagtgtcgg
+aagaaggaaaacgaagagcgggtatcgcggaatgtacgtgctgagcgaaaccaacgcgcg
+ttacggtcaagcgtgtatgtgttttggaggtaagtttccctgataaagcggaacaggggc
+tatgtgtttacgggggtcgcatggagtacaagggggcaggacaagatttgcgcgacatgg
+ttttttttaaattgcgggagatggttggctgtcccgatgagattagaacctgcttttgtt
+ttagtttcggttcggtcagttcggactttggattggttttgttgggtatttaagaagggt
+gtttgtgggatgtttttttttgggtcgagcatcactggactatgtgtgtcctgcgtatcg
+tggcggggcctcgaacttagaggtaggacgattccgatgcaacaaccttatgctttactc
+caagcgatggtgaggcaaccttgtacagaagtgcaaccgccattgtggctgggtcggccc
+aaggaacggatattctcctgggtactgacaacccaggtctactgggttctatcgacggta
+cagtcaagcctcgagtttactgtctcccacttaagtccgctctgggcattaatgagtctg
+tggggtatcaagggtcacccaacgaagtagctagtcccgttgtacatttcgcgcgttacc
+tagggagcacggtgagctacgagggtgtagctgcacacagcacggtatataggaacgcaa
+acatagtagtatgtccctatgcataacagggagaagtgactctccgacggtcatttatcc
+cagactctcctcgctccctactaattgttctatatacaatcggagtaaattggtacctct
+ctgacaacataggggggttgaagtttatgccacgcagtctgttacacttttgccggggaa
+ttgtgtagaccatgactcaaggtggtggtgcgagttactctactatctactgcttctcat
+tacacatctcttggcttacaggccccagttatcagttacgaggctgccttaagagaaggc
+caacattcatgatcagatccccgcacacgggatgatagtctgagatctgccggacgctcg
+tctgctacaagtgtgggttgagcatagggtaagcctaagggctcgtaatggtacttcgcg
+atgtttattcgatatgagctacaaggtataacgttgccttcaccatttcggctcacgact
+cttacctcgcctcaccgctagacaccctgaccaaccgttagggtactgacaaccgatcag
+gcgactcctaaaggacctctcagcctcccagacatgaggtccgctcgcatgctgttcagc
+gagtccatatcaggaacagcaacgagacaaggcgagagcaacactagacttggagacata
+ccaccacatctgtttactcttgattcaggaagacctgtggtaactgggcgacgcgtgcgt
+ttatccgtcttccaatctccacagaatctgctccgtcagagggatgtatgactaacgcac
+tgattttttgttcagtaaccgggcgcggattacggggcgtattccaggggtacattcaac
+gggaccccaaggaaaagttcggggtatttaaggaggcggtccaactctcggacttattgg
+gcgacgtaatgataagcacacctctgctcatacagtgcacgaagaccggcattgttcaaa
+cacagccgtccattccgcgactattgtcctgtgtacaggtgcctcgggtcccaaatccag
+cttatacccaaaactctcccggacttttttcgtccttgcaggaggaaaggacctgactcc
+acgtttattaggggatcgttgggcccggacaatcgtgtattcaacataataaatgggttc
+tagtttaaagccggaggtgacggtggattatggactagaggtaaacatttccggcgtagg
+tcagaaagaatatagaccctaaatttacgcaaaacgtgcacacgattgtaggtggagtcg
+tattaggaactcagggcgggtggaacgagtgtgttttaggcttaccatgaaccgtcgcgc
+ggaaaatgatgacagaatggacggtgcttttttgcggggccaacaaaactcgcttatgtt
+cgccattggatgtaagtaccgctatactacgcagcgaccccttacgacattgttgatttc
+caatgctttcatggaggtttgtgagcggtcgctaggaatcttcctccagcgagtagccag
+ctggccactagttagcaaccagagttcatatgagctccagtaacacgaaggtacataagg
+aacgcaagcaagttcgggactacatagaacttggggtgcgtctaagccggggatcttaat
+agacaagaggccatcgtatgggtcaaatttcatgtttcgtcagatgccctatccgtggac
+acctaaatcaagcatcatatcctaatgctatttgctctcgctttggtatgattcatatgc
+agccctgtccgtaaaatgacgggccagaggatacctgtcactacctatttcagattacca
+ctgttcgaaaccttgctctgaaatcgatcttcgtagagtgttcgttaatcgccgcgtgaa
+ttatataatcccccaaggagtacccttcgtcggtgcagtctacgtaactttcccaggtta
+gcccccatctaatcgacgtacgtgagggggctacgggagatcgcacaagccgaagcattt
+ctgctctgtttcgttacaactggaatcctcatcacgcagcgctaccggatgccatcccta
+gtcatccccgcgagtttaaccagtcgagatggctcgaaccgtgtttcgaaggctggctat
+tgaaccagttataaagcaggggcgactgtccgtcggacttcgatataaactatcacaaat
+ttggcataagtatatacagccaagaaggctcagataggcacacgcacccaaatagtgacc
+gcctacgttcaggttgcccggcaacgaagcgcgcttgctccattaatccactatcagagg
+taacgaccctctttcaccgtagctgcccccatgtcggggcaacagtttcccaccgataac
+gtgttctgtctagtacgtgaaacggattggctaacccctgtcagcctaattagatgacat
+cctcgtacctctagagaaggtgaggagaccgctggaacataagtaaacagtttaccaaac
+aatgatcatacatataacagaaaggagagatgcccggtggggtcgaagatacagctgtgg
+ttgatatctgcaacggccaggctgtcatgaagatcacgcgcacgaagctatttatgaaag
+atacccatgccggggcggcagcggtacctagtcctaaataccgacacgtagcaacgcgtc
+ccctgaggcccaccctagtcaagggaacttaaaatatacgctgactttgtctaccaatca
+tcttcgattaacaccggcatactaagtctaccctggacccagcaatgagaaaaacttttc
+cgaatgatcattgtgagtttacagagattaggaacaccaaaaaaatttacgtacgtccgg
+ttacccctgtgtgacccttggccacaaaccgtaaggtgcagcatgggcgttgagtccagg
+gtttgtgacaccagacatgaataccctgtggcgggttgttagcatgttattcggatccga
+tttcagagggtccgttgataccgggcagtacaagacaccccacaccactgaggtggtacg
+tccgccagtctgctccctacgttatgcaaaattccttccccggcgttcttgcctgtacta
+ctcctaaagggccgtgaaatccgacgttgctgctccgtctcgggacacccacacaacagc
+tacggaaaatcgtgaggatgcacaagggtcttgcattgttgatctatacagctcttcgca
+cggtgtgctactgttttccacaatgggcaaggggcgtgtaggtcttatgtaggagtaccc
+cgtgatctggctataccttgctatctattccaccaaaatagccggggtcttatagtttta
+ttccggatctatcaagtgacaagtccatggggtaaacggtaagtttcgtacgctgggcgg
+tgatccccgcttataaacgagcaaaccgccaaagcaaccattgccgggcttccagctagt
+aaatgttgggtgtcaatcgtgcatgtgactacttacccacaaagggacgcttgaagcgcc
+tgaactcgtcacgtcatgcctagctcccggttgaaacacgaagacgcgtgaacctatctt
+tgcttactattcgcctcctttaagaggcttcttgatgtggctctgcgacatggacagtag
+tagttgtacctgggtatgttagtgaaattacaagtacctcaaaaacgaattacgtgtata
+gagattatgtcactccgtcac
+>ctgB
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGAT
+ACATGCTAGCTACGTGCATGCTCGACATGCATCATCAGCCTGATGCTGATACATGCTAGCTACGTGCATGCTCGACATG
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/1/links.txt	Wed Aug 09 09:52:52 2017 -0400
@@ -0,0 +1,21 @@
+ctgA 0 500 ctgA 1000 1500
+ctgA 2500 3000 ctgA 3500 4000
+ctgA 5000 5500 ctgA 6000 6500
+ctgA 7500 8000 ctgA 8500 9000
+ctgA 10000 10500 ctgA 11000 11500
+ctgA 12500 13000 ctgA 13500 14000
+ctgA 15000 15500 ctgA 16000 16500
+ctgA 17500 18000 ctgA 18500 19000
+ctgA 20000 20500 ctgA 21000 21500
+ctgA 22500 23000 ctgA 23500 24000
+ctgA 25000 25500 ctgA 26000 26500
+ctgA 27500 28000 ctgA 28500 29000
+ctgA 30000 30500 ctgA 31000 31500
+ctgA 32500 33000 ctgA 33500 34000
+ctgA 35000 35500 ctgA 36000 36500
+ctgA 37500 38000 ctgA 38500 39000
+ctgA 40000 40500 ctgA 41000 41500
+ctgA 42500 43000 ctgA 43500 44000
+ctgA 45000 45500 ctgA 46000 46500
+ctgA 47500 48000 ctgA 48500 49000
+ctgA 50000 50500 ctgA 51000 51500
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/1/links2.txt	Wed Aug 09 09:52:52 2017 -0400
@@ -0,0 +1,21 @@
+ctgB 2000 2000 ctgA 500 1000
+ctgB 2000 2000 ctgA 3000 3500
+ctgB 2000 2000 ctgA 5500 6000
+ctgB 2000 2000 ctgA 8000 8500
+ctgB 2000 2000 ctgA 10500 11000
+ctgB 2000 2000 ctgA 13000 13500
+ctgB 2000 2000 ctgA 15500 16000
+ctgB 2000 2000 ctgA 18000 18500
+ctgB 2000 2000 ctgA 20500 21000
+ctgB 2000 2000 ctgA 23000 23500
+ctgB 2000 2000 ctgA 25500 26000
+ctgB 2000 2000 ctgA 28000 28500
+ctgB 2000 2000 ctgA 30500 31000
+ctgB 2000 2000 ctgA 33000 33500
+ctgB 2000 2000 ctgA 35500 36000
+ctgB 2000 2000 ctgA 38000 38500
+ctgB 2000 2000 ctgA 40500 41000
+ctgB 2000 2000 ctgA 43000 43500
+ctgB 2000 2000 ctgA 45500 46000
+ctgB 2000 2000 ctgA 48000 48500
+ctgB 2000 2000 ctgA 50500 51000
Binary file test-data/1/output.png has changed
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/1/output.svg	Wed Aug 09 09:52:52 2017 -0400
@@ -0,0 +1,2784 @@
+<?xml version="1.0" encoding="utf-8" standalone="no"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg width="3000px" height="3000px" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
+<g id="bg">
+<rect x="0" y="0" width="3000px" height="3000px" style="fill:rgb(255,255,255);"/>
+</g>
+<g id="ideograms">
+<path d="M1500.000,160.000 A1340.000,1340.000 40.000 1,1 599.868,507.346 L593.151,499.938 A1350.000,1350.000 0.000 1,0 1500.000,150.000 Z" style="stroke-linecap:round;fill:rgb(141,211,199);" />
+<text x="2011.0" y="2857.5" font-size="31.2px" font-family="CMUBright-Roman" style="text-anchor:start;fill:rgb(0,0,0);" transform="rotate(68.9,2011.0,2857.5)" >0</text>
+<line x1='1500.0' y1='150.0' x2='1500.0' y2='130.0' style="stroke-width:2.0;stroke:rgb(23,54,93);stroke-linecap:round;fill:none;" />
+<text x="1509.5" y="120.0" font-size="26.0px" font-family="CMUBright-Roman" style="text-anchor:start;fill:rgb(23,54,93);" transform="rotate(270.0,1509.5,120.0)" >0 kb</text>
+<line x1='2211.0' y1='352.4' x2='2221.5' y2='335.4' style="stroke-width:2.0;stroke:rgb(23,54,93);stroke-linecap:round;fill:none;" />
+<text x="2234.8" y="331.9" font-size="26.0px" font-family="CMUBright-Roman" style="text-anchor:start;fill:rgb(23,54,93);" transform="rotate(301.8,2234.8,331.9)" >5 kb</text>
+<line x1='2708.8' y1='898.9' x2='2726.7' y2='890.0' style="stroke-width:2.0;stroke:rgb(23,54,93);stroke-linecap:round;fill:none;" />
+<text x="2739.8" y="894.0" font-size="26.0px" font-family="CMUBright-Roman" style="text-anchor:start;fill:rgb(23,54,93);" transform="rotate(333.6,2739.8,894.0)" >10 kb</text>
+<line x1='2844.1' y1='1625.6' x2='2864.1' y2='1627.4' style="stroke-width:2.0;stroke:rgb(23,54,93);stroke-linecap:round;fill:none;" />
+<text x="2873.1" y="1637.8" font-size="26.0px" font-family="CMUBright-Roman" style="text-anchor:start;fill:rgb(23,54,93);" transform="rotate(5.3,2873.1,1637.8)" >15 kb</text>
+<line x1='2576.5' y1='2314.6' x2='2592.4' y2='2326.7' style="stroke-width:2.0;stroke:rgb(23,54,93);stroke-linecap:round;fill:none;" />
+<text x="2594.7" y="2340.3" font-size="26.0px" font-family="CMUBright-Roman" style="text-anchor:start;fill:rgb(23,54,93);" transform="rotate(37.1,2594.7,2340.3)" >20 kb</text>
+<line x1='1986.1' y1='2759.5' x2='1993.3' y2='2778.1' style="stroke-width:2.0;stroke:rgb(23,54,93);stroke-linecap:round;fill:none;" />
+<text x="1988.0" y="2790.8" font-size="26.0px" font-family="CMUBright-Roman" style="text-anchor:start;fill:rgb(23,54,93);" transform="rotate(68.9,1988.0,2790.8)" >25 kb</text>
+<line x1='1249.9' y1='2826.6' x2='1246.2' y2='2846.3' style="stroke-width:2.0;stroke:rgb(23,54,93);stroke-linecap:round;fill:none;" />
+<text x="1253.7" y="2857.8" font-size="26.0px" font-family="CMUBright-Roman" style="text-anchor:end;fill:rgb(23,54,93);" transform="rotate(-79.3,1253.7,2857.8)" >30 kb</text>
+<line x1='588.7' y1='2496.0' x2='575.2' y2='2510.8' style="stroke-width:2.0;stroke:rgb(23,54,93);stroke-linecap:round;fill:none;" />
+<text x="575.5" y="2524.6" font-size="26.0px" font-family="CMUBright-Roman" style="text-anchor:end;fill:rgb(23,54,93);" transform="rotate(-47.5,575.5,2524.6)" >35 kb</text>
+<line x1='200.8' y1='1866.8' x2='181.5' y2='1872.2' style="stroke-width:2.0;stroke:rgb(23,54,93);stroke-linecap:round;fill:none;" />
+<text x="174.5" y="1884.1" font-size="26.0px" font-family="CMUBright-Roman" style="text-anchor:end;fill:rgb(23,54,93);" transform="rotate(-15.8,174.5,1884.1)" >40 kb</text>
+<line x1='202.4' y1='1127.6' x2='183.2' y2='1122.1' style="stroke-width:2.0;stroke:rgb(23,54,93);stroke-linecap:round;fill:none;" />
+<text x="171.0" y="1128.5" font-size="26.0px" font-family="CMUBright-Roman" style="text-anchor:end;fill:rgb(23,54,93);" transform="rotate(16.0,171.0,1128.5)" >45 kb</text>
+<line x1='593.0' y1='500.0' x2='579.6' y2='485.2' style="stroke-width:2.0;stroke:rgb(23,54,93);stroke-linecap:round;fill:none;" />
+<text x="565.9" y="484.2" font-size="26.0px" font-family="CMUBright-Roman" style="text-anchor:end;fill:rgb(23,54,93);" transform="rotate(47.8,565.9,484.2)" >50 kb</text>
+<path d="M631.175,479.832 A1340.000,1340.000 40.000 0,1 1458.326,160.648 L1458.015,150.653 A1350.000,1350.000 0.000 0,0 624.691,472.219 Z" style="stroke-linecap:round;fill:rgb(255,255,179);" />
+<text x="967.1" y="150.9" font-size="31.2px" font-family="CMUBright-Roman" style="text-anchor:end;fill:rgb(0,0,0);" transform="rotate(68.9,967.1,150.9)" >1</text>
+<line x1='624.7' y1='472.2' x2='611.7' y2='457.0' style="stroke-width:2.0;stroke:rgb(23,54,93);stroke-linecap:round;fill:none;" />
+<text x="598.0" y="455.6" font-size="26.0px" font-family="CMUBright-Roman" style="text-anchor:end;fill:rgb(23,54,93);" transform="rotate(49.6,598.0,455.6)" >0 kb</text>
+<line x1='1297.2' y1='165.3' x2='1294.2' y2='145.5' style="stroke-width:2.0;stroke:rgb(23,54,93);stroke-linecap:round;fill:none;" />
+<text x="1283.3" y="137.1" font-size="26.0px" font-family="CMUBright-Roman" style="text-anchor:end;fill:rgb(23,54,93);" transform="rotate(81.4,1283.3,137.1)" >5 kb</text>
+</g>
+<g id="track_0">
+<path d="M 1500.000,709.400 A 790.600,790.600 0.00 0,1 1543.8,710.6 L 1543.8,710.6 1543.1,725.5 1542.6,740.4 1542.3,755.0 1542.3,769.3 1542.4,783.2 1542.8,796.7 1543.4,809.5 1544.2,821.7 1545.2,833.2 1546.4,843.8 1547.9,853.6 1549.5,862.5 1551.3,870.4 1553.3,877.4 1555.5,883.2 1557.8,888.1 1560.3,891.8 1563.0,894.4 1565.8,895.8 1568.7,896.1 1571.8,895.3 1575.0,893.4 1578.2,890.3 1581.6,886.2 1585.0,880.9 1588.5,874.6 1592.0,867.2 1595.5,858.9 1599.1,849.7 1602.6,839.6 1606.1,828.6 1609.6,816.9 1613.0,804.5 1616.3,791.5 1619.6,777.9 1622.6,764.0 1625.6,749.6 1628.4,735.0 1630.9,720.3  A 790.600,790.600 0.00 0,0 1587.5,714.3 L 1587.5,714.3 1585.8,729.1 1583.8,743.8 1581.7,758.3 1579.3,772.4 1576.9,786.1 1574.3,799.3 1571.6,811.9 1568.8,823.7 1565.9,834.9 1562.9,845.2 1559.9,854.6 1556.8,863.1 1553.7,870.6 1550.6,877.1 1547.4,882.6 1544.3,886.9 1541.2,890.2 1538.2,892.3 1535.2,893.3 1532.2,893.1 1529.3,891.8 1526.5,889.4 1523.8,885.8 1521.2,881.1 1518.7,875.4 1516.3,868.6 1514.1,860.7 1512.0,852.0 1510.0,842.3 1508.2,831.7 1506.5,820.3 1505.0,808.2 1503.7,795.4 1502.6,782.0 1501.7,768.1 1501.0,753.8 1500.4,739.2 1500.1,724.3 1500.0,709.4  Z" style="stroke-width: 0.0;  fill: rgb(255,204,0);" />
+<path d="M 1716.454,739.608 A 790.600,790.600 0.00 0,1 1758.3,752.8 L 1758.3,752.8 1753.5,766.9 1749.0,781.1 1744.7,795.1 1740.7,808.8 1737.0,822.2 1733.7,835.3 1730.8,847.8 1728.2,859.7 1726.1,871.0 1724.3,881.6 1723.0,891.4 1722.1,900.4 1721.7,908.5 1721.7,915.7 1722.2,922.0 1723.2,927.3 1724.6,931.5 1726.4,934.7 1728.7,936.9 1731.4,938.0 1734.6,938.1 1738.2,937.1 1742.2,935.0 1746.5,931.9 1751.3,927.8 1756.3,922.7 1761.7,916.6 1767.4,909.6 1773.4,901.7 1779.5,892.9 1785.9,883.3 1792.4,873.0 1799.1,862.0 1805.9,850.4 1812.7,838.3 1819.5,825.7 1826.2,812.7 1832.9,799.4 1839.4,786.0  A 790.600,790.600 0.00 0,0 1799.3,768.2 L 1799.3,768.2 1793.5,782.0 1787.6,795.6 1781.6,809.0 1775.5,821.9 1769.4,834.4 1763.3,846.4 1757.2,857.8 1751.3,868.4 1745.4,878.3 1739.8,887.4 1734.3,895.7 1729.0,903.0 1723.9,909.4 1719.2,914.8 1714.7,919.2 1710.5,922.5 1706.6,924.8 1703.1,926.0 1699.9,926.1 1697.1,925.1 1694.7,923.1 1692.7,919.9 1691.1,915.8 1689.8,910.6 1689.0,904.4 1688.6,897.2 1688.6,889.0 1688.9,880.0 1689.7,870.1 1690.8,859.5 1692.4,848.1 1694.3,836.0 1696.5,823.3 1699.1,810.1 1702.0,796.5 1705.2,782.6 1708.7,768.4 1712.5,754.0 1716.5,739.6  Z" style="stroke-width: 0.0;  fill: rgb(255,204,0);" />
+<path d="M 1916.367,827.924 A 790.600,790.600 0.00 0,1 1953.0,852.0 L 1953.0,852.0 1944.5,864.4 1936.3,876.7 1928.3,889.0 1920.7,901.1 1913.5,913.0 1906.8,924.6 1900.5,935.9 1894.8,946.7 1889.6,956.9 1885.1,966.6 1881.1,975.7 1877.8,984.1 1875.2,991.8 1873.2,998.8 1872.0,1004.9 1871.4,1010.2 1871.6,1014.7 1872.5,1018.3 1874.1,1021.1 1876.5,1022.9 1879.5,1023.8 1883.2,1023.8 1887.6,1022.9 1892.6,1021.1 1898.3,1018.5 1904.6,1014.9 1911.4,1010.6 1918.8,1005.4 1926.7,999.4 1935.1,992.6 1943.8,985.2 1952.9,977.0 1962.4,968.3 1972.0,959.0 1981.9,949.1 1991.9,938.9 2001.9,928.3 2012.0,917.3 2021.9,906.2  A 790.600,790.600 0.00 0,0 1988.2,878.1 L 1988.2,878.1 1978.9,889.8 1969.5,901.3 1960.0,912.5 1950.6,923.3 1941.3,933.6 1932.2,943.5 1923.2,952.7 1914.6,961.3 1906.3,969.3 1898.3,976.5 1890.8,982.9 1883.7,988.5 1877.1,993.3 1871.0,997.1 1865.5,1000.1 1860.6,1002.2 1856.2,1003.3 1852.5,1003.5 1849.4,1002.7 1847.0,1001.1 1845.2,998.4 1844.1,994.9 1843.7,990.4 1844.0,985.1 1844.9,978.9 1846.4,971.8 1848.6,964.0 1851.5,955.4 1854.9,946.1 1858.9,936.2 1863.5,925.6 1868.6,914.5 1874.3,903.0 1880.4,891.0 1886.9,878.7 1893.8,866.2 1901.0,853.5 1908.6,840.7 1916.4,827.9  Z" style="stroke-width: 0.0;  fill: rgb(255,204,0);" />
+<path d="M 2084.463,967.598 A 790.600,790.600 0.00 0,1 2113.1,1000.8 L 2113.1,1000.8 2101.6,1010.3 2090.3,1020.0 2079.3,1029.6 2068.6,1039.2 2058.4,1048.7 2048.8,1058.0 2039.7,1067.1 2031.2,1075.9 2023.4,1084.4 2016.4,1092.4 2010.1,1100.1 2004.6,1107.3 2000.0,1114.0 1996.2,1120.1 1993.3,1125.7 1991.3,1130.7 1990.3,1135.0 1990.2,1138.7 1991.0,1141.8 1992.7,1144.2 1995.4,1145.9 1998.9,1146.9 2003.4,1147.3 2008.7,1146.9 2014.9,1145.9 2021.9,1144.2 2029.7,1141.9 2038.3,1138.9 2047.5,1135.3 2057.4,1131.1 2067.8,1126.3 2078.8,1121.0 2090.3,1115.2 2102.1,1108.9 2114.3,1102.1 2126.7,1095.0 2139.3,1087.5 2151.9,1079.8 2164.6,1071.8  A 790.600,790.600 0.00 0,0 2139.8,1035.6 L 2139.8,1035.6 2127.7,1044.3 2115.5,1052.7 2103.3,1060.9 2091.3,1068.7 2079.5,1076.1 2068.0,1083.1 2056.9,1089.5 2046.2,1095.4 2036.1,1100.8 2026.4,1105.5 2017.4,1109.6 2009.1,1113.1 2001.4,1115.9 1994.5,1117.9 1988.4,1119.3 1983.1,1119.9 1978.6,1119.8 1975.0,1119.0 1972.2,1117.4 1970.4,1115.1 1969.4,1112.1 1969.3,1108.4 1970.1,1104.0 1971.8,1098.9 1974.4,1093.2 1977.8,1086.8 1982.1,1079.9 1987.1,1072.4 1993.0,1064.4 1999.6,1056.0 2006.9,1047.1 2014.8,1037.8 2023.4,1028.3 2032.6,1018.4 2042.2,1008.4 2052.3,998.2 2062.7,988.0 2073.5,977.7 2084.5,967.6  Z" style="stroke-width: 0.0;  fill: rgb(255,204,0);" />
+<path d="M 2207.894,1147.958 A 790.600,790.600 0.00 0,1 2226.3,1187.7 L 2226.3,1187.7 2212.6,1193.7 2199.1,1199.9 2185.9,1206.2 2173.1,1212.5 2160.7,1218.8 2148.8,1225.1 2137.6,1231.4 2127.0,1237.5 2117.2,1243.5 2108.2,1249.4 2100.1,1255.0 2092.8,1260.4 2086.5,1265.6 2081.2,1270.5 2076.9,1275.0 2073.7,1279.3 2071.5,1283.2 2070.3,1286.7 2070.3,1289.9 2071.3,1292.7 2073.4,1295.0 2076.5,1297.0 2080.7,1298.6 2086.0,1299.7 2092.2,1300.4 2099.4,1300.7 2107.5,1300.6 2116.5,1300.1 2126.4,1299.1 2137.1,1297.8 2148.4,1296.1 2160.5,1294.0 2173.1,1291.5 2186.2,1288.7 2199.8,1285.5 2213.7,1282.1 2227.8,1278.3 2242.1,1274.3 2256.4,1270.1  A 790.600,790.600 0.00 0,0 2242.5,1228.5 L 2242.5,1228.5 2228.4,1233.5 2214.4,1238.3 2200.5,1242.8 2186.8,1247.1 2173.4,1251.0 2160.5,1254.5 2148.0,1257.7 2136.1,1260.4 2124.9,1262.8 2114.3,1264.7 2104.5,1266.2 2095.5,1267.2 2087.4,1267.8 2080.2,1267.9 2074.0,1267.5 2068.7,1266.7 2064.4,1265.4 2061.1,1263.6 2058.9,1261.3 2057.8,1258.6 2057.6,1255.4 2058.6,1251.8 2060.6,1247.8 2063.6,1243.4 2067.6,1238.6 2072.7,1233.4 2078.6,1227.9 2085.6,1222.1 2093.4,1216.1 2102.0,1209.7 2111.5,1203.2 2121.7,1196.5 2132.6,1189.6 2144.1,1182.6 2156.1,1175.6 2168.6,1168.6 2181.4,1161.6 2194.6,1154.7 2207.9,1148.0  Z" style="stroke-width: 0.0;  fill: rgb(255,204,0);" />
+<path d="M 2277.230,1355.220 A 790.600,790.600 0.00 0,1 2284.1,1398.5 L 2284.1,1398.5 2269.3,1400.6 2254.6,1402.8 2240.1,1405.2 2226.1,1407.7 2212.4,1410.4 2199.3,1413.3 2186.8,1416.2 2174.9,1419.2 2163.8,1422.3 2153.6,1425.5 2144.2,1428.7 2135.8,1431.9 2128.3,1435.1 2121.9,1438.4 2116.5,1441.6 2112.2,1444.8 2109.0,1447.9 2106.9,1451.0 2106.0,1454.1 2106.2,1457.0 2107.6,1459.9 2110.1,1462.6 2113.7,1465.3 2118.4,1467.8 2124.2,1470.2 2131.0,1472.5 2138.9,1474.6 2147.7,1476.5 2157.5,1478.3 2168.1,1479.9 2179.5,1481.4 2191.6,1482.7 2204.4,1483.7 2217.8,1484.6 2231.7,1485.3 2246.1,1485.8 2260.7,1486.1 2275.5,1486.1 2290.5,1486.0  A 790.600,790.600 0.00 0,0 2288.5,1442.2 L 2288.5,1442.2 2273.6,1443.1 2258.7,1443.9 2244.1,1444.4 2229.8,1444.8 2215.9,1444.8 2202.5,1444.7 2189.6,1444.3 2177.4,1443.8 2165.9,1442.9 2155.3,1441.9 2145.4,1440.7 2136.5,1439.2 2128.6,1437.5 2121.6,1435.6 2115.7,1433.6 2110.8,1431.3 2107.1,1428.9 2104.4,1426.2 2102.9,1423.5 2102.5,1420.5 2103.3,1417.5 2105.2,1414.3 2108.2,1410.9 2112.3,1407.5 2117.5,1404.0 2123.7,1400.4 2131.0,1396.8 2139.3,1393.1 2148.5,1389.4 2158.5,1385.6 2169.4,1381.9 2181.1,1378.3 2193.4,1374.6 2206.3,1371.1 2219.8,1367.6 2233.8,1364.3 2248.0,1361.1 2262.6,1358.1 2277.2,1355.2  Z" style="stroke-width: 0.0;  fill: rgb(255,204,0);" />
+<path d="M 2287.172,1573.545 A 790.600,790.600 0.00 0,1 2281.9,1617.1 L 2281.9,1617.1 2267.1,1615.0 2252.4,1613.1 2237.8,1611.4 2223.6,1610.1 2209.7,1608.9 2196.3,1608.0 2183.5,1607.4 2171.2,1607.1 2159.7,1607.0 2149.0,1607.3 2139.1,1607.8 2130.1,1608.6 2122.1,1609.6 2115.0,1611.0 2108.9,1612.6 2103.9,1614.5 2100.0,1616.7 2097.2,1619.1 2095.4,1621.7 2094.8,1624.6 2095.4,1627.7 2097.0,1631.1 2099.8,1634.6 2103.6,1638.3 2108.5,1642.2 2114.5,1646.3 2121.5,1650.5 2129.4,1654.8 2138.3,1659.2 2148.0,1663.6 2158.6,1668.1 2170.0,1672.7 2182.0,1677.2 2194.6,1681.7 2207.8,1686.2 2221.4,1690.6 2235.4,1694.8 2249.7,1699.0 2264.1,1702.9  A 790.600,790.600 0.00 0,0 2274.2,1660.2 L 2274.2,1660.2 2259.6,1657.1 2245.1,1653.8 2230.9,1650.3 2217.0,1646.7 2203.6,1643.0 2190.8,1639.1 2178.5,1635.3 2166.9,1631.4 2156.1,1627.4 2146.1,1623.5 2137.0,1619.6 2128.8,1615.8 2121.6,1612.0 2115.5,1608.3 2110.3,1604.7 2106.3,1601.2 2103.3,1597.8 2101.5,1594.5 2100.8,1591.5 2101.3,1588.5 2102.8,1585.8 2105.5,1583.2 2109.3,1580.9 2114.2,1578.7 2120.2,1576.7 2127.2,1575.0 2135.2,1573.5 2144.1,1572.2 2154.0,1571.1 2164.7,1570.3 2176.2,1569.7 2188.4,1569.4 2201.2,1569.3 2214.6,1569.4 2228.6,1569.8 2242.9,1570.4 2257.5,1571.2 2272.3,1572.3 2287.2,1573.5  Z" style="stroke-width: 0.0;  fill: rgb(255,204,0);" />
+<path d="M 2236.959,1786.251 A 790.600,790.600 0.00 0,1 2220.0,1826.7 L 2220.0,1826.7 2206.3,1820.6 2192.7,1814.8 2179.1,1809.2 2165.8,1803.9 2152.8,1799.1 2140.1,1794.5 2127.9,1790.4 2116.3,1786.8 2105.2,1783.6 2094.8,1780.9 2085.2,1778.6 2076.3,1776.9 2068.3,1775.8 2061.1,1775.1 2054.8,1775.0 2049.5,1775.5 2045.1,1776.5 2041.7,1778.0 2039.4,1780.1 2038.0,1782.7 2037.6,1785.9 2038.3,1789.5 2040.0,1793.7 2042.7,1798.3 2046.3,1803.4 2050.9,1808.9 2056.5,1814.9 2063.0,1821.2 2070.3,1827.8 2078.5,1834.8 2087.4,1842.0 2097.1,1849.5 2107.4,1857.2 2118.3,1865.0 2129.8,1872.9 2141.7,1880.8 2154.0,1888.8 2166.6,1896.6 2179.4,1904.4  A 790.600,790.600 0.00 0,0 2200.7,1866.1 L 2200.7,1866.1 2187.5,1859.1 2174.5,1851.9 2161.8,1844.7 2149.5,1837.4 2137.6,1830.1 2126.3,1822.9 2115.5,1815.9 2105.5,1808.9 2096.1,1802.2 2087.6,1795.7 2079.9,1789.5 2073.1,1783.5 2067.2,1777.9 2062.3,1772.6 2058.4,1767.8 2055.4,1763.3 2053.5,1759.2 2052.7,1755.6 2052.8,1752.5 2054.1,1749.8 2056.3,1747.6 2059.6,1745.8 2063.9,1744.6 2069.2,1743.8 2075.5,1743.6 2082.7,1743.8 2090.8,1744.6 2099.7,1745.8 2109.5,1747.5 2120.0,1749.6 2131.2,1752.2 2143.1,1755.2 2155.5,1758.6 2168.3,1762.4 2181.6,1766.6 2195.2,1771.1 2209.0,1775.9 2223.0,1780.9 2237.0,1786.3  Z" style="stroke-width: 0.0;  fill: rgb(255,204,0);" />
+<path d="M 2130.430,1977.082 A 790.600,790.600 0.00 0,1 2103.0,2011.3 L 2103.0,2011.3 2091.5,2001.7 2080.0,1992.4 2068.5,1983.3 2057.1,1974.6 2045.9,1966.3 2035.0,1958.5 2024.4,1951.3 2014.2,1944.6 2004.5,1938.5 1995.2,1933.0 1986.5,1928.2 1978.5,1924.2 1971.1,1920.8 1964.3,1918.2 1958.3,1916.4 1953.1,1915.4 1948.6,1915.2 1944.9,1915.7 1942.1,1917.1 1940.0,1919.2 1938.8,1922.1 1938.5,1925.8 1938.9,1930.3 1940.3,1935.5 1942.4,1941.4 1945.3,1948.0 1949.0,1955.2 1953.5,1963.0 1958.8,1971.4 1964.7,1980.4 1971.3,1989.8 1978.6,1999.6 1986.4,2009.8 1994.8,2020.3 2003.6,2031.1 2012.9,2042.0 2022.6,2053.0 2032.5,2064.0 2042.7,2074.9  A 790.600,790.600 0.00 0,0 2073.7,2043.9 L 2073.7,2043.9 2063.0,2033.6 2052.4,2023.1 2042.2,2012.7 2032.3,2002.3 2022.9,1992.1 2013.9,1982.1 2005.5,1972.3 1997.8,1962.9 1990.6,1953.9 1984.2,1945.3 1978.5,1937.2 1973.6,1929.6 1969.5,1922.6 1966.2,1916.2 1963.7,1910.4 1962.1,1905.3 1961.4,1900.9 1961.6,1897.2 1962.6,1894.2 1964.5,1891.9 1967.3,1890.4 1970.9,1889.6 1975.4,1889.6 1980.7,1890.4 1986.8,1891.8 1993.7,1894.1 2001.3,1897.0 2009.5,1900.6 2018.5,1904.9 2028.0,1909.8 2038.1,1915.4 2048.6,1921.5 2059.6,1928.2 2071.0,1935.4 2082.6,1943.0 2094.4,1951.1 2106.4,1959.5 2118.4,1968.1 2130.4,1977.1  Z" style="stroke-width: 0.0;  fill: rgb(255,204,0);" />
+<path d="M 1975.724,2131.455 A 790.600,790.600 0.00 0,1 1940.0,2156.9 L 1940.0,2156.9 1931.6,2144.5 1923.1,2132.4 1914.5,2120.5 1905.9,2109.0 1897.4,2098.0 1889.0,2087.5 1880.8,2077.6 1872.9,2068.4 1865.1,2059.8 1857.8,2052.0 1850.7,2045.1 1844.1,2038.9 1837.8,2033.7 1832.1,2029.4 1826.8,2026.0 1822.0,2023.6 1817.8,2022.1 1814.1,2021.6 1811.0,2022.2 1808.4,2023.7 1806.5,2026.2 1805.1,2029.6 1804.4,2034.0 1804.2,2039.4 1804.6,2045.6 1805.7,2052.8 1807.3,2060.7 1809.4,2069.5 1812.2,2079.0 1815.4,2089.3 1819.2,2100.1 1823.5,2111.6 1828.2,2123.5 1833.4,2135.9 1839.0,2148.7 1844.9,2161.7 1851.2,2174.9 1857.8,2188.2 1864.6,2201.5  A 790.600,790.600 0.00 0,0 1902.9,2180.2 L 1902.9,2180.2 1895.4,2167.3 1888.1,2154.4 1881.1,2141.5 1874.4,2128.9 1868.2,2116.4 1862.3,2104.4 1856.9,2092.7 1852.0,2081.5 1847.6,2070.9 1843.8,2060.8 1840.5,2051.5 1837.9,2042.8 1835.8,2035.0 1834.4,2027.9 1833.6,2021.7 1833.5,2016.3 1834.0,2011.9 1835.2,2008.4 1837.0,2005.8 1839.5,2004.1 1842.5,2003.4 1846.3,2003.7 1850.6,2004.9 1855.5,2007.1 1860.9,2010.2 1866.9,2014.2 1873.4,2019.0 1880.4,2024.8 1887.8,2031.4 1895.6,2038.7 1903.8,2046.8 1912.3,2055.6 1921.0,2065.0 1929.9,2075.0 1939.0,2085.6 1948.2,2096.6 1957.5,2107.9 1966.6,2119.6 1975.7,2131.5  Z" style="stroke-width: 0.0;  fill: rgb(255,204,0);" />
+<path d="M 1784.664,2237.573 A 790.600,790.600 0.00 0,1 1743.3,2252.2 L 1743.3,2252.2 1738.6,2238.0 1733.8,2224.0 1728.8,2210.3 1723.7,2196.9 1718.5,2184.0 1713.3,2171.6 1708.1,2159.8 1703.0,2148.7 1697.9,2138.4 1692.9,2128.9 1688.1,2120.3 1683.4,2112.6 1678.8,2105.8 1674.5,2100.1 1670.3,2095.4 1666.4,2091.7 1662.7,2089.2 1659.3,2087.7 1656.1,2087.4 1653.3,2088.1 1650.7,2090.0 1648.5,2092.9 1646.5,2097.0 1644.9,2102.1 1643.6,2108.2 1642.6,2115.3 1642.0,2123.4 1641.7,2132.5 1641.7,2142.4 1642.1,2153.1 1642.7,2164.6 1643.7,2176.8 1645.0,2189.6 1646.6,2202.9 1648.5,2216.7 1650.6,2230.8 1653.0,2245.3 1655.7,2259.9 1658.6,2274.5  A 790.600,790.600 0.00 0,0 1701.3,2264.6 L 1701.3,2264.6 1697.6,2250.1 1694.1,2235.6 1690.9,2221.4 1688.0,2207.3 1685.3,2193.7 1683.0,2180.5 1681.0,2167.8 1679.3,2155.7 1678.0,2144.2 1677.1,2133.5 1676.5,2123.6 1676.3,2114.6 1676.5,2106.5 1677.1,2099.3 1678.1,2093.1 1679.4,2087.9 1681.1,2083.8 1683.2,2080.7 1685.7,2078.7 1688.5,2077.8 1691.6,2078.0 1695.1,2079.2 1698.9,2081.6 1703.1,2085.0 1707.5,2089.5 1712.1,2095.0 1717.0,2101.4 1722.2,2108.9 1727.5,2117.2 1733.0,2126.4 1738.6,2136.5 1744.4,2147.2 1750.2,2158.7 1756.1,2170.8 1761.9,2183.4 1767.8,2196.5 1773.5,2209.9 1779.2,2223.7 1784.7,2237.6  Z" style="stroke-width: 0.0;  fill: rgb(153,102,255);" />
+<path d="M 1571.851,2287.328 A 790.600,790.600 0.00 0,1 1528.1,2290.1 L 1528.1,2290.1 1527.5,2275.2 1526.6,2260.4 1525.6,2245.8 1524.3,2231.5 1522.9,2217.6 1521.3,2204.3 1519.5,2191.6 1517.6,2179.5 1515.6,2168.2 1513.4,2157.7 1511.1,2148.1 1508.7,2139.3 1506.1,2131.6 1503.5,2124.9 1500.8,2119.2 1498.0,2114.7 1495.2,2111.2 1492.3,2108.9 1489.4,2107.7 1486.4,2107.6 1483.4,2108.7 1480.5,2110.9 1477.5,2114.3 1474.5,2118.7 1471.6,2124.3 1468.7,2130.9 1465.9,2138.5 1463.1,2147.1 1460.4,2156.6 1457.8,2167.0 1455.3,2178.3 1452.9,2190.2 1450.7,2202.9 1448.5,2216.2 1446.6,2229.9 1444.8,2244.1 1443.1,2258.7 1441.7,2273.5 1440.5,2288.4  A 790.600,790.600 0.00 0,0 1484.2,2290.4 L 1484.2,2290.4 1484.7,2275.5 1485.3,2260.7 1486.1,2246.1 1487.1,2231.8 1488.3,2217.9 1489.7,2204.6 1491.3,2191.8 1493.0,2179.7 1494.9,2168.4 1496.9,2157.8 1499.0,2148.1 1501.3,2139.4 1503.7,2131.6 1506.3,2124.9 1508.9,2119.2 1511.6,2114.6 1514.4,2111.1 1517.2,2108.7 1520.1,2107.4 1523.1,2107.3 1526.1,2108.4 1529.1,2110.5 1532.1,2113.8 1535.1,2118.3 1538.1,2123.8 1541.1,2130.3 1544.1,2137.9 1547.0,2146.4 1549.8,2155.9 1552.6,2166.3 1555.3,2177.5 1557.9,2189.4 1560.3,2202.0 1562.6,2215.3 1564.8,2229.0 1566.9,2243.2 1568.7,2257.7 1570.4,2272.5 1571.9,2287.3  Z" style="stroke-width: 0.0;  fill: rgb(153,102,255);" />
+<path d="M 1353.547,2276.917 A 790.600,790.600 0.00 0,1 1310.7,2267.6 L 1310.7,2267.6 1314.2,2253.1 1317.4,2238.6 1320.4,2224.3 1323.1,2210.2 1325.5,2196.5 1327.7,2183.2 1329.5,2170.5 1330.9,2158.4 1332.0,2146.9 1332.8,2136.2 1333.2,2126.3 1333.3,2117.3 1333.0,2109.2 1332.3,2102.0 1331.2,2095.8 1329.8,2090.6 1328.0,2086.5 1325.9,2083.5 1323.4,2081.5 1320.6,2080.7 1317.4,2080.9 1314.0,2082.2 1310.2,2084.6 1306.1,2088.1 1301.8,2092.6 1297.2,2098.2 1292.4,2104.8 1287.4,2112.3 1282.2,2120.7 1276.8,2130.0 1271.3,2140.1 1265.7,2151.0 1260.1,2162.5 1254.4,2174.7 1248.8,2187.4 1243.1,2200.6 1237.6,2214.1 1232.2,2227.9 1226.9,2241.9  A 790.600,790.600 0.00 0,0 1268.4,2255.9 L 1268.4,2255.9 1272.9,2241.7 1277.6,2227.6 1282.4,2213.8 1287.3,2200.3 1292.2,2187.3 1297.2,2174.8 1302.2,2163.0 1307.2,2151.8 1312.1,2141.4 1316.9,2131.8 1321.6,2123.1 1326.2,2115.3 1330.7,2108.5 1334.9,2102.7 1339.0,2098.0 1342.9,2094.3 1346.5,2091.6 1349.9,2090.1 1353.0,2089.7 1355.9,2090.4 1358.5,2092.2 1360.8,2095.2 1362.8,2099.2 1364.5,2104.2 1365.9,2110.4 1367.0,2117.5 1367.8,2125.6 1368.2,2134.6 1368.3,2144.5 1368.2,2155.2 1367.7,2166.7 1366.9,2178.9 1365.8,2191.7 1364.4,2205.1 1362.8,2218.9 1360.8,2233.1 1358.6,2247.6 1356.2,2262.2 1353.5,2276.9  Z" style="stroke-width: 0.0;  fill: rgb(153,102,255);" />
+<path d="M 1146.435,2207.135 A 790.600,790.600 0.00 0,1 1107.8,2186.4 L 1107.8,2186.4 1115.1,2173.4 1122.2,2160.4 1129.0,2147.4 1135.4,2134.6 1141.5,2122.1 1147.2,2109.9 1152.4,2098.2 1157.1,2086.9 1161.3,2076.2 1165.0,2066.1 1168.1,2056.7 1170.6,2048.1 1172.6,2040.2 1173.9,2033.1 1174.6,2026.8 1174.6,2021.5 1174.0,2017.0 1172.8,2013.5 1170.9,2011.0 1168.5,2009.4 1165.4,2008.7 1161.7,2009.0 1157.4,2010.3 1152.5,2012.6 1147.1,2015.7 1141.2,2019.8 1134.7,2024.8 1127.9,2030.7 1120.5,2037.3 1112.8,2044.8 1104.8,2053.0 1096.5,2062.0 1087.9,2071.5 1079.1,2081.7 1070.2,2092.4 1061.1,2103.5 1052.1,2115.0 1043.1,2126.8 1034.2,2138.8  A 790.600,790.600 0.00 0,0 1070.3,2163.6 L 1070.3,2163.6 1078.5,2151.2 1086.9,2138.9 1095.3,2126.9 1103.7,2115.3 1112.0,2104.1 1120.2,2093.5 1128.2,2083.5 1136.1,2074.1 1143.6,2065.4 1150.9,2057.6 1157.8,2050.5 1164.4,2044.3 1170.5,2038.9 1176.2,2034.5 1181.5,2031.0 1186.2,2028.5 1190.4,2027.0 1194.1,2026.5 1197.2,2027.0 1199.8,2028.4 1201.8,2030.9 1203.2,2034.3 1204.0,2038.7 1204.3,2044.1 1203.9,2050.3 1203.0,2057.5 1201.5,2065.5 1199.5,2074.3 1196.9,2083.8 1193.8,2094.1 1190.2,2105.0 1186.1,2116.5 1181.5,2128.6 1176.6,2141.0 1171.2,2153.9 1165.4,2167.0 1159.4,2180.3 1153.0,2193.7 1146.4,2207.1  Z" style="stroke-width: 0.0;  fill: rgb(153,102,255);" />
+<path d="M 966.342,2083.316 A 790.600,790.600 0.00 0,1 934.8,2052.8 L 934.8,2052.8 945.4,2042.3 955.8,2031.7 965.9,2021.1 975.6,2010.6 984.9,2000.2 993.7,1990.0 1001.9,1980.2 1009.5,1970.6 1016.5,1961.5 1022.8,1952.8 1028.4,1944.6 1033.2,1936.9 1037.2,1929.9 1040.4,1923.4 1042.8,1917.6 1044.3,1912.5 1044.9,1908.0 1044.7,1904.3 1043.6,1901.3 1041.7,1899.1 1038.9,1897.7 1035.2,1897.0 1030.7,1897.0 1025.5,1897.8 1019.4,1899.4 1012.6,1901.7 1005.0,1904.8 996.8,1908.5 987.9,1912.9 978.5,1918.0 968.5,1923.7 958.0,1930.0 947.1,1936.9 935.9,1944.2 924.4,1952.0 912.7,1960.3 900.8,1968.9 888.9,1977.8 877.1,1986.9  A 790.600,790.600 0.00 0,0 905.0,2020.7 L 905.0,2020.7 916.4,2010.9 927.7,2001.4 939.1,1992.1 950.3,1983.3 961.4,1974.8 972.2,1966.8 982.7,1959.4 992.8,1952.5 1002.4,1946.3 1011.6,1940.7 1020.2,1935.8 1028.2,1931.6 1035.6,1928.1 1042.3,1925.4 1048.2,1923.5 1053.5,1922.4 1057.9,1922.1 1061.6,1922.6 1064.5,1923.9 1066.6,1926.0 1067.8,1928.9 1068.2,1932.6 1067.8,1937.1 1066.6,1942.3 1064.6,1948.2 1061.7,1954.9 1058.1,1962.2 1053.7,1970.1 1048.6,1978.6 1042.8,1987.6 1036.4,1997.1 1029.3,2007.0 1021.6,2017.4 1013.4,2028.0 1004.7,2038.9 995.6,2049.9 986.1,2061.1 976.3,2072.2 966.3,2083.3  Z" style="stroke-width: 0.0;  fill: rgb(153,102,255);" />
+<path d="M 827.029,1914.920 A 790.600,790.600 0.00 0,1 805.1,1877.0 L 805.1,1877.0 818.1,1869.8 831.0,1862.4 843.6,1855.0 855.9,1847.5 867.6,1840.1 878.9,1832.7 889.5,1825.4 899.4,1818.4 908.6,1811.5 917.1,1804.8 924.7,1798.5 931.4,1792.4 937.2,1786.7 942.0,1781.4 945.9,1776.5 948.7,1771.9 950.6,1767.8 951.4,1764.2 951.2,1761.1 949.9,1758.4 947.6,1756.2 944.3,1754.5 940.0,1753.4 934.7,1752.7 928.4,1752.6 921.2,1752.9 913.1,1753.8 904.2,1755.1 894.4,1756.9 884.0,1759.3 872.8,1762.0 861.0,1765.2 848.7,1768.8 835.8,1772.8 822.6,1777.2 809.1,1781.9 795.4,1786.9 781.5,1792.2 767.6,1797.7  A 790.600,790.600 0.00 0,0 785.2,1837.9 L 785.2,1837.9 798.8,1831.6 812.3,1825.5 825.8,1819.8 839.0,1814.3 852.0,1809.2 864.6,1804.5 876.7,1800.2 888.3,1796.4 899.3,1793.0 909.6,1790.1 919.2,1787.8 928.1,1785.9 936.1,1784.6 943.3,1783.9 949.5,1783.7 954.9,1784.0 959.3,1785.0 962.7,1786.4 965.1,1788.5 966.5,1791.1 966.9,1794.2 966.3,1797.9 964.7,1802.1 962.1,1806.7 958.5,1811.9 953.9,1817.5 948.5,1823.5 942.1,1829.9 934.9,1836.7 926.8,1843.8 918.0,1851.2 908.5,1858.8 898.3,1866.6 887.4,1874.6 876.1,1882.7 864.3,1890.8 852.2,1898.9 839.7,1907.0 827.0,1914.9  Z" style="stroke-width: 0.0;  fill: rgb(153,102,255);" />
+<path d="M 739.144,1714.817 A 790.600,790.600 0.00 0,1 728.4,1672.3 L 728.4,1672.3 743.0,1668.9 757.4,1665.4 771.5,1661.7 785.3,1657.9 798.7,1653.9 811.5,1649.9 823.7,1645.9 835.2,1641.8 846.0,1637.7 855.9,1633.6 864.9,1629.6 873.0,1625.6 880.2,1621.7 886.3,1617.9 891.4,1614.2 895.4,1610.6 898.3,1607.2 900.0,1603.9 900.7,1600.8 900.2,1597.9 898.6,1595.2 895.8,1592.7 892.0,1590.4 887.1,1588.3 881.1,1586.4 874.1,1584.8 866.1,1583.4 857.1,1582.2 847.2,1581.3 836.5,1580.7 825.0,1580.3 812.8,1580.1 799.9,1580.2 786.5,1580.6 772.6,1581.1 758.3,1582.0 743.7,1583.0 728.9,1584.3 714.1,1585.8  A 790.600,790.600 0.00 0,0 720.0,1629.3 L 720.0,1629.3 734.8,1626.9 749.5,1624.8 764.0,1623.0 778.2,1621.3 792.1,1620.0 805.5,1618.9 818.3,1618.1 830.5,1617.6 842.0,1617.3 852.7,1617.4 862.6,1617.8 871.7,1618.4 879.7,1619.3 886.8,1620.6 892.9,1622.1 897.9,1623.9 901.9,1626.0 904.8,1628.4 906.5,1631.0 907.2,1633.9 906.7,1637.0 905.1,1640.4 902.4,1644.0 898.6,1647.8 893.8,1651.7 887.9,1655.9 881.0,1660.2 873.1,1664.6 864.3,1669.1 854.6,1673.7 844.1,1678.4 832.8,1683.1 820.9,1687.9 808.3,1692.6 795.2,1697.2 781.6,1701.8 767.7,1706.3 753.5,1710.7 739.1,1714.8  Z" style="stroke-width: 0.0;  fill: rgb(153,102,255);" />
+<path d="M 709.402,1498.299 A 790.600,790.600 0.00 0,1 710.7,1454.5 L 710.7,1454.5 725.6,1455.2 740.5,1455.8 755.1,1456.1 769.4,1456.2 783.3,1456.0 796.8,1455.7 809.6,1455.1 821.8,1454.3 833.3,1453.4 843.9,1452.2 853.7,1450.7 862.6,1449.1 870.6,1447.3 877.5,1445.4 883.4,1443.2 888.2,1440.9 891.9,1438.3 894.5,1435.7 896.0,1432.9 896.3,1430.0 895.5,1426.9 893.6,1423.7 890.5,1420.4 886.3,1417.1 881.1,1413.7 874.8,1410.2 867.4,1406.6 859.1,1403.1 849.9,1399.5 839.8,1395.9 828.8,1392.4 817.1,1388.9 804.7,1385.5 791.7,1382.1 778.2,1378.9 764.2,1375.8 749.9,1372.8 735.3,1370.0 720.6,1367.4  A 790.600,790.600 0.00 0,0 714.4,1410.8 L 714.4,1410.8 729.3,1412.6 744.0,1414.6 758.5,1416.8 772.6,1419.1 786.3,1421.6 799.5,1424.2 812.0,1426.9 823.9,1429.8 835.0,1432.7 845.3,1435.7 854.8,1438.8 863.2,1441.8 870.8,1445.0 877.2,1448.1 882.7,1451.2 887.0,1454.4 890.3,1457.5 892.4,1460.5 893.3,1463.5 893.2,1466.5 891.9,1469.4 889.4,1472.2 885.8,1474.9 881.2,1477.5 875.4,1480.0 868.6,1482.3 860.8,1484.6 852.0,1486.6 842.3,1488.6 831.7,1490.4 820.3,1492.0 808.2,1493.5 795.4,1494.7 782.0,1495.8 768.1,1496.7 753.8,1497.4 739.2,1497.9 724.3,1498.2 709.4,1498.3  Z" style="stroke-width: 0.0;  fill: rgb(153,102,255);" />
+<path d="M 740.076,1281.910 A 790.600,790.600 0.00 0,1 753.3,1240.1 L 753.3,1240.1 767.5,1244.9 781.6,1249.5 795.6,1253.8 809.3,1257.8 822.8,1261.5 835.8,1264.8 848.3,1267.8 860.2,1270.4 871.5,1272.6 882.1,1274.4 891.9,1275.7 900.9,1276.6 909.0,1277.0 916.2,1277.0 922.5,1276.5 927.7,1275.6 932.0,1274.2 935.2,1272.4 937.4,1270.1 938.5,1267.3 938.6,1264.2 937.6,1260.6 935.6,1256.6 932.5,1252.2 928.4,1247.5 923.3,1242.4 917.2,1237.0 910.2,1231.3 902.3,1225.4 893.5,1219.2 883.9,1212.8 873.6,1206.2 862.7,1199.5 851.1,1192.7 838.9,1185.9 826.3,1179.1 813.4,1172.3 800.1,1165.6 786.7,1159.1  A 790.600,790.600 0.00 0,0 768.9,1199.1 L 768.9,1199.1 782.7,1204.9 796.3,1210.9 809.6,1216.9 822.5,1223.0 835.0,1229.2 847.0,1235.3 858.3,1241.4 869.0,1247.4 878.9,1253.2 887.9,1258.9 896.2,1264.4 903.5,1269.7 909.9,1274.8 915.2,1279.6 919.6,1284.1 922.9,1288.3 925.2,1292.1 926.4,1295.7 926.5,1298.8 925.5,1301.6 923.5,1304.0 920.4,1306.0 916.2,1307.7 911.0,1308.9 904.8,1309.7 897.6,1310.1 889.4,1310.1 880.4,1309.7 870.5,1309.0 859.9,1307.8 848.5,1306.2 836.4,1304.3 823.7,1302.0 810.6,1299.4 797.0,1296.5 783.0,1293.2 768.8,1289.7 754.5,1285.9 740.1,1281.9  Z" style="stroke-width: 0.0;  fill: rgb(153,102,255);" />
+<path d="M 828.821,1082.187 A 790.600,790.600 0.00 0,1 853.0,1045.6 L 853.0,1045.6 865.3,1054.1 877.6,1062.4 889.9,1070.4 902.0,1078.0 913.9,1085.2 925.5,1092.0 936.7,1098.3 947.5,1104.0 957.8,1109.2 967.5,1113.8 976.6,1117.8 985.0,1121.1 992.6,1123.7 999.6,1125.7 1005.7,1127.0 1011.1,1127.5 1015.5,1127.3 1019.1,1126.4 1021.9,1124.8 1023.7,1122.5 1024.6,1119.5 1024.6,1115.8 1023.8,1111.4 1022.0,1106.3 1019.3,1100.6 1015.8,1094.4 1011.4,1087.5 1006.3,1080.1 1000.3,1072.2 993.6,1063.8 986.1,1055.1 978.0,1045.9 969.3,1036.5 960.0,1026.8 950.2,1016.9 939.9,1006.9 929.3,996.8 918.4,986.8 907.3,976.8  A 790.600,790.600 0.00 0,0 879.2,1010.5 L 879.2,1010.5 890.9,1019.8 902.3,1029.2 913.5,1038.7 924.3,1048.1 934.6,1057.5 944.4,1066.6 953.6,1075.6 962.2,1084.2 970.2,1092.6 977.3,1100.6 983.7,1108.1 989.3,1115.2 994.1,1121.8 997.9,1127.9 1000.9,1133.4 1003.0,1138.4 1004.1,1142.7 1004.3,1146.4 1003.5,1149.5 1001.8,1151.9 999.2,1153.7 995.6,1154.8 991.2,1155.2 985.8,1154.9 979.6,1154.0 972.6,1152.4 964.7,1150.2 956.2,1147.4 946.9,1143.9 936.9,1139.9 926.4,1135.3 915.3,1130.1 903.8,1124.4 891.8,1118.3 879.6,1111.8 867.0,1104.8 854.3,1097.6 841.6,1090.0 828.8,1082.2  Z" style="stroke-width: 0.0;  fill: rgb(153,102,255);" />
+</g>
+<g id="track_1">
+<path d="M 1219.629,966.145 A 603.000,603.000 0.00 0,0 1219.6,966.1 L 1219.6,966.1 1230.7,986.9 1242.1,1007.4 1253.7,1027.4 1265.4,1046.9 1277.3,1065.7 1289.4,1083.7 1301.4,1100.8 1313.5,1116.8 1325.6,1131.6 1337.6,1145.2 1349.5,1157.5 1361.3,1168.4 1373.0,1177.9 1384.5,1185.8 1395.8,1192.1 1406.9,1196.9 1417.7,1200.0 1428.3,1201.5 1438.5,1201.3 1448.5,1199.4 1458.1,1195.9 1467.4,1190.6 1476.4,1183.8 1485.0,1175.3 1493.2,1165.3 1501.0,1153.7 1508.4,1140.7 1515.5,1126.2 1522.1,1110.4 1528.3,1093.4 1534.2,1075.2 1539.6,1055.9 1544.6,1035.6 1549.3,1014.5 1553.5,992.6 1557.4,970.2 1560.9,947.3 1564.0,924.1 1566.8,900.7  A 603.000,603.000 0.00 0,0 1533.4,897.9 L 1533.4,897.9 1532.0,921.3 1530.2,944.6 1528.1,967.6 1525.6,990.1 1522.7,1012.1 1519.4,1033.3 1515.8,1053.6 1511.7,1073.0 1507.2,1091.4 1502.3,1108.5 1497.0,1124.4 1491.2,1139.0 1485.0,1152.1 1478.4,1163.8 1471.4,1173.9 1463.9,1182.5 1456.0,1189.4 1447.8,1194.7 1439.1,1198.4 1430.1,1200.3 1420.8,1200.6 1411.0,1199.2 1401.0,1196.1 1390.7,1191.5 1380.1,1185.2 1369.2,1177.3 1358.1,1167.9 1346.8,1157.0 1335.4,1144.8 1323.8,1131.2 1312.1,1116.4 1300.3,1100.5 1288.6,1083.5 1276.8,1065.5 1265.1,1046.8 1253.4,1027.3 1242.0,1007.3 1230.7,986.8 1219.6,966.1  Z" style="stroke-width: 0.0;  fill: rgb(66,170,66);" />
+<path d="M 1219.629,966.145 A 603.000,603.000 0.00 0,0 1219.6,966.1 L 1219.6,966.1 1231.0,987.2 1242.7,1008.0 1254.9,1028.4 1267.4,1048.3 1280.2,1067.5 1293.4,1085.9 1306.8,1103.3 1320.4,1119.8 1334.3,1135.2 1348.4,1149.4 1362.6,1162.3 1376.9,1173.9 1391.4,1184.1 1406.0,1192.8 1420.6,1200.0 1435.2,1205.7 1449.8,1209.8 1464.5,1212.4 1479.0,1213.3 1493.6,1212.6 1508.0,1210.3 1522.3,1206.4 1536.5,1200.9 1550.5,1193.8 1564.4,1185.2 1578.0,1175.2 1591.5,1163.6 1604.6,1150.7 1617.6,1136.5 1630.2,1121.1 1642.6,1104.4 1654.6,1086.7 1666.3,1068.1 1677.6,1048.5 1688.6,1028.2 1699.1,1007.3 1709.3,985.8 1719.0,964.0 1728.3,941.9  A 603.000,603.000 0.00 0,0 1697.0,930.1 L 1697.0,930.1 1689.0,952.5 1680.6,974.8 1671.7,996.7 1662.5,1018.1 1652.8,1038.9 1642.8,1058.9 1632.4,1078.0 1621.6,1096.2 1610.6,1113.2 1599.2,1129.2 1587.5,1143.8 1575.5,1157.2 1563.2,1169.1 1550.7,1179.6 1537.9,1188.6 1524.9,1196.1 1511.7,1202.0 1498.4,1206.3 1484.9,1208.9 1471.2,1210.0 1457.5,1209.4 1443.6,1207.1 1429.7,1203.3 1415.8,1197.9 1401.8,1190.9 1387.8,1182.4 1373.9,1172.4 1360.0,1161.0 1346.3,1148.3 1332.6,1134.2 1319.1,1119.0 1305.7,1102.7 1292.6,1085.3 1279.6,1067.0 1267.0,1048.0 1254.6,1028.2 1242.6,1007.9 1230.9,987.2 1219.6,966.1  Z" style="stroke-width: 0.0;  fill: rgb(66,170,66);" />
+<path d="M 1219.629,966.145 A 603.000,603.000 0.00 0,0 1219.6,966.1 L 1219.6,966.1 1231.3,987.7 1243.4,1009.0 1256.1,1029.9 1269.3,1050.4 1283.0,1070.2 1297.2,1089.3 1311.8,1107.6 1326.9,1125.0 1342.3,1141.4 1358.2,1156.7 1374.4,1170.8 1391.0,1183.8 1407.9,1195.4 1425.1,1205.8 1442.5,1214.7 1460.3,1222.3 1478.2,1228.4 1496.4,1233.1 1514.7,1236.2 1533.2,1237.9 1551.9,1238.1 1570.6,1236.8 1589.3,1234.1 1608.1,1229.8 1627.0,1224.2 1645.7,1217.1 1664.5,1208.7 1683.1,1199.0 1701.6,1188.0 1720.0,1175.8 1738.2,1162.5 1756.1,1148.2 1773.8,1132.8 1791.2,1116.6 1808.2,1099.6 1824.9,1081.8 1841.2,1063.6 1857.0,1044.8 1872.4,1025.7  A 603.000,603.000 0.00 0,0 1845.5,1005.8 L 1845.5,1005.8 1831.3,1025.6 1816.6,1045.1 1801.5,1064.2 1786.0,1082.7 1770.1,1100.5 1753.8,1117.5 1737.3,1133.6 1720.4,1148.8 1703.4,1162.9 1686.1,1175.9 1668.6,1187.6 1651.0,1198.1 1633.2,1207.3 1615.4,1215.0 1597.5,1221.4 1579.6,1226.3 1561.6,1229.7 1543.7,1231.6 1525.9,1232.0 1508.1,1230.9 1490.5,1228.2 1473.0,1224.1 1455.6,1218.4 1438.5,1211.3 1421.5,1202.7 1404.8,1192.8 1388.3,1181.5 1372.2,1168.8 1356.3,1155.0 1340.8,1139.9 1325.6,1123.8 1310.8,1106.6 1296.5,1088.5 1282.5,1069.6 1269.0,1049.9 1255.9,1029.6 1243.3,1008.8 1231.2,987.6 1219.6,966.1  Z" style="stroke-width: 0.0;  fill: rgb(66,170,66);" />
+<path d="M 1219.629,966.145 A 603.000,603.000 0.00 0,0 1219.6,966.1 L 1219.6,966.1 1231.6,988.3 1244.2,1010.2 1257.4,1031.9 1271.2,1053.1 1285.6,1073.8 1300.6,1093.9 1316.2,1113.3 1332.4,1132.0 1349.1,1149.8 1366.3,1166.6 1384.1,1182.5 1402.4,1197.4 1421.1,1211.1 1440.4,1223.7 1460.1,1235.1 1480.2,1245.3 1500.7,1254.2 1521.6,1261.8 1542.8,1268.2 1564.4,1273.2 1586.2,1277.0 1608.4,1279.4 1630.7,1280.5 1653.2,1280.2 1675.9,1278.8 1698.8,1276.0 1721.7,1272.0 1744.7,1266.8 1767.6,1260.5 1790.6,1253.0 1813.4,1244.4 1836.2,1234.9 1858.7,1224.4 1881.1,1213.0 1903.2,1200.9 1925.0,1187.9 1946.4,1174.4 1967.4,1160.3 1988.0,1145.8  A 603.000,603.000 0.00 0,0 1967.6,1119.3 L 1967.6,1119.3 1948.0,1134.8 1927.9,1150.0 1907.4,1164.6 1886.6,1178.6 1865.4,1191.8 1843.9,1204.3 1822.2,1215.8 1800.3,1226.5 1778.3,1236.1 1756.1,1244.6 1733.9,1251.9 1711.7,1258.1 1689.6,1263.1 1667.4,1266.8 1645.4,1269.2 1623.5,1270.3 1601.8,1270.1 1580.3,1268.5 1559.0,1265.5 1537.9,1261.2 1517.2,1255.5 1496.8,1248.6 1476.7,1240.2 1457.0,1230.6 1437.7,1219.8 1418.8,1207.7 1400.3,1194.4 1382.4,1180.0 1364.8,1164.5 1347.8,1147.9 1331.3,1130.5 1315.4,1112.1 1300.0,1092.9 1285.1,1073.0 1270.8,1052.5 1257.1,1031.5 1244.0,1010.0 1231.5,988.2 1219.6,966.1  Z" style="stroke-width: 0.0;  fill: rgb(66,170,66);" />
+<path d="M 1219.629,966.145 A 603.000,603.000 0.00 0,0 1219.6,966.1 L 1219.6,966.1 1232.0,989.0 1244.9,1011.7 1258.6,1034.2 1272.9,1056.3 1287.8,1078.1 1303.4,1099.4 1319.7,1120.2 1336.6,1140.3 1354.1,1159.8 1372.2,1178.6 1391.0,1196.5 1410.3,1213.6 1430.3,1229.8 1450.8,1245.1 1471.8,1259.4 1493.4,1272.7 1515.6,1285.0 1538.2,1296.3 1561.2,1306.4 1584.7,1315.5 1608.6,1323.5 1632.9,1330.3 1657.5,1336.1 1682.5,1340.7 1707.7,1344.3 1733.2,1346.7 1758.8,1348.1 1784.7,1348.4 1810.6,1347.7 1836.6,1346.0 1862.7,1343.4 1888.7,1339.8 1914.7,1335.3 1940.6,1330.0 1966.3,1323.9 1991.8,1317.1 2017.0,1309.6 2041.8,1301.5 2066.3,1292.9  A 603.000,603.000 0.00 0,0 2054.0,1261.8 L 2054.0,1261.8 2030.2,1271.7 2005.9,1281.1 1981.4,1289.9 1956.5,1298.0 1931.4,1305.4 1906.1,1312.0 1880.6,1317.8 1855.1,1322.6 1829.6,1326.5 1804.0,1329.4 1778.5,1331.3 1753.2,1332.2 1727.9,1331.9 1702.8,1330.5 1678.0,1328.1 1653.4,1324.4 1629.1,1319.6 1605.2,1313.7 1581.6,1306.6 1558.4,1298.4 1535.6,1289.1 1513.2,1278.6 1491.4,1267.0 1470.0,1254.3 1449.1,1240.6 1428.8,1225.9 1409.0,1210.2 1389.8,1193.6 1371.2,1176.1 1353.2,1157.7 1335.8,1138.6 1319.1,1118.7 1302.9,1098.3 1287.4,1077.2 1272.6,1055.7 1258.4,1033.7 1244.8,1011.4 1231.9,988.8 1219.6,966.1  Z" style="stroke-width: 0.0;  fill: rgb(66,170,66);" />
+<path d="M 1219.629,966.145 A 603.000,603.000 0.00 0,0 1219.6,966.1 L 1219.6,966.1 1232.3,989.8 1245.7,1013.3 1259.7,1036.7 1274.3,1059.9 1289.6,1082.9 1305.5,1105.5 1322.0,1127.7 1339.2,1149.5 1357.1,1170.8 1375.6,1191.6 1394.7,1211.8 1414.4,1231.3 1434.7,1250.2 1455.7,1268.4 1477.2,1285.9 1499.3,1302.6 1521.9,1318.5 1545.0,1333.6 1568.7,1347.8 1592.9,1361.2 1617.5,1373.8 1642.6,1385.5 1668.0,1396.3 1693.9,1406.2 1720.0,1415.2 1746.5,1423.4 1773.3,1430.7 1800.4,1437.1 1827.6,1442.6 1855.0,1447.4 1882.5,1451.3 1910.1,1454.3 1937.7,1456.6 1965.3,1458.2 1992.9,1459.0 2020.3,1459.2 2047.6,1458.7 2074.6,1457.6 2101.4,1455.9  A 603.000,603.000 0.00 0,0 2098.0,1422.6 L 2098.0,1422.6 2071.6,1425.7 2044.8,1428.3 2017.8,1430.3 1990.6,1431.6 1963.3,1432.2 1935.9,1432.0 1908.4,1431.1 1881.0,1429.4 1853.6,1426.8 1826.3,1423.4 1799.2,1419.1 1772.3,1414.0 1745.6,1407.9 1719.2,1400.9 1693.0,1393.0 1667.3,1384.1 1641.8,1374.3 1616.8,1363.6 1592.2,1352.0 1568.1,1339.4 1544.5,1326.0 1521.3,1311.7 1498.7,1296.5 1476.6,1280.5 1455.1,1263.7 1434.2,1246.1 1413.9,1227.7 1394.2,1208.7 1375.1,1188.9 1356.6,1168.6 1338.8,1147.6 1321.7,1126.2 1305.1,1104.3 1289.3,1081.9 1274.0,1059.2 1259.5,1036.2 1245.5,1013.0 1232.3,989.6 1219.6,966.1  Z" style="stroke-width: 0.0;  fill: rgb(66,170,66);" />
+<path d="M 1219.629,966.145 A 603.000,603.000 0.00 0,0 1219.6,966.1 L 1219.6,966.1 1232.7,990.6 1246.4,1015.1 1260.6,1039.5 1275.4,1063.8 1290.8,1087.9 1306.7,1111.9 1323.2,1135.6 1340.3,1159.0 1358.0,1182.1 1376.2,1204.9 1395.1,1227.3 1414.4,1249.2 1434.4,1270.8 1454.9,1291.8 1475.9,1312.4 1497.4,1332.4 1519.5,1351.9 1542.1,1370.8 1565.1,1389.1 1588.6,1406.8 1612.6,1423.9 1637.0,1440.4 1661.8,1456.2 1687.0,1471.4 1712.6,1486.0 1738.4,1499.8 1764.6,1513.1 1791.1,1525.6 1817.8,1537.5 1844.7,1548.8 1871.8,1559.4 1899.1,1569.4 1926.4,1578.7 1953.8,1587.4 1981.3,1595.5 2008.7,1603.0 2036.1,1610.0 2063.4,1616.4 2090.5,1622.2  A 603.000,603.000 0.00 0,0 2096.4,1589.3 L 2096.4,1589.3 2069.1,1585.0 2041.7,1580.1 2014.2,1574.7 1986.6,1568.6 1959.0,1562.0 1931.4,1554.7 1903.8,1546.8 1876.3,1538.2 1849.0,1528.9 1821.9,1518.9 1794.9,1508.3 1768.2,1496.9 1741.7,1484.9 1715.6,1472.1 1689.8,1458.7 1664.4,1444.5 1639.3,1429.6 1614.7,1414.1 1590.5,1397.9 1566.7,1381.0 1543.4,1363.5 1520.7,1345.3 1498.4,1326.5 1476.7,1307.2 1455.5,1287.2 1434.8,1266.7 1414.7,1245.7 1395.2,1224.2 1376.3,1202.3 1358.0,1179.9 1340.2,1157.1 1323.1,1134.0 1306.5,1110.6 1290.6,1086.9 1275.2,1063.0 1260.5,1038.9 1246.3,1014.7 1232.7,990.4 1219.6,966.1  Z" style="stroke-width: 0.0;  fill: rgb(66,170,66);" />
+<path d="M 1219.629,966.145 A 603.000,603.000 0.00 0,0 1219.6,966.1 L 1219.6,966.1 1233.1,991.5 1247.1,1016.9 1261.4,1042.3 1276.3,1067.7 1291.5,1093.0 1307.2,1118.2 1323.3,1143.3 1339.9,1168.2 1356.9,1193.0 1374.4,1217.6 1392.3,1242.0 1410.7,1266.2 1429.5,1290.1 1448.7,1313.7 1468.4,1337.0 1488.5,1360.0 1508.9,1382.7 1529.8,1405.1 1551.1,1427.1 1572.8,1448.7 1594.8,1470.0 1617.2,1490.8 1640.0,1511.2 1663.0,1531.3 1686.4,1550.9 1710.1,1570.1 1734.0,1588.8 1758.2,1607.1 1782.7,1625.0 1807.3,1642.4 1832.1,1659.4 1857.1,1675.9 1882.3,1692.0 1907.5,1707.6 1932.8,1722.8 1958.2,1737.6 1983.6,1751.9 2009.1,1765.7 2034.5,1779.2  A 603.000,603.000 0.00 0,0 2049.1,1749.2 L 2049.1,1749.2 2023.2,1737.2 1997.2,1724.8 1971.3,1711.9 1945.3,1698.6 1919.4,1684.8 1893.5,1670.5 1867.8,1655.7 1842.2,1640.4 1816.8,1624.7 1791.6,1608.4 1766.6,1591.7 1741.8,1574.5 1717.3,1556.8 1693.0,1538.6 1669.1,1520.0 1645.5,1500.8 1622.2,1481.3 1599.4,1461.2 1576.8,1440.8 1554.7,1419.9 1533.0,1398.6 1511.7,1376.9 1490.8,1354.8 1470.3,1332.3 1450.3,1309.5 1430.8,1286.4 1411.7,1262.9 1393.1,1239.2 1375.0,1215.2 1357.3,1190.9 1340.1,1166.4 1323.4,1141.8 1307.2,1116.9 1291.4,1092.0 1276.1,1066.9 1261.3,1041.7 1247.0,1016.5 1233.1,991.3 1219.6,966.1  Z" style="stroke-width: 0.0;  fill: rgb(66,170,66);" />
+<path d="M 1219.629,966.145 A 603.000,603.000 0.00 0,0 1219.6,966.1 L 1219.6,966.1 1233.5,992.4 1247.7,1018.8 1262.1,1045.1 1276.8,1071.5 1291.7,1097.8 1306.9,1124.1 1322.4,1150.4 1338.1,1176.7 1354.1,1202.9 1370.3,1229.0 1386.9,1255.0 1403.6,1281.0 1420.7,1306.8 1438.0,1332.5 1455.6,1358.1 1473.4,1383.6 1491.4,1408.9 1509.7,1434.1 1528.3,1459.1 1547.1,1483.9 1566.1,1508.5 1585.3,1533.0 1604.8,1557.3 1624.4,1581.3 1644.3,1605.2 1664.4,1628.8 1684.6,1652.2 1705.0,1675.4 1725.6,1698.4 1746.3,1721.1 1767.2,1743.6 1788.2,1765.9 1809.3,1787.9 1830.5,1809.7 1851.8,1831.2 1873.2,1852.5 1894.6,1873.6 1916.1,1894.3 1937.6,1914.9  A 603.000,603.000 0.00 0,0 1959.9,1890.0 L 1959.9,1890.0 1937.5,1870.8 1915.0,1851.3 1892.6,1831.5 1870.3,1811.5 1848.1,1791.1 1825.9,1770.5 1803.9,1749.6 1781.9,1728.4 1760.2,1706.9 1738.5,1685.1 1717.1,1663.1 1695.8,1640.8 1674.7,1618.2 1653.8,1595.4 1633.2,1572.3 1612.7,1548.9 1592.6,1525.4 1572.6,1501.6 1552.9,1477.5 1533.5,1453.3 1514.3,1428.8 1495.4,1404.1 1476.8,1379.3 1458.5,1354.3 1440.5,1329.1 1422.7,1303.7 1405.3,1278.2 1388.1,1252.6 1371.3,1226.9 1354.8,1201.0 1338.6,1175.1 1322.6,1149.1 1307.0,1123.0 1291.7,1096.9 1276.7,1070.7 1262.0,1044.5 1247.6,1018.4 1233.5,992.2 1219.6,966.1  Z" style="stroke-width: 0.0;  fill: rgb(66,170,66);" />
+<path d="M 1219.629,966.145 A 603.000,603.000 0.00 0,0 1219.6,966.1 L 1219.6,966.1 1233.9,993.4 1248.3,1020.6 1262.7,1047.8 1277.1,1075.0 1291.6,1102.3 1306.1,1129.5 1320.7,1156.7 1335.3,1184.0 1349.9,1211.2 1364.6,1238.4 1379.3,1265.6 1394.1,1292.9 1408.9,1320.1 1423.8,1347.2 1438.7,1374.4 1453.7,1401.6 1468.7,1428.7 1483.7,1455.8 1498.8,1482.9 1513.9,1510.0 1529.1,1537.1 1544.2,1564.1 1559.5,1591.1 1574.7,1618.1 1590.1,1645.0 1605.4,1671.9 1620.8,1698.8 1636.2,1725.7 1651.6,1752.5 1667.1,1779.3 1682.6,1806.1 1698.1,1832.8 1713.6,1859.5 1729.2,1886.1 1744.8,1912.8 1760.4,1939.3 1776.0,1965.9 1791.6,1992.4 1807.3,2018.8  A 603.000,603.000 0.00 0,0 1835.6,2001.0 L 1835.6,2001.0 1818.6,1975.6 1801.7,1950.1 1784.7,1924.6 1767.9,1898.9 1751.0,1873.2 1734.2,1847.4 1717.4,1821.5 1700.7,1795.6 1684.1,1769.5 1667.5,1743.4 1650.9,1717.3 1634.4,1691.0 1618.0,1664.7 1601.7,1638.3 1585.4,1611.9 1569.2,1585.4 1553.0,1558.9 1537.0,1532.3 1521.0,1505.6 1505.1,1478.9 1489.3,1452.1 1473.5,1425.3 1457.9,1398.5 1442.3,1371.6 1426.9,1344.7 1411.5,1317.7 1396.2,1290.7 1381.0,1263.7 1365.9,1236.7 1350.8,1209.7 1335.9,1182.6 1321.1,1155.6 1306.3,1128.5 1291.6,1101.4 1277.1,1074.3 1262.6,1047.3 1248.2,1020.2 1233.9,993.2 1219.6,966.1  Z" style="stroke-width: 0.0;  fill: rgb(66,170,66);" />
+<path d="M 1219.629,966.145 A 603.000,603.000 0.00 0,0 1219.6,966.1 L 1219.6,966.1 1233.6,992.8 1247.4,1019.7 1261.2,1046.7 1274.9,1073.9 1288.5,1101.2 1302.0,1128.7 1315.3,1156.3 1328.6,1184.0 1341.7,1211.9 1354.7,1239.9 1367.5,1268.1 1380.2,1296.4 1392.7,1324.8 1405.0,1353.3 1417.2,1381.9 1429.2,1410.6 1441.0,1439.4 1452.7,1468.2 1464.2,1497.2 1475.4,1526.3 1486.5,1555.4 1497.4,1584.5 1508.1,1613.8 1518.7,1643.1 1529.0,1672.4 1539.1,1701.8 1549.0,1731.1 1558.8,1760.6 1568.3,1790.0 1577.7,1819.4 1586.8,1848.8 1595.8,1878.2 1604.6,1907.6 1613.2,1937.0 1621.6,1966.3 1629.8,1995.6 1637.9,2024.9 1645.8,2054.0 1653.5,2083.1  A 603.000,603.000 0.00 0,0 1685.6,2073.7 L 1685.6,2073.7 1676.2,2044.9 1666.7,2016.0 1657.1,1987.1 1647.3,1958.2 1637.4,1929.2 1627.3,1900.2 1617.2,1871.2 1606.8,1842.1 1596.4,1813.1 1585.7,1784.1 1575.0,1755.0 1564.1,1726.0 1553.0,1697.0 1541.8,1668.1 1530.4,1639.1 1518.9,1610.2 1507.3,1581.4 1495.5,1552.6 1483.6,1523.8 1471.5,1495.1 1459.3,1466.5 1446.9,1437.9 1434.4,1409.4 1421.8,1381.0 1409.1,1352.6 1396.2,1324.3 1383.2,1296.2 1370.1,1268.1 1356.9,1240.1 1343.5,1212.2 1330.1,1184.4 1316.6,1156.7 1303.0,1129.1 1289.3,1101.7 1275.5,1074.3 1261.6,1047.1 1247.7,1020.0 1233.7,993.0 1219.6,966.1  Z" style="stroke-width: 0.0;  fill: rgb(66,170,66);" />
+<path d="M 1219.629,966.145 A 603.000,603.000 0.00 0,0 1219.6,966.1 L 1219.6,966.1 1233.0,992.0 1246.3,1018.1 1259.3,1044.6 1272.1,1071.4 1284.7,1098.4 1297.0,1125.8 1309.0,1153.4 1320.7,1181.3 1332.1,1209.4 1343.1,1237.8 1353.9,1266.3 1364.2,1295.1 1374.2,1324.2 1383.8,1353.3 1393.0,1382.7 1401.7,1412.2 1410.1,1441.9 1418.1,1471.8 1425.6,1501.7 1432.7,1531.8 1439.4,1561.9 1445.6,1592.1 1451.4,1622.4 1456.7,1652.8 1461.6,1683.2 1466.1,1713.6 1470.2,1744.0 1473.8,1774.3 1477.0,1804.7 1479.8,1835.0 1482.2,1865.3 1484.2,1895.4 1485.8,1925.5 1487.0,1955.5 1487.9,1985.3 1488.4,2015.0 1488.6,2044.5 1488.4,2073.8 1488.0,2102.9  A 603.000,603.000 0.00 0,0 1521.4,2102.6 L 1521.4,2102.6 1520.3,2073.3 1518.8,2043.9 1517.1,2014.3 1515.0,1984.5 1512.6,1954.6 1509.9,1924.6 1506.9,1894.5 1503.5,1864.3 1499.7,1834.1 1495.6,1803.8 1491.1,1773.5 1486.3,1743.1 1481.0,1712.8 1475.4,1682.5 1469.4,1652.2 1463.0,1621.9 1456.2,1591.8 1449.0,1561.6 1441.4,1531.6 1433.5,1501.6 1425.2,1471.8 1416.4,1442.1 1407.4,1412.5 1397.9,1383.0 1388.1,1353.8 1378.0,1324.6 1367.5,1295.7 1356.6,1266.9 1345.5,1238.4 1334.0,1210.1 1322.3,1181.9 1310.3,1154.1 1298.0,1126.4 1285.4,1099.0 1272.7,1071.9 1259.7,1045.0 1246.5,1018.5 1233.1,992.2 1219.6,966.1  Z" style="stroke-width: 0.0;  fill: rgb(66,170,66);" />
+<path d="M 1219.629,966.145 A 603.000,603.000 0.00 0,0 1219.6,966.1 L 1219.6,966.1 1232.5,991.1 1245.1,1016.6 1257.4,1042.4 1269.3,1068.6 1280.8,1095.2 1291.9,1122.1 1302.6,1149.4 1312.7,1177.0 1322.4,1204.8 1331.5,1233.0 1340.0,1261.4 1348.0,1290.1 1355.3,1318.9 1362.0,1348.0 1368.1,1377.3 1373.6,1406.7 1378.4,1436.2 1382.5,1465.9 1386.0,1495.6 1388.8,1525.4 1390.9,1555.3 1392.3,1585.2 1393.1,1615.1 1393.2,1645.0 1392.6,1674.9 1391.4,1704.7 1389.5,1734.5 1387.0,1764.1 1383.9,1793.6 1380.1,1823.0 1375.8,1852.1 1371.0,1881.1 1365.6,1909.9 1359.6,1938.4 1353.2,1966.7 1346.4,1994.6 1339.1,2022.3 1331.4,2049.6 1323.4,2076.6  A 603.000,603.000 0.00 0,0 1355.6,2085.5 L 1355.6,2085.5 1362.2,2057.9 1368.4,2030.1 1374.3,2001.9 1379.7,1973.4 1384.7,1944.7 1389.3,1915.7 1393.3,1886.5 1396.8,1857.1 1399.8,1827.6 1402.3,1797.9 1404.2,1768.1 1405.5,1738.2 1406.2,1708.2 1406.3,1678.1 1405.8,1648.0 1404.6,1617.9 1402.9,1587.8 1400.5,1557.7 1397.5,1527.7 1393.8,1497.7 1389.6,1467.8 1384.7,1438.0 1379.2,1408.4 1373.1,1378.9 1366.3,1349.5 1359.0,1320.4 1351.2,1291.4 1342.7,1262.7 1333.8,1234.2 1324.3,1205.9 1314.3,1177.9 1303.8,1150.3 1292.9,1122.9 1281.6,1095.9 1269.9,1069.2 1257.8,1042.8 1245.3,1016.9 1232.6,991.3 1219.6,966.1  Z" style="stroke-width: 0.0;  fill: rgb(66,170,66);" />
+<path d="M 1219.629,966.145 A 603.000,603.000 0.00 0,0 1219.6,966.1 L 1219.6,966.1 1232.0,990.3 1244.0,1015.0 1255.6,1040.0 1266.7,1065.6 1277.3,1091.5 1287.2,1117.7 1296.6,1144.3 1305.3,1171.2 1313.2,1198.3 1320.5,1225.7 1326.9,1253.4 1332.6,1281.2 1337.5,1309.2 1341.5,1337.3 1344.6,1365.5 1346.9,1393.8 1348.3,1422.1 1348.8,1450.5 1348.4,1478.9 1347.1,1507.2 1344.9,1535.5 1341.9,1563.8 1337.9,1591.9 1333.0,1619.8 1327.3,1647.6 1320.8,1675.3 1313.4,1702.7 1305.2,1729.9 1296.3,1756.8 1286.6,1783.4 1276.2,1809.8 1265.1,1835.8 1253.4,1861.4 1241.1,1886.6 1228.2,1911.4 1214.8,1935.8 1201.0,1959.8 1186.8,1983.2 1172.3,2006.2  A 603.000,603.000 0.00 0,0 1200.8,2023.6 L 1200.8,2023.6 1214.2,1999.7 1227.2,1975.3 1239.8,1950.5 1251.9,1925.3 1263.6,1899.6 1274.7,1873.6 1285.3,1847.2 1295.2,1820.5 1304.4,1793.5 1313.0,1766.1 1320.8,1738.6 1328.0,1710.8 1334.3,1682.8 1339.8,1654.6 1344.6,1626.2 1348.5,1597.8 1351.5,1569.2 1353.7,1540.5 1355.1,1511.8 1355.6,1483.1 1355.3,1454.3 1354.1,1425.6 1352.0,1396.9 1349.1,1368.3 1345.4,1339.8 1340.9,1311.5 1335.5,1283.3 1329.4,1255.2 1322.6,1227.4 1315.0,1199.8 1306.7,1172.4 1297.7,1145.4 1288.1,1118.6 1277.9,1092.2 1267.2,1066.2 1256.0,1040.5 1244.2,1015.3 1232.1,990.5 1219.6,966.1  Z" style="stroke-width: 0.0;  fill: rgb(66,170,66);" />
+<path d="M 1219.629,966.145 A 603.000,603.000 0.00 0,0 1219.6,966.1 L 1219.6,966.1 1231.6,989.5 1243.1,1013.4 1254.0,1037.7 1264.4,1062.4 1274.1,1087.4 1283.1,1112.7 1291.3,1138.3 1298.7,1164.1 1305.3,1190.1 1310.9,1216.3 1315.6,1242.5 1319.3,1268.9 1322.0,1295.3 1323.7,1321.6 1324.3,1348.0 1323.8,1374.3 1322.3,1400.5 1319.7,1426.5 1316.0,1452.4 1311.2,1478.1 1305.3,1503.6 1298.4,1528.9 1290.4,1553.9 1281.3,1578.6 1271.3,1602.9 1260.2,1626.9 1248.2,1650.6 1235.3,1673.8 1221.4,1696.6 1206.8,1719.0 1191.3,1740.9 1175.1,1762.3 1158.2,1783.2 1140.7,1803.6 1122.6,1823.5 1104.1,1842.7 1085.1,1861.5 1065.8,1879.6 1046.2,1897.1  A 603.000,603.000 0.00 0,0 1068.9,1921.7 L 1068.9,1921.7 1087.6,1903.0 1106.0,1883.7 1124.1,1863.8 1141.8,1843.4 1158.9,1822.4 1175.5,1801.0 1191.5,1779.0 1206.7,1756.6 1221.3,1733.7 1235.1,1710.3 1248.0,1686.6 1260.1,1662.5 1271.3,1638.0 1281.5,1613.1 1290.8,1588.0 1299.1,1562.5 1306.3,1536.8 1312.6,1510.9 1317.8,1484.8 1321.9,1458.4 1325.0,1431.9 1327.1,1405.3 1328.1,1378.7 1328.0,1351.9 1326.9,1325.1 1324.8,1298.3 1321.7,1271.6 1317.7,1244.9 1312.7,1218.3 1306.7,1191.9 1299.9,1165.6 1292.3,1139.6 1283.9,1113.8 1274.7,1088.2 1264.8,1063.0 1254.3,1038.2 1243.3,1013.7 1231.7,989.7 1219.6,966.1  Z" style="stroke-width: 0.0;  fill: rgb(66,170,66);" />
+<path d="M 1219.629,966.145 A 603.000,603.000 0.00 0,0 1219.6,966.1 L 1219.6,966.1 1231.2,988.8 1242.2,1011.9 1252.7,1035.4 1262.5,1059.1 1271.6,1083.2 1279.8,1107.4 1287.2,1131.7 1293.6,1156.2 1299.1,1180.7 1303.5,1205.1 1306.8,1229.5 1309.1,1253.9 1310.2,1278.0 1310.1,1302.0 1308.8,1325.8 1306.3,1349.3 1302.6,1372.5 1297.6,1395.4 1291.4,1417.9 1284.0,1440.1 1275.4,1461.8 1265.6,1483.0 1254.6,1503.8 1242.5,1524.1 1229.2,1543.8 1214.8,1563.1 1199.4,1581.7 1183.0,1599.8 1165.6,1617.3 1147.4,1634.2 1128.3,1650.5 1108.4,1666.1 1087.9,1681.1 1066.7,1695.5 1045.0,1709.2 1022.9,1722.3 1000.4,1734.8 977.7,1746.5 954.8,1757.7  A 603.000,603.000 0.00 0,0 970.0,1787.5 L 970.0,1787.5 992.3,1775.0 1014.5,1761.9 1036.4,1748.2 1058.0,1733.8 1079.1,1718.8 1099.7,1703.1 1119.6,1686.8 1138.8,1670.0 1157.3,1652.5 1175.0,1634.4 1191.8,1615.8 1207.6,1596.6 1222.5,1576.9 1236.3,1556.6 1249.0,1535.8 1260.7,1514.6 1271.1,1492.9 1280.5,1470.8 1288.6,1448.3 1295.6,1425.4 1301.4,1402.1 1305.9,1378.5 1309.3,1354.7 1311.4,1330.5 1312.4,1306.2 1312.2,1281.7 1310.8,1257.0 1308.3,1232.3 1304.8,1207.5 1300.2,1182.6 1294.5,1157.8 1287.9,1133.1 1280.4,1108.5 1272.0,1084.0 1262.9,1059.8 1253.0,1035.8 1242.4,1012.2 1231.3,989.0 1219.6,966.1  Z" style="stroke-width: 0.0;  fill: rgb(66,170,66);" />
+<path d="M 1219.629,966.145 A 603.000,603.000 0.00 0,0 1219.6,966.1 L 1219.6,966.1 1230.9,988.2 1241.6,1010.5 1251.7,1033.2 1261.1,1056.0 1269.8,1078.9 1277.6,1101.9 1284.4,1124.9 1290.3,1147.7 1295.1,1170.4 1298.8,1192.9 1301.4,1215.2 1302.8,1237.1 1302.9,1258.7 1301.8,1279.8 1299.5,1300.5 1295.8,1320.7 1290.8,1340.4 1284.6,1359.5 1277.0,1378.0 1268.1,1395.8 1257.9,1413.0 1246.5,1429.5 1233.8,1445.4 1219.9,1460.5 1204.8,1474.8 1188.6,1488.5 1171.4,1501.4 1153.0,1513.5 1133.8,1524.9 1113.6,1535.5 1092.5,1545.4 1070.8,1554.5 1048.3,1562.9 1025.3,1570.5 1001.8,1577.5 977.9,1583.7 953.8,1589.3 929.5,1594.3 905.1,1598.6  A 603.000,603.000 0.00 0,0 911.5,1631.4 L 911.5,1631.4 935.7,1625.7 959.8,1619.4 983.8,1612.4 1007.5,1604.7 1030.8,1596.4 1053.6,1587.4 1075.8,1577.6 1097.3,1567.2 1118.1,1556.0 1138.0,1544.1 1157.1,1531.4 1175.2,1518.1 1192.2,1504.0 1208.2,1489.2 1223.0,1473.7 1236.7,1457.5 1249.1,1440.6 1260.3,1423.1 1270.3,1405.0 1279.0,1386.2 1286.4,1366.9 1292.5,1347.0 1297.3,1326.6 1300.8,1305.7 1303.0,1284.4 1304.0,1262.7 1303.7,1240.6 1302.2,1218.1 1299.5,1195.4 1295.7,1172.5 1290.8,1149.4 1284.9,1126.2 1277.9,1103.0 1270.1,1079.8 1261.4,1056.6 1251.9,1033.6 1241.7,1010.8 1230.9,988.3 1219.6,966.1  Z" style="stroke-width: 0.0;  fill: rgb(66,170,66);" />
+<path d="M 1219.629,966.145 A 603.000,603.000 0.00 0,0 1219.6,966.1 L 1219.6,966.1 1230.6,987.6 1241.1,1009.3 1251.1,1031.2 1260.3,1053.1 1268.8,1074.9 1276.4,1096.6 1283.2,1118.1 1288.9,1139.3 1293.6,1160.2 1297.2,1180.6 1299.6,1200.5 1300.9,1219.8 1300.9,1238.6 1299.7,1256.6 1297.1,1274.0 1293.3,1290.6 1288.2,1306.4 1281.7,1321.4 1273.9,1335.6 1264.9,1348.8 1254.5,1361.2 1242.9,1372.6 1230.0,1383.2 1215.9,1392.7 1200.6,1401.4 1184.2,1409.1 1166.7,1415.8 1148.3,1421.7 1128.8,1426.6 1108.5,1430.7 1087.4,1433.8 1065.5,1436.2 1043.1,1437.7 1020.1,1438.4 996.6,1438.4 972.9,1437.7 948.9,1436.4 924.9,1434.4 900.9,1432.0  A 603.000,603.000 0.00 0,0 898.0,1465.3 L 898.0,1465.3 922.2,1466.4 946.5,1467.0 970.6,1467.0 994.5,1466.3 1018.1,1464.9 1041.3,1462.8 1063.9,1459.9 1085.9,1456.2 1107.1,1451.7 1127.6,1446.4 1147.1,1440.1 1165.7,1433.0 1183.3,1425.0 1199.8,1416.1 1215.2,1406.4 1229.3,1395.7 1242.3,1384.1 1254.0,1371.6 1264.5,1358.3 1273.6,1344.1 1281.4,1329.1 1287.9,1313.2 1293.1,1296.6 1297.0,1279.3 1299.6,1261.3 1300.9,1242.6 1300.9,1223.3 1299.7,1203.4 1297.3,1183.0 1293.7,1162.2 1289.0,1141.0 1283.3,1119.4 1276.6,1097.7 1268.9,1075.7 1260.4,1053.6 1251.2,1031.6 1241.2,1009.6 1230.7,987.7 1219.6,966.1  Z" style="stroke-width: 0.0;  fill: rgb(66,170,66);" />
+<path d="M 1219.629,966.145 A 603.000,603.000 0.00 0,0 1219.6,966.1 L 1219.6,966.1 1230.5,987.2 1240.9,1008.3 1250.8,1029.5 1260.1,1050.5 1268.7,1071.4 1276.5,1091.9 1283.5,1111.9 1289.6,1131.5 1294.7,1150.5 1298.8,1168.9 1301.7,1186.5 1303.6,1203.3 1304.3,1219.2 1303.8,1234.2 1302.1,1248.3 1299.1,1261.4 1294.9,1273.4 1289.5,1284.3 1282.8,1294.2 1274.9,1302.9 1265.7,1310.5 1255.3,1316.9 1243.7,1322.2 1231.0,1326.4 1217.1,1329.4 1202.2,1331.3 1186.3,1332.1 1169.4,1331.8 1151.6,1330.4 1132.9,1328.1 1113.6,1324.8 1093.5,1320.6 1072.8,1315.5 1051.7,1309.6 1030.2,1302.9 1008.3,1295.6 986.4,1287.7 964.3,1279.3 942.4,1270.5  A 603.000,603.000 0.00 0,0 930.5,1301.8 L 930.5,1301.8 953.0,1309.4 975.6,1316.6 998.1,1323.2 1020.4,1329.2 1042.5,1334.6 1064.1,1339.2 1085.3,1343.0 1105.9,1346.0 1125.7,1348.0 1144.8,1349.1 1163.1,1349.2 1180.5,1348.3 1196.9,1346.4 1212.2,1343.4 1226.5,1339.3 1239.6,1334.1 1251.5,1327.7 1262.3,1320.3 1271.8,1311.8 1280.1,1302.2 1287.1,1291.5 1292.8,1279.8 1297.3,1267.0 1300.5,1253.3 1302.5,1238.6 1303.2,1222.9 1302.7,1206.5 1301.0,1189.2 1298.2,1171.1 1294.3,1152.4 1289.3,1133.0 1283.3,1113.1 1276.4,1092.8 1268.6,1072.0 1260.1,1051.0 1250.8,1029.8 1240.9,1008.5 1230.5,987.3 1219.6,966.1  Z" style="stroke-width: 0.0;  fill: rgb(66,170,66);" />
+<path d="M 1219.629,966.145 A 603.000,603.000 0.00 0,0 1219.6,966.1 L 1219.6,966.1 1230.4,986.9 1240.8,1007.6 1250.9,1028.2 1260.4,1048.5 1269.4,1068.4 1277.8,1087.9 1285.4,1106.7 1292.2,1124.9 1298.2,1142.2 1303.3,1158.7 1307.5,1174.2 1310.7,1188.7 1312.8,1202.2 1313.9,1214.4 1313.9,1225.5 1312.9,1235.4 1310.7,1243.9 1307.3,1251.2 1302.9,1257.2 1297.4,1261.8 1290.7,1265.1 1282.9,1267.0 1274.1,1267.6 1264.2,1266.8 1253.3,1264.8 1241.5,1261.5 1228.7,1256.9 1215.0,1251.1 1200.5,1244.2 1185.2,1236.1 1169.3,1227.1 1152.7,1217.0 1135.5,1206.1 1118.0,1194.3 1100.0,1181.8 1081.8,1168.7 1063.4,1155.0 1044.9,1141.0 1026.5,1126.6  A 603.000,603.000 0.00 0,0 1006.5,1153.4 L 1006.5,1153.4 1025.8,1166.8 1045.1,1179.8 1064.3,1192.4 1083.3,1204.4 1102.1,1215.8 1120.6,1226.5 1138.5,1236.3 1155.9,1245.3 1172.7,1253.3 1188.8,1260.3 1204.0,1266.2 1218.5,1270.9 1232.0,1274.5 1244.6,1276.8 1256.2,1277.9 1266.8,1277.8 1276.3,1276.3 1284.7,1273.5 1291.9,1269.4 1298.0,1264.1 1303.0,1257.4 1306.9,1249.4 1309.5,1240.2 1311.1,1229.7 1311.5,1218.1 1310.7,1205.3 1308.9,1191.4 1306.1,1176.5 1302.2,1160.6 1297.3,1143.7 1291.6,1126.1 1284.9,1107.7 1277.4,1088.6 1269.2,1069.0 1260.3,1048.9 1250.8,1028.4 1240.8,1007.7 1230.4,986.9 1219.6,966.1  Z" style="stroke-width: 0.0;  fill: rgb(66,170,66);" />
+</g>
+<g id="plot0">
+<g id="plot0-axis">
+</g>
+<path d="M1500.126,367.697 A1132.303,1132.303 40.000 0,1 1502.387,367.700 L1502.322,398.240 A1101.762,1101.762 0.000 0,0 1500.122,398.238 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1500.12,398.24 L 1500.13,367.70 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1500.12,398.24 A1101.76,1101.76 0.00 0,1 1502.32,398.24" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1512.686,367.768 A1132.303,1132.303 40.000 0,1 1514.947,367.796 L1514.251,420.463 A1079.632,1079.632 0.000 0,0 1512.096,420.436 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1502.32,398.24 L 1502.39,367.70 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1512.10,420.44 L 1512.69,367.77 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1512.10,420.44 A1079.63,1079.63 0.00 0,1 1514.25,420.46" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1525.245,367.979 A1132.303,1132.303 40.000 0,1 1527.505,368.031 L1526.040,428.312 A1072.004,1072.004 0.000 0,0 1523.901,428.262 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1514.25,420.46 L 1514.95,367.80 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1523.90,428.26 L 1525.24,367.98 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1523.90,428.26 A1072.00,1072.00 0.00 0,1 1526.04,428.31" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1537.801,368.329 A1132.303,1132.303 40.000 0,1 1540.060,368.406 L1538.244,419.696 A1080.981,1080.981 0.000 0,0 1536.087,419.621 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1526.04,428.31 L 1527.51,368.03 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1536.09,419.62 L 1537.80,368.33 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1536.09,419.62 A1080.98,1080.98 0.00 0,1 1538.24,419.70" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1550.352,368.817 A1132.303,1132.303 40.000 0,1 1552.610,368.920 L1551.299,397.102 A1104.090,1104.090 0.000 0,0 1549.097,397.002 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1538.24,419.70 L 1540.06,368.41 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1549.10,397.00 L 1550.35,368.82 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1549.10,397.00 A1104.09,1104.09 0.00 0,1 1551.30,397.10" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1562.897,369.446 A1132.303,1132.303 40.000 0,1 1565.154,369.573 L1565.307,366.913 A1134.967,1134.967 0.000 0,0 1563.045,366.785 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1551.30,397.10 L 1552.61,368.92 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1563.04,366.78 L 1562.90,369.45 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1563.04,366.78 A1134.97,1134.97 0.00 0,1 1565.31,366.91" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1575.434,370.213 A1132.303,1132.303 40.000 0,1 1577.689,370.366 L1579.941,337.635 A1165.111,1165.111 0.000 0,0 1577.619,337.477 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1565.31,366.91 L 1565.15,369.57 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1577.62,337.48 L 1575.43,370.21 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1577.62,337.48 A1165.11,1165.11 0.00 0,1 1579.94,337.63" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1587.962,371.119 A1132.303,1132.303 40.000 0,1 1590.216,371.297 L1594.511,317.551 A1186.221,1186.221 0.000 0,0 1592.150,317.364 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1579.94,337.63 L 1577.69,370.37 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1592.15,317.36 L 1587.96,371.12 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1592.15,317.36 A1186.22,1186.22 0.00 0,1 1594.51,317.55" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1600.479,372.164 A1132.303,1132.303 40.000 0,1 1602.730,372.367 L1608.190,312.435 A1192.483,1192.483 0.000 0,0 1605.819,312.221 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1594.51,317.55 L 1590.22,371.30 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1605.82,312.22 L 1600.48,372.16 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1605.82,312.22 A1192.48,1192.48 0.00 0,1 1608.19,312.43" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1612.983,373.348 A1132.303,1132.303 40.000 0,1 1615.233,373.576 L1620.308,323.964 A1182.174,1182.174 0.000 0,0 1617.960,323.726 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1608.19,312.43 L 1602.73,372.37 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1617.96,323.73 L 1612.98,373.35 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1617.96,323.73 A1182.17,1182.17 0.00 0,1 1620.31,323.96" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1625.474,374.671 A1132.303,1132.303 40.000 0,1 1627.721,374.924 L1630.634,349.259 A1158.132,1158.132 0.000 0,0 1628.336,349.000 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1620.31,323.96 L 1615.23,373.58 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1628.34,349.00 L 1625.47,374.67 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1628.34,349.00 A1158.13,1158.13 0.00 0,1 1630.63,349.26" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1637.949,376.132 A1132.303,1132.303 40.000 0,1 1640.193,376.410 L1639.534,381.693 A1126.978,1126.978 0.000 0,0 1637.301,381.417 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1630.63,349.26 L 1627.72,374.92 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1637.30,381.42 L 1637.95,376.13 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1637.30,381.42 A1126.98,1126.98 0.00 0,1 1639.53,381.69" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1650.408,377.731 A1132.303,1132.303 40.000 0,1 1652.648,378.034 L1647.928,412.727 A1097.290,1097.290 0.000 0,0 1645.757,412.434 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1639.53,381.69 L 1640.19,376.41 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1645.76,412.43 L 1650.41,377.73 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1645.76,412.43 A1097.29,1097.29 0.00 0,1 1647.93,412.73" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1662.848,379.469 A1132.303,1132.303 40.000 0,1 1665.085,379.796 L1657.057,434.267 A1077.243,1077.243 0.000 0,0 1654.929,433.956 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1647.93,412.73 L 1652.65,378.03 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1654.93,433.96 L 1662.85,379.47 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1654.93,433.96 A1077.24,1077.24 0.00 0,1 1657.06,434.27" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1675.268,381.344 A1132.303,1132.303 40.000 0,1 1677.501,381.697 L1668.104,440.901 A1072.357,1072.357 0.000 0,0 1665.989,440.567 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1657.06,434.27 L 1665.08,379.80 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1665.99,440.57 L 1675.27,381.34 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1665.99,440.57 A1072.36,1072.36 0.00 0,1 1668.10,440.90" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1687.666,383.357 A1132.303,1132.303 40.000 0,1 1689.895,383.734 L1681.791,431.374 A1083.978,1083.978 0.000 0,0 1679.657,431.013 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1668.10,440.90 L 1677.50,381.70 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1679.66,431.01 L 1687.67,383.36 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1679.66,431.01 A1083.98,1083.98 0.00 0,1 1681.79,431.37" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1700.041,385.508 A1132.303,1132.303 40.000 0,1 1702.266,385.909 L1698.086,408.930 A1108.906,1108.906 0.000 0,0 1695.908,408.536 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1681.79,431.37 L 1689.90,383.73 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1695.91,408.54 L 1700.04,385.51 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1695.91,408.54 A1108.91,1108.91 0.00 0,1 1698.09,408.93" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1712.391,387.795 A1132.303,1132.303 40.000 0,1 1714.612,388.222 L1716.123,380.393 A1140.276,1140.276 0.000 0,0 1713.887,379.963 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1698.09,408.93 L 1702.27,385.91 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1713.89,379.96 L 1712.39,387.80 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1713.89,379.96 A1140.28,1140.28 0.00 0,1 1716.12,380.39" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1724.716,390.220 A1132.303,1132.303 40.000 0,1 1726.931,390.671 L1734.376,354.276 A1169.451,1169.451 0.000 0,0 1732.088,353.811 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1716.12,380.39 L 1714.61,388.22 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1732.09,353.81 L 1724.72,390.22 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1732.09,353.81 A1169.45,1169.45 0.00 0,1 1734.38,354.28" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1737.013,392.781 A1132.303,1132.303 40.000 0,1 1739.223,393.256 L1751.074,338.429 A1188.396,1188.396 0.000 0,0 1748.754,337.930 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1734.38,354.28 L 1726.93,390.67 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1748.75,337.93 L 1737.01,392.78 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1748.75,337.93 A1188.40,1188.40 0.00 0,1 1751.07,338.43" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1749.280,395.478 A1132.303,1132.303 40.000 0,1 1751.485,395.978 L1764.721,337.874 A1191.895,1191.895 0.000 0,0 1762.400,337.347 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1751.07,338.43 L 1739.22,393.26 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1762.40,337.35 L 1749.28,395.48 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1762.40,337.35 A1191.90,1191.90 0.00 0,1 1764.72,337.87" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1761.517,398.311 A1132.303,1132.303 40.000 0,1 1763.716,398.836 L1774.589,353.437 A1178.985,1178.985 0.000 0,0 1772.299,352.891 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1764.72,337.87 L 1751.49,395.98 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1772.30,352.89 L 1761.52,398.31 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1772.30,352.89 A1178.99,1178.99 0.00 0,1 1774.59,353.44" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1773.722,401.280 A1132.303,1132.303 40.000 0,1 1775.915,401.829 L1781.012,381.542 A1153.220,1153.220 0.000 0,0 1778.778,380.983 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1774.59,353.44 L 1763.72,398.84 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1778.78,380.98 L 1773.72,401.28 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1778.78,380.98 A1153.22,1153.22 0.00 0,1 1781.01,381.54" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1785.893,404.384 A1132.303,1132.303 40.000 0,1 1788.080,404.957 L1785.381,415.215 A1121.696,1121.696 0.000 0,0 1783.215,414.647 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1781.01,381.54 L 1775.92,401.83 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1783.21,414.65 L 1785.89,404.38 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1783.21,414.65 A1121.70,1121.70 0.00 0,1 1785.38,415.22" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1798.029,407.623 A1132.303,1132.303 40.000 0,1 1800.209,408.220 L1789.813,446.028 A1093.092,1093.092 0.000 0,0 1787.708,445.451 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1785.38,415.22 L 1788.08,404.96 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1787.71,445.45 L 1798.03,407.62 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1787.71,445.45 A1093.09,1093.09 0.00 0,1 1789.81,446.03" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1810.128,410.996 A1132.303,1132.303 40.000 0,1 1812.302,411.617 L1796.576,466.424 A1075.285,1075.285 0.000 0,0 1794.511,465.833 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1789.81,446.03 L 1800.21,408.22 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1794.51,465.83 L 1810.13,411.00 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1794.51,465.83 A1075.28,1075.28 0.00 0,1 1796.58,466.42" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1822.189,414.503 A1132.303,1132.303 40.000 0,1 1824.356,415.149 L1807.419,471.795 A1073.179,1073.179 0.000 0,0 1805.366,471.183 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1796.58,466.42 L 1812.30,411.62 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1805.37,471.18 L 1822.19,414.50 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1805.37,471.18 A1073.18,1073.18 0.00 0,1 1807.42,471.79" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1834.210,418.144 A1132.303,1132.303 40.000 0,1 1836.370,418.813 L1823.017,461.734 A1087.353,1087.353 0.000 0,0 1820.943,461.091 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1807.42,471.79 L 1824.36,415.15 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1820.94,461.09 L 1834.21,418.14 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1820.94,461.09 A1087.35,1087.35 0.00 0,1 1823.02,461.73" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1846.191,421.918 A1132.303,1132.303 40.000 0,1 1848.343,422.611 L1842.683,440.117 A1113.905,1113.905 0.000 0,0 1840.566,439.435 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1823.02,461.73 L 1836.37,418.81 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1840.57,439.43 L 1846.19,421.92 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1840.57,439.43 A1113.90,1113.90 0.00 0,1 1842.68,440.12" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1858.128,425.824 A1132.303,1132.303 40.000 0,1 1860.272,426.542 L1864.479,414.009 A1145.523,1145.523 0.000 0,0 1862.310,413.283 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1842.68,440.12 L 1848.34,422.61 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1862.31,413.28 L 1858.13,425.82 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1862.31,413.28 A1145.52,1145.52 0.00 0,1 1864.48,414.01" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1870.022,429.863 A1132.303,1132.303 40.000 0,1 1872.158,430.604 L1885.699,391.695 A1173.500,1173.500 0.000 0,0 1883.485,390.927 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1864.48,414.01 L 1860.27,426.54 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1883.48,390.93 L 1870.02,429.86 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1883.48,390.93 A1173.50,1173.50 0.00 0,1 1885.70,391.70" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1881.870,434.034 A1132.303,1132.303 40.000 0,1 1883.998,434.798 L1903.610,380.394 A1190.133,1190.133 0.000 0,0 1901.373,379.591 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1885.70,391.70 L 1872.16,430.60 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1901.37,379.59 L 1881.87,434.03 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1901.37,379.59 A1190.13,1190.13 0.00 0,1 1903.61,380.39" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1893.671,438.335 A1132.303,1132.303 40.000 0,1 1895.790,439.123 L1916.252,384.276 A1190.842,1190.842 0.000 0,0 1914.024,383.447 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1903.61,380.39 L 1884.00,434.80 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1914.02,383.45 L 1893.67,438.34 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1914.02,383.45 A1190.84,1190.84 0.00 0,1 1916.25,384.28" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1905.424,442.767 A1132.303,1132.303 40.000 0,1 1907.534,443.579 L1923.057,403.340 A1175.432,1175.432 0.000 0,0 1920.866,402.498 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1916.25,384.28 L 1895.79,439.12 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1920.87,402.50 L 1905.42,442.77 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1920.87,402.50 A1175.43,1175.43 0.00 0,1 1923.06,403.34" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1917.126,447.330 A1132.303,1132.303 40.000 0,1 1919.228,448.165 L1925.093,433.448 A1148.145,1148.145 0.000 0,0 1922.962,432.602 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1923.06,403.34 L 1907.53,443.58 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1922.96,432.60 L 1917.13,447.33 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1922.96,432.60 A1148.14,1148.14 0.00 0,1 1925.09,433.45" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1928.778,452.022 A1132.303,1132.303 40.000 0,1 1930.870,452.880 L1924.855,467.498 A1116.496,1116.496 0.000 0,0 1922.792,466.651 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1925.09,433.45 L 1919.23,448.16 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1922.79,466.65 L 1928.78,452.02 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1922.79,466.65 A1116.50,1116.50 0.00 0,1 1924.85,467.50" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1940.376,456.842 A1132.303,1132.303 40.000 0,1 1942.459,457.724 L1925.615,497.400 A1089.199,1089.199 0.000 0,0 1923.613,496.552 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1924.85,467.50 L 1930.87,452.88 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1923.61,496.55 L 1940.38,456.84 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1923.61,496.55 A1089.20,1089.20 0.00 0,1 1925.62,497.40" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1951.921,461.792 A1132.303,1132.303 40.000 0,1 1953.993,462.696 L1930.525,516.316 A1073.772,1073.772 0.000 0,0 1928.560,515.459 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1925.62,497.40 L 1942.46,457.72 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1928.56,515.46 L 1951.92,461.79 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1928.56,515.46 A1073.77,1073.77 0.00 0,1 1930.53,516.32" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1963.410,466.869 A1132.303,1132.303 40.000 0,1 1965.472,467.796 L1941.694,520.524 A1074.461,1074.461 0.000 0,0 1939.737,519.644 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1930.53,516.32 L 1953.99,462.70 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1939.74,519.64 L 1963.41,466.87 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1939.74,519.64 A1074.46,1074.46 0.00 0,1 1941.69,520.52" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1974.842,472.073 A1132.303,1132.303 40.000 0,1 1976.893,473.023 L1959.531,510.412 A1091.079,1091.079 0.000 0,0 1957.554,509.497 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1941.69,520.52 L 1965.47,467.80 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1957.55,509.50 L 1974.84,472.07 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1957.55,509.50 A1091.08,1091.08 0.00 0,1 1959.53,510.41" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1986.215,477.403 A1132.303,1132.303 40.000 0,1 1988.256,478.376 L1982.540,490.336 A1119.047,1119.047 0.000 0,0 1980.523,489.374 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1959.53,510.41 L 1976.89,473.02 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1980.52,489.37 L 1986.21,477.40 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1980.52,489.37 A1119.05,1119.05 0.00 0,1 1982.54,490.34" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1997.529,482.860 A1132.303,1132.303 40.000 0,1 1999.559,483.855 L2007.660,467.376 A1150.666,1150.666 0.000 0,0 2005.597,466.364 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1982.54,490.34 L 1988.26,478.38 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2005.60,466.36 L 1997.53,482.86 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2005.60,466.36 A1150.67,1150.67 0.00 0,1 2007.66,467.38" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2008.781,488.441 A1132.303,1132.303 40.000 0,1 2010.800,489.459 L2031.066,449.365 A1177.228,1177.228 0.000 0,0 2028.967,448.306 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2007.66,467.38 L 1999.56,483.86 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2028.97,448.31 L 2008.78,488.44 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2028.97,448.31 A1177.23,1177.23 0.00 0,1 2031.07,449.36" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2019.971,494.147 A1132.303,1132.303 40.000 0,1 2021.978,495.187 L2049.230,442.727 A1191.419,1191.419 0.000 0,0 2047.118,441.632 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2031.07,449.36 L 2010.80,489.46 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2047.12,441.63 L 2019.97,494.15 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2047.12,441.63 A1191.42,1191.42 0.00 0,1 2049.23,442.73" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2031.096,499.977 A1132.303,1132.303 40.000 0,1 2033.092,501.040 L2059.942,450.726 A1189.332,1189.332 0.000 0,0 2057.846,449.610 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2049.23,442.73 L 2021.98,495.19 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2057.85,449.61 L 2031.10,499.98 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2057.85,449.61 A1189.33,1189.33 0.00 0,1 2059.94,450.73" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2042.157,505.930 A1132.303,1132.303 40.000 0,1 2044.141,507.014 L2062.997,472.604 A1171.541,1171.541 0.000 0,0 2060.945,471.482 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2059.94,450.73 L 2033.09,501.04 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2060.94,471.48 L 2042.16,505.93 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2060.94,471.48 A1171.54,1171.54 0.00 0,1 2063.00,472.60" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2053.150,512.005 A1132.303,1132.303 40.000 0,1 2055.122,513.112 L2060.340,503.835 A1142.946,1142.946 0.000 0,0 2058.350,502.719 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2063.00,472.60 L 2044.14,507.01 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2058.35,502.72 L 2053.15,512.01 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2058.35,502.72 A1142.95,1142.95 0.00 0,1 2060.34,503.84" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2064.076,518.202 A1132.303,1132.303 40.000 0,1 2066.035,519.330 L2055.596,537.417 A1111.419,1111.419 0.000 0,0 2053.672,536.310 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2060.34,503.84 L 2055.12,513.11 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2053.67,536.31 L 2064.08,518.20 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2053.67,536.31 A1111.42,1111.42 0.00 0,1 2055.60,537.42" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2074.932,524.520 A1132.303,1132.303 40.000 0,1 2076.879,525.669 L2053.107,565.819 A1085.643,1085.643 0.000 0,0 2051.241,564.717 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2055.60,537.42 L 2066.04,519.33 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2051.24,564.72 L 2074.93,524.52 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2051.24,564.72 A1085.64,1085.64 0.00 0,1 2053.11,565.82" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2085.718,530.957 A1132.303,1132.303 40.000 0,1 2087.651,532.129 L2056.726,583.063 A1072.715,1072.715 0.000 0,0 2054.894,581.953 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2053.11,565.82 L 2076.88,525.67 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2054.89,581.95 L 2085.72,530.96 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2054.89,581.95 A1072.72,1072.72 0.00 0,1 2056.73,583.06" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2096.431,537.514 A1132.303,1132.303 40.000 0,1 2098.352,538.707 L2068.703,586.340 A1076.196,1076.196 0.000 0,0 2066.877,585.206 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2056.73,583.06 L 2087.65,532.13 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2066.88,585.21 L 2096.43,537.51 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2066.88,585.21 A1076.20,1076.20 0.00 0,1 2068.70,586.34" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2107.071,544.189 A1132.303,1132.303 40.000 0,1 2108.978,545.403 L2088.984,576.745 A1095.126,1095.126 0.000 0,0 2087.139,575.571 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2068.70,586.34 L 2098.35,538.71 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2087.14,575.57 L 2107.07,544.19 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2087.14,575.57 A1095.13,1095.13 0.00 0,1 2088.98,576.75" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2117.636,550.982 A1132.303,1132.303 40.000 0,1 2119.530,552.217 L2115.148,558.922 A1124.293,1124.293 0.000 0,0 2113.267,557.695 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2088.98,576.75 L 2108.98,545.40 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2113.27,557.70 L 2117.64,550.98 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2113.27,557.70 A1124.29,1124.29 0.00 0,1 2115.15,558.92" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2128.126,557.892 A1132.303,1132.303 40.000 0,1 2130.005,559.148 L2143.005,539.735 A1155.666,1155.666 0.000 0,0 2141.086,538.453 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2115.15,558.92 L 2119.53,552.22 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2141.09,538.45 L 2128.13,557.89 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2141.09,538.45 A1155.67,1155.67 0.00 0,1 2143.00,539.74" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2138.538,564.918 A1132.303,1132.303 40.000 0,1 2140.403,566.194 L2167.722,526.360 A1180.605,1180.605 0.000 0,0 2165.777,525.028 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2143.00,539.74 L 2130.01,559.15 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2165.78,525.03 L 2138.54,564.92 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2165.78,525.03 A1180.61,1180.61 0.00 0,1 2167.72,526.36" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2148.871,572.058 A1132.303,1132.303 40.000 0,1 2150.722,573.356 L2185.170,524.302 A1192.244,1192.244 0.000 0,0 2183.220,522.936 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2167.72,526.36 L 2140.40,566.19 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2183.22,522.94 L 2148.87,572.06 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2183.22,522.94 A1192.24,1192.24 0.00 0,1 2185.17,524.30" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2159.124,579.313 A1132.303,1132.303 40.000 0,1 2160.962,580.631 L2193.110,535.914 A1187.377,1187.377 0.000 0,0 2191.184,534.532 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2185.17,524.30 L 2150.72,573.36 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2191.18,534.53 L 2159.12,579.31 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2191.18,534.53 A1187.38,1187.38 0.00 0,1 2193.11,535.91" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2169.297,586.681 A1132.303,1132.303 40.000 0,1 2171.119,588.020 L2191.889,559.796 A1167.345,1167.345 0.000 0,0 2190.010,558.416 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2193.11,535.91 L 2160.96,580.63 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2190.01,558.42 L 2169.30,586.68 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2190.01,558.42 A1167.34,1167.34 0.00 0,1 2191.89,559.80" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2179.387,594.162 A1132.303,1132.303 40.000 0,1 2181.194,595.520 L2184.419,591.238 A1137.663,1137.663 0.000 0,0 2182.603,589.874 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2191.89,559.80 L 2171.12,588.02 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2182.60,589.87 L 2179.39,594.16 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2182.60,589.87 A1137.66,1137.66 0.00 0,1 2184.42,591.24" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2189.394,601.754 A1132.303,1132.303 40.000 0,1 2191.186,603.132 L2175.439,623.566 A1106.506,1106.506 0.000 0,0 2173.687,622.219 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2184.42,591.24 L 2181.19,595.52 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2173.69,622.22 L 2189.39,601.75 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2173.69,622.22 A1106.51,1106.51 0.00 0,1 2175.44,623.57" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2199.315,609.457 A1132.303,1132.303 40.000 0,1 2201.092,610.855 L2170.225,650.000 A1082.452,1082.452 0.000 0,0 2168.527,648.664 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2175.44,623.57 L 2191.19,603.13 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2168.53,648.66 L 2199.32,609.46 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2168.53,648.66 A1082.45,1082.45 0.00 0,1 2170.23,650.00" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2209.151,617.269 A1132.303,1132.303 40.000 0,1 2210.912,618.687 L2173.129,665.525 A1072.125,1072.125 0.000 0,0 2171.462,664.183 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2170.23,650.00 L 2201.09,610.85 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2171.46,664.18 L 2209.15,617.27 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2171.46,664.18 A1072.12,1072.12 0.00 0,1 2173.13,665.53" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2218.899,625.190 A1132.303,1132.303 40.000 0,1 2220.644,626.627 L2186.318,668.228 A1078.368,1078.368 0.000 0,0 2184.656,666.859 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2173.13,665.53 L 2210.91,618.69 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2184.66,666.86 L 2218.90,625.19 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2184.66,666.86 A1078.37,1078.37 0.00 0,1 2186.32,668.23" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2228.559,633.218 A1132.303,1132.303 40.000 0,1 2230.288,634.674 L2209.108,659.771 A1099.464,1099.464 0.000 0,0 2207.429,658.356 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2186.32,668.23 L 2220.64,626.63 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2207.43,658.36 L 2228.56,633.22 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2207.43,658.36 A1099.46,1099.46 0.00 0,1 2209.11,659.77" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2238.129,641.353 A1132.303,1132.303 40.000 0,1 2239.842,642.829 L2238.077,644.873 A1129.602,1129.602 0.000 0,0 2236.368,643.401 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2209.11,659.77 L 2230.29,634.67 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2236.37,643.40 L 2238.13,641.35 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2236.37,643.40 A1129.60,1129.60 0.00 0,1 2238.08,644.87" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2247.609,649.594 A1132.303,1132.303 40.000 0,1 2249.305,651.088 L2267.954,629.961 A1160.483,1160.483 0.000 0,0 2266.215,628.429 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2238.08,644.87 L 2239.84,642.83 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2266.21,628.43 L 2247.61,649.59 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2266.21,628.43 A1160.48,1160.48 0.00 0,1 2267.95,629.96" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2256.996,657.939 A1132.303,1132.303 40.000 0,1 2258.676,659.452 L2293.050,621.369 A1183.605,1183.605 0.000 0,0 2291.294,619.787 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2267.95,629.96 L 2249.31,651.09 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2291.29,619.79 L 2257.00,657.94 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2291.29,619.79 A1183.60,1183.60 0.00 0,1 2293.05,621.37" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2266.290,666.388 A1132.303,1132.303 40.000 0,1 2267.953,667.920 L2308.848,623.610 A1192.600,1192.600 0.000 0,0 2307.097,621.997 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2293.05,621.37 L 2258.68,659.45 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2307.10,622.00 L 2266.29,666.39 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2307.10,622.00 A1192.60,1192.60 0.00 0,1 2308.85,623.61" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2275.490,674.940 A1132.303,1132.303 40.000 0,1 2277.136,676.490 L2313.298,638.170 A1184.991,1184.991 0.000 0,0 2311.576,636.548 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2308.85,623.61 L 2267.95,667.92 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2311.58,636.55 L 2275.49,674.94 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2311.58,636.55 A1184.99,1184.99 0.00 0,1 2313.30,638.17" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2284.595,683.593 A1132.303,1132.303 40.000 0,1 2286.223,685.161 L2307.451,663.161 A1162.874,1162.874 0.000 0,0 2305.778,661.550 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2313.30,638.17 L 2277.14,676.49 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2305.78,661.55 L 2284.59,683.59 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2305.78,661.55 A1162.87,1162.87 0.00 0,1 2307.45,663.16" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2293.603,692.347 A1132.303,1132.303 40.000 0,1 2295.214,693.933 L2295.239,693.907 A1132.339,1132.339 0.000 0,0 2293.628,692.321 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2307.45,663.16 L 2286.22,685.16 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2293.63,692.32 L 2293.60,692.35 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2293.63,692.32 A1132.34,1132.34 0.00 0,1 2295.24,693.91" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2302.513,701.200 A1132.303,1132.303 40.000 0,1 2304.106,702.804 L2282.440,724.283 A1101.794,1101.794 0.000 0,0 2280.890,722.723 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2295.24,693.91 L 2295.21,693.93 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2280.89,722.72 L 2302.51,701.20 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2280.89,722.72 A1101.79,1101.79 0.00 0,1 2282.44,724.28" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2311.325,710.151 A1132.303,1132.303 40.000 0,1 2312.900,711.772 L2275.099,748.426 A1079.649,1079.649 0.000 0,0 2273.597,746.880 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2282.44,724.28 L 2304.11,702.80 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2273.60,746.88 L 2311.32,710.15 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2273.60,746.88 A1079.65,1079.65 0.00 0,1 2275.10,748.43" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2320.036,719.199 A1132.303,1132.303 40.000 0,1 2321.594,720.838 L2277.841,762.331 A1072.004,1072.004 0.000 0,0 2276.367,760.780 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2275.10,748.43 L 2312.90,711.77 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2276.37,760.78 L 2320.04,719.20 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2276.37,760.78 A1072.00,1072.00 0.00 0,1 2277.84,762.33" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2328.647,728.344 A1132.303,1132.303 40.000 0,1 2330.186,730.000 L2292.544,764.913 A1080.962,1080.962 0.000 0,0 2291.075,763.332 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2277.84,762.33 L 2321.59,720.84 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2291.07,763.33 L 2328.65,728.34 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2291.07,763.33 A1080.96,1080.96 0.00 0,1 2292.54,764.91" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2337.156,737.583 A1132.303,1132.303 40.000 0,1 2338.677,739.256 L2317.756,758.233 A1104.058,1104.058 0.000 0,0 2316.273,756.602 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2292.54,764.91 L 2330.19,730.00 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2316.27,756.60 L 2337.16,737.58 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2316.27,756.60 A1104.06,1104.06 0.00 0,1 2317.76,758.23" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2345.562,746.917 A1132.303,1132.303 40.000 0,1 2347.064,748.607 L2349.030,746.862 A1134.931,1134.931 0.000 0,0 2347.525,745.169 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2317.76,758.23 L 2338.68,739.26 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2347.52,745.17 L 2345.56,746.92 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2347.52,745.17 A1134.93,1134.93 0.00 0,1 2349.03,746.86" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2353.864,756.343 A1132.303,1132.303 40.000 0,1 2355.347,758.049 L2380.107,736.571 A1165.081,1165.081 0.000 0,0 2378.581,734.815 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2349.03,746.86 L 2347.06,748.61 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2378.58,734.82 L 2353.86,756.34 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2378.58,734.82 A1165.08,1165.08 0.00 0,1 2380.11,736.57" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2362.060,765.860 A1132.303,1132.303 40.000 0,1 2363.524,767.583 L2404.631,732.717 A1186.204,1186.204 0.000 0,0 2403.097,730.913 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2380.11,736.57 L 2355.35,758.05 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2403.10,730.91 L 2362.06,765.86 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2403.10,730.91 A1186.20,1186.20 0.00 0,1 2404.63,732.72" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2370.151,775.468 A1132.303,1132.303 40.000 0,1 2371.596,777.207 L2417.922,738.790 A1192.485,1192.485 0.000 0,0 2416.400,736.959 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2404.63,732.72 L 2363.52,767.58 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2416.40,736.96 L 2370.15,775.47 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2416.40,736.96 A1192.49,1192.49 0.00 0,1 2417.92,738.79" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2378.134,785.165 A1132.303,1132.303 40.000 0,1 2379.560,786.920 L2418.316,755.500 A1182.195,1182.195 0.000 0,0 2416.827,753.668 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2417.92,738.79 L 2371.60,777.21 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2416.83,753.67 L 2378.13,785.17 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2416.83,753.67 A1182.19,1182.19 0.00 0,1 2418.32,755.50" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2386.010,794.950 A1132.303,1132.303 40.000 0,1 2387.416,796.721 L2407.685,780.657 A1158.165,1158.165 0.000 0,0 2406.247,778.846 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2418.32,755.50 L 2379.56,786.92 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2406.25,778.85 L 2386.01,794.95 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2406.25,778.85 A1158.17,1158.17 0.00 0,1 2407.69,780.66" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2393.776,804.822 A1132.303,1132.303 40.000 0,1 2395.163,806.608 L2390.982,809.846 A1127.015,1127.015 0.000 0,0 2389.602,808.068 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2407.69,780.66 L 2387.42,796.72 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2389.60,808.07 L 2393.78,804.82 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2389.60,808.07 A1127.01,1127.01 0.00 0,1 2390.98,809.85" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2401.433,814.779 A1132.303,1132.303 40.000 0,1 2402.799,816.580 L2374.907,837.695 A1097.320,1097.320 0.000 0,0 2373.583,835.949 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2390.98,809.85 L 2395.16,806.61 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2373.58,835.95 L 2401.43,814.78 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2373.58,835.95 A1097.32,1097.32 0.00 0,1 2374.91,837.69" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2408.979,824.821 A1132.303,1132.303 40.000 0,1 2410.325,826.637 L2366.071,859.371 A1077.258,1077.258 0.000 0,0 2364.790,857.643 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2374.91,837.69 L 2402.80,816.58 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2364.79,857.64 L 2408.98,824.82 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2364.79,857.64 A1077.26,1077.26 0.00 0,1 2366.07,859.37" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2416.412,834.945 A1132.303,1132.303 40.000 0,1 2417.738,836.776 L2369.149,871.890 A1072.353,1072.353 0.000 0,0 2367.893,870.156 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2366.07,859.37 L 2410.32,826.64 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2367.89,870.16 L 2416.41,834.95 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2367.89,870.16 A1072.35,1072.35 0.00 0,1 2369.15,871.89" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2423.733,845.152 A1132.303,1132.303 40.000 0,1 2425.039,846.997 L2385.542,874.879 A1083.957,1083.957 0.000 0,0 2384.293,873.112 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2369.15,871.89 L 2417.74,836.78 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2384.29,873.11 L 2423.73,845.15 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2384.29,873.11 A1083.96,1083.96 0.00 0,1 2385.54,874.88" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2430.940,855.439 A1132.303,1132.303 40.000 0,1 2432.226,857.299 L2412.936,870.598 A1108.872,1108.872 0.000 0,0 2411.677,868.776 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2385.54,874.88 L 2425.04,847.00 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2411.68,868.78 L 2430.94,855.44 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2411.68,868.78 A1108.87,1108.87 0.00 0,1 2412.94,870.60" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2438.033,865.805 A1132.303,1132.303 40.000 0,1 2439.298,867.679 L2445.882,863.247 A1140.240,1140.240 0.000 0,0 2444.609,861.359 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2412.94,870.60 L 2432.23,857.30 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2444.61,861.36 L 2438.03,865.81 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2444.61,861.36 A1140.24,1140.24 0.00 0,1 2445.88,863.25" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2445.010,876.250 A1132.303,1132.303 40.000 0,1 2446.254,878.138 L2477.274,857.752 A1169.422,1169.422 0.000 0,0 2475.990,855.802 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2445.88,863.25 L 2439.30,867.68 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2475.99,855.80 L 2445.01,876.25 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2475.99,855.80 A1169.42,1169.42 0.00 0,1 2477.27,857.75" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2451.871,886.771 A1132.303,1132.303 40.000 0,1 2453.094,888.673 L2500.298,858.395 A1188.383,1188.383 0.000 0,0 2499.015,856.399 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2477.27,857.75 L 2446.25,878.14 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2499.02,856.40 L 2451.87,886.77 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2499.02,856.40 A1188.38,1188.38 0.00 0,1 2500.30,858.40" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2458.615,897.368 A1132.303,1132.303 40.000 0,1 2459.817,899.283 L2510.336,867.664 A1191.901,1191.901 0.000 0,0 2509.072,865.648 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2500.30,858.40 L 2453.09,888.67 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2509.07,865.65 L 2458.62,897.37 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2509.07,865.65 A1191.90,1191.90 0.00 0,1 2510.34,867.66" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2465.241,908.038 A1132.303,1132.303 40.000 0,1 2466.421,909.967 L2506.284,885.629 A1179.008,1179.008 0.000 0,0 2505.056,883.621 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2510.34,867.66 L 2459.82,899.28 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2505.06,883.62 L 2465.24,908.04 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2505.06,883.62 A1179.01,1179.01 0.00 0,1 2506.28,885.63" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2471.748,918.782 A1132.303,1132.303 40.000 0,1 2472.907,920.723 L2490.909,910.005 A1153.254,1153.254 0.000 0,0 2489.729,908.027 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2506.28,885.63 L 2466.42,909.97 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2489.73,908.03 L 2471.75,918.78 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2489.73,908.03 A1153.25,1153.25 0.00 0,1 2490.91,910.00" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2478.136,929.597 A1132.303,1132.303 40.000 0,1 2479.273,931.551 L2470.130,936.858 A1121.731,1121.731 0.000 0,0 2469.004,934.923 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2490.91,910.00 L 2472.91,920.72 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2469.00,934.92 L 2478.14,929.60 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2469.00,934.92 A1121.73,1121.73 0.00 0,1 2470.13,936.86" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2484.403,940.483 A1132.303,1132.303 40.000 0,1 2485.518,942.449 L2451.414,961.743 A1093.119,1093.119 0.000 0,0 2450.338,959.845 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2470.13,936.86 L 2479.27,931.55 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2450.34,959.84 L 2484.40,940.48 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2450.34,959.84 A1093.12,1093.12 0.00 0,1 2451.41,961.74" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2490.549,951.437 A1132.303,1132.303 40.000 0,1 2491.643,953.416 L2441.718,980.934 A1075.297,1075.297 0.000 0,0 2440.680,979.054 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2451.41,961.74 L 2485.52,942.45 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2440.68,979.05 L 2490.55,951.44 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2440.68,979.05 A1075.30,1075.30 0.00 0,1 2441.72,980.93" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2496.573,962.458 A1132.303,1132.303 40.000 0,1 2497.645,964.449 L2445.546,992.417 A1073.171,1073.171 0.000 0,0 2444.530,990.530 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2441.72,980.93 L 2491.64,953.42 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2444.53,990.53 L 2496.57,962.46 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2444.53,990.53 A1073.17,1073.17 0.00 0,1 2445.55,992.42" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2502.475,973.546 A1132.303,1132.303 40.000 0,1 2503.524,975.549 L2463.665,996.380 A1087.329,1087.329 0.000 0,0 2462.658,994.457 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2445.55,992.42 L 2497.64,964.45 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2462.66,994.46 L 2502.47,973.55 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2462.66,994.46 A1087.33,1087.33 0.00 0,1 2463.67,996.38" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2508.253,984.699 A1132.303,1132.303 40.000 0,1 2509.280,986.713 L2492.850,995.069 A1113.870,1113.870 0.000 0,0 2491.840,993.087 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2463.67,996.38 L 2503.52,975.55 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2491.84,993.09 L 2508.25,984.70 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2491.84,993.09 A1113.87,1113.87 0.00 0,1 2492.85,995.07" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2513.907,995.915 A1132.303,1132.303 40.000 0,1 2514.912,997.941 L2526.729,992.095 A1145.487,1145.487 0.000 0,0 2525.713,990.046 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2492.85,995.07 L 2509.28,986.71 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2525.71,990.05 L 2513.91,995.92 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2525.71,990.05 A1145.49,1145.49 0.00 0,1 2526.73,992.09" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2519.436,1007.193 A1132.303,1132.303 40.000 0,1 2520.418,1009.230 L2557.521,991.385 A1173.474,1173.474 0.000 0,0 2556.504,989.275 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2526.73,992.09 L 2514.91,997.94 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2556.50,989.27 L 2519.44,1007.19 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2556.50,989.27 A1173.47,1173.47 0.00 0,1 2557.52,991.39" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2524.840,1018.532 A1132.303,1132.303 40.000 0,1 2525.800,1020.579 L2578.182,996.098 A1190.123,1190.123 0.000 0,0 2577.173,993.946 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2557.52,991.39 L 2520.42,1009.23 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2577.17,993.95 L 2524.84,1018.53 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2577.17,993.95 A1190.12,1190.12 0.00 0,1 2578.18,996.10" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2530.118,1029.930 A1132.303,1132.303 40.000 0,1 2531.055,1031.988 L2584.368,1007.788 A1190.851,1190.851 0.000 0,0 2583.383,1005.624 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2578.18,996.10 L 2525.80,1020.58 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2583.38,1005.62 L 2530.12,1029.93 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2583.38,1005.62 A1190.85,1190.85 0.00 0,1 2584.37,1007.79" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2535.269,1041.386 A1132.303,1132.303 40.000 0,1 2536.183,1043.454 L2575.674,1026.054 A1175.457,1175.457 0.000 0,0 2574.725,1023.907 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2584.37,1007.79 L 2531.05,1031.99 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2574.73,1023.91 L 2535.27,1041.39 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2574.73,1023.91 A1175.46,1175.46 0.00 0,1 2575.67,1026.05" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2540.293,1052.898 A1132.303,1132.303 40.000 0,1 2541.183,1054.976 L2555.783,1048.736 A1148.180,1148.180 0.000 0,0 2554.880,1046.629 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2575.67,1026.05 L 2536.18,1043.45 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2554.88,1046.63 L 2540.29,1052.90 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2554.88,1046.63 A1148.18,1148.18 0.00 0,1 2555.78,1048.74" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2545.188,1064.465 A1132.303,1132.303 40.000 0,1 2546.056,1066.553 L2531.485,1072.591 A1116.531,1116.531 0.000 0,0 2530.630,1070.532 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2555.78,1048.74 L 2541.18,1054.98 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2530.63,1070.53 L 2545.19,1064.47 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2530.63,1070.53 A1116.53,1116.53 0.00 0,1 2531.49,1072.59" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2549.955,1076.086 A1132.303,1132.303 40.000 0,1 2550.800,1078.183 L2510.822,1094.231 A1089.224,1089.224 0.000 0,0 2510.010,1092.214 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2531.49,1072.59 L 2546.06,1066.55 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2510.01,1092.21 L 2549.96,1076.09 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2510.01,1092.21 A1089.22,1089.22 0.00 0,1 2510.82,1094.23" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2554.593,1087.759 A1132.303,1132.303 40.000 0,1 2555.414,1089.866 L2500.866,1111.063 A1073.780,1073.780 0.000 0,0 2500.087,1109.066 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2510.82,1094.23 L 2550.80,1078.18 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2500.09,1109.07 L 2554.59,1087.76 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2500.09,1109.07 A1073.78,1073.78 0.00 0,1 2500.87,1111.06" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2559.101,1099.483 A1132.303,1132.303 40.000 0,1 2559.899,1101.598 L2505.747,1121.954 A1074.451,1074.451 0.000 0,0 2504.990,1119.946 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2500.87,1111.06 L 2555.41,1089.87 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2504.99,1119.95 L 2559.10,1099.48 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2504.99,1119.95 A1074.45,1074.45 0.00 0,1 2505.75,1121.95" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2563.479,1111.256 A1132.303,1132.303 40.000 0,1 2564.253,1113.380 L2525.481,1127.465 A1091.052,1091.052 0.000 0,0 2524.736,1125.418 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2505.75,1121.95 L 2559.90,1101.60 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2524.74,1125.42 L 2563.48,1111.26 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2524.74,1125.42 A1091.05,1091.05 0.00 0,1 2525.48,1127.47" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2567.726,1123.077 A1132.303,1132.303 40.000 0,1 2568.476,1125.210 L2555.934,1129.609 A1119.012,1119.012 0.000 0,0 2555.193,1127.501 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2525.48,1127.47 L 2564.25,1113.38 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2555.19,1127.50 L 2567.73,1123.08 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2555.19,1127.50 A1119.01,1119.01 0.00 0,1 2555.93,1129.61" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2571.841,1134.944 A1132.303,1132.303 40.000 0,1 2572.568,1137.085 L2589.930,1131.211 A1150.631,1150.631 0.000 0,0 2589.191,1129.035 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2555.93,1129.61 L 2568.48,1125.21 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2589.19,1129.03 L 2571.84,1134.94 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2589.19,1129.03 A1150.63,1150.63 0.00 0,1 2589.93,1131.21" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2575.825,1146.856 A1132.303,1132.303 40.000 0,1 2576.528,1149.005 L2619.217,1135.087 A1177.204,1177.204 0.000 0,0 2618.486,1132.853 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2589.93,1131.21 L 2572.57,1137.09 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2618.49,1132.85 L 2575.82,1146.86 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2618.49,1132.85 A1177.20,1177.20 0.00 0,1 2619.22,1135.09" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2579.676,1158.812 A1132.303,1132.303 40.000 0,1 2580.355,1160.968 L2636.753,1143.270 A1191.412,1191.412 0.000 0,0 2636.038,1141.001 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2619.22,1135.09 L 2576.53,1149.01 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2636.04,1141.00 L 2579.68,1158.81 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2636.04,1141.00 A1191.41,1191.41 0.00 0,1 2636.75,1143.27" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2583.394,1170.810 A1132.303,1132.303 40.000 0,1 2584.049,1172.974 L2638.660,1156.499 A1189.344,1189.344 0.000 0,0 2637.972,1154.226 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2636.75,1143.27 L 2580.35,1160.97 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2637.97,1154.23 L 2583.39,1170.81 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2637.97,1154.23 A1189.34,1189.34 0.00 0,1 2638.66,1156.50" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2586.979,1182.848 A1132.303,1132.303 40.000 0,1 2587.610,1185.019 L2625.327,1174.096 A1171.569,1171.569 0.000 0,0 2624.674,1171.849 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2638.66,1156.50 L 2584.05,1172.97 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2624.67,1171.85 L 2586.98,1182.85 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2624.67,1171.85 A1171.57,1171.57 0.00 0,1 2625.33,1174.10" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2590.430,1194.925 A1132.303,1132.303 40.000 0,1 2591.037,1197.103 L2601.327,1194.246 A1142.981,1142.981 0.000 0,0 2600.714,1192.048 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2625.33,1174.10 L 2587.61,1185.02 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2600.71,1192.05 L 2590.43,1194.92 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2600.71,1192.05 A1142.98,1142.98 0.00 0,1 2601.33,1194.25" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2593.747,1207.040 A1132.303,1132.303 40.000 0,1 2594.330,1209.224 L2574.180,1214.578 A1111.453,1111.453 0.000 0,0 2573.608,1212.434 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2601.33,1194.25 L 2591.04,1197.10 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2573.61,1212.43 L 2593.75,1207.04 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2573.61,1212.43 A1111.45,1111.45 0.00 0,1 2574.18,1214.58" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2596.930,1219.190 A1132.303,1132.303 40.000 0,1 2597.488,1221.381 L2552.286,1232.857 A1085.666,1085.666 0.000 0,0 2551.750,1230.756 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2574.18,1214.58 L 2594.33,1209.22 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2551.75,1230.76 L 2596.93,1219.19 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2551.75,1230.76 A1085.67,1085.67 0.00 0,1 2552.29,1232.86" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2599.977,1231.376 A1132.303,1132.303 40.000 0,1 2600.512,1233.573 L2542.603,1247.592 A1072.721,1072.721 0.000 0,0 2542.097,1245.511 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2552.29,1232.86 L 2597.49,1221.38 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2542.10,1245.51 L 2599.98,1231.38 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2542.10,1245.51 A1072.72,1072.72 0.00 0,1 2542.60,1247.59" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2602.889,1243.594 A1132.303,1132.303 40.000 0,1 2603.399,1245.797 L2548.712,1258.396 A1076.183,1076.183 0.000 0,0 2548.227,1256.302 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2542.60,1247.59 L 2600.51,1233.57 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2548.23,1256.30 L 2602.89,1243.59 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2548.23,1256.30 A1076.18,1076.18 0.00 0,1 2548.71,1258.40" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2605.666,1255.844 A1132.303,1132.303 40.000 0,1 2606.151,1258.052 L2569.805,1266.002 A1095.097,1095.097 0.000 0,0 2569.336,1263.866 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2548.71,1258.40 L 2603.40,1245.80 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2569.34,1263.87 L 2605.67,1255.84 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2569.34,1263.87 A1095.10,1095.10 0.00 0,1 2569.81,1266.00" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2608.306,1268.124 A1132.303,1132.303 40.000 0,1 2608.767,1270.337 L2600.889,1271.969 A1124.257,1124.257 0.000 0,0 2600.431,1269.772 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2569.81,1266.00 L 2606.15,1258.05 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2600.43,1269.77 L 2608.31,1268.12 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2600.43,1269.77 A1124.26,1124.26 0.00 0,1 2600.89,1271.97" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2610.810,1280.432 A1132.303,1132.303 40.000 0,1 2611.246,1282.651 L2634.142,1278.173 A1155.632,1155.632 0.000 0,0 2633.697,1275.909 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2600.89,1271.97 L 2608.77,1270.34 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2633.70,1275.91 L 2610.81,1280.43 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2633.70,1275.91 A1155.63,1155.63 0.00 0,1 2634.14,1278.17" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2613.177,1292.768 A1132.303,1132.303 40.000 0,1 2613.589,1294.991 L2661.072,1286.250 A1180.583,1180.583 0.000 0,0 2660.643,1283.932 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2634.14,1278.17 L 2611.25,1282.65 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2660.64,1283.93 L 2613.18,1292.77 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2660.64,1283.93 A1180.58,1180.58 0.00 0,1 2661.07,1286.25" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2615.408,1305.129 A1132.303,1132.303 40.000 0,1 2615.795,1307.357 L2674.858,1297.159 A1192.240,1192.240 0.000 0,0 2674.451,1294.814 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2661.07,1286.25 L 2613.59,1294.99 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2674.45,1294.81 L 2615.41,1305.13 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2674.45,1294.81 A1192.24,1192.24 0.00 0,1 2674.86,1297.16" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2617.501,1317.514 A1132.303,1132.303 40.000 0,1 2617.863,1319.746 L2672.250,1310.976 A1187.392,1187.392 0.000 0,0 2671.870,1308.636 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2674.86,1297.16 L 2615.79,1307.36 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2671.87,1308.64 L 2617.50,1317.51 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2671.87,1308.64 A1187.39,1187.39 0.00 0,1 2672.25,1310.98" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2619.456,1329.921 A1132.303,1132.303 40.000 0,1 2619.794,1332.157 L2654.478,1326.958 A1167.374,1167.374 0.000 0,0 2654.130,1324.653 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2672.25,1310.98 L 2617.86,1319.75 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2654.13,1324.65 L 2619.46,1329.92 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2654.13,1324.65 A1167.37,1167.37 0.00 0,1 2654.48,1326.96" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2621.274,1342.350 A1132.303,1132.303 40.000 0,1 2621.587,1344.589 L2626.932,1343.848 A1137.699,1137.699 0.000 0,0 2626.618,1341.598 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2654.48,1326.96 L 2619.79,1332.16 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2626.62,1341.60 L 2621.27,1342.35 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2626.62,1341.60 A1137.70,1137.70 0.00 0,1 2626.93,1343.85" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2622.954,1354.798 A1132.303,1132.303 40.000 0,1 2623.242,1357.040 L2597.684,1360.293 A1106.538,1106.538 0.000 0,0 2597.402,1358.101 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2626.93,1343.85 L 2621.59,1344.59 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2597.40,1358.10 L 2622.95,1354.80 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2597.40,1358.10 A1106.54,1106.54 0.00 0,1 2597.68,1360.29" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2624.496,1367.263 A1132.303,1132.303 40.000 0,1 2624.758,1369.509 L2575.260,1375.252 A1082.472,1082.472 0.000 0,0 2575.009,1373.105 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2597.68,1360.29 L 2623.24,1357.04 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2575.01,1373.10 L 2624.50,1367.26 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2575.01,1373.10 A1082.47,1082.47 0.00 0,1 2575.26,1375.25" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2625.899,1379.745 A1132.303,1132.303 40.000 0,1 2626.137,1381.994 L2566.289,1388.265 A1072.127,1072.127 0.000 0,0 2566.064,1386.136 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2575.26,1375.25 L 2624.76,1369.51 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2566.06,1386.14 L 2625.90,1379.75 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2566.06,1386.14 A1072.13,1072.13 0.00 0,1 2566.29,1388.26" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2627.163,1392.242 A1132.303,1132.303 40.000 0,1 2627.376,1394.493 L2573.661,1399.520 A1078.352,1078.352 0.000 0,0 2573.458,1397.376 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2566.29,1388.26 L 2626.14,1381.99 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2573.46,1397.38 L 2627.16,1392.24 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2573.46,1397.38 A1078.35,1078.35 0.00 0,1 2573.66,1399.52" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2628.289,1404.752 A1132.303,1132.303 40.000 0,1 2628.477,1407.005 L2595.719,1409.705 A1099.433,1099.433 0.000 0,0 2595.536,1407.517 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2573.66,1399.52 L 2627.38,1394.49 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2595.54,1407.52 L 2628.29,1404.75 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2595.54,1407.52 A1099.43,1099.43 0.00 0,1 2595.72,1409.70" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2629.277,1417.274 A1132.303,1132.303 40.000 0,1 2629.440,1419.529 L2626.709,1419.723 A1129.565,1129.565 0.000 0,0 2626.546,1417.474 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2595.72,1409.70 L 2628.48,1407.01 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2626.55,1417.47 L 2629.28,1417.27 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2626.55,1417.47 A1129.57,1129.57 0.00 0,1 2626.71,1419.72" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2630.125,1429.806 A1132.303,1132.303 40.000 0,1 2630.263,1432.062 L2658.360,1430.374 A1160.451,1160.451 0.000 0,0 2658.219,1428.061 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2626.71,1419.72 L 2629.44,1419.53 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2658.22,1428.06 L 2630.12,1429.81 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2658.22,1428.06 A1160.45,1160.45 0.00 0,1 2658.36,1430.37" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2630.834,1442.346 A1132.303,1132.303 40.000 0,1 2630.947,1444.604 L2682.169,1442.095 A1183.586,1183.586 0.000 0,0 2682.051,1439.735 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2658.36,1430.37 L 2630.26,1432.06 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2682.05,1439.74 L 2630.83,1442.35 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2682.05,1439.74 A1183.59,1183.59 0.00 0,1 2682.17,1442.10" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2631.404,1454.894 A1132.303,1132.303 40.000 0,1 2631.492,1457.153 L2691.745,1454.872 A1192.599,1192.599 0.000 0,0 2691.653,1452.492 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2682.17,1442.10 L 2630.95,1444.60 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2691.65,1452.49 L 2631.40,1454.89 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2691.65,1452.49 A1192.60,1192.60 0.00 0,1 2691.75,1454.87" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2631.835,1467.447 A1132.303,1132.303 40.000 0,1 2631.897,1469.707 L2684.585,1468.297 A1185.009,1185.009 0.000 0,0 2684.519,1465.932 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2691.75,1454.87 L 2631.49,1457.15 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2684.52,1465.93 L 2631.83,1467.45 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2684.52,1465.93 A1185.01,1185.01 0.00 0,1 2684.58,1468.30" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2632.126,1480.004 A1132.303,1132.303 40.000 0,1 2632.164,1482.265 L2662.763,1481.786 A1162.906,1162.906 0.000 0,0 2662.724,1479.464 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2684.58,1468.30 L 2631.90,1469.71 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2662.72,1479.46 L 2632.13,1480.00 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2662.72,1479.46 A1162.91,1162.91 0.00 0,1 2662.76,1481.79" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2632.278,1492.564 A1132.303,1132.303 40.000 0,1 2632.291,1494.825 L2632.364,1494.825 A1132.375,1132.375 0.000 0,0 2632.351,1492.564 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2662.76,1481.79 L 2632.16,1482.27 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2632.35,1492.56 L 2632.28,1492.56 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2632.35,1492.56 A1132.38,1132.38 0.00 0,1 2632.36,1494.82" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2632.291,1505.125 A1132.303,1132.303 40.000 0,1 2632.279,1507.386 L2601.802,1507.187 A1101.825,1101.825 0.000 0,0 2601.814,1504.987 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2632.36,1494.82 L 2632.29,1494.83 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2601.81,1504.99 L 2632.29,1505.12 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2601.81,1504.99 A1101.82,1101.82 0.00 0,1 2601.80,1507.19" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2632.165,1517.685 A1132.303,1132.303 40.000 0,1 2632.127,1519.945 L2579.499,1519.018 A1079.667,1079.667 0.000 0,0 2579.535,1516.863 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2601.80,1507.19 L 2632.28,1507.39 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2579.54,1516.86 L 2632.16,1517.68 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2579.54,1516.86 A1079.67,1079.67 0.00 0,1 2579.50,1519.02" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2631.899,1530.243 A1132.303,1132.303 40.000 0,1 2631.836,1532.503 L2571.561,1530.772 A1072.003,1072.003 0.000 0,0 2571.620,1528.632 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2579.50,1519.02 L 2632.13,1519.95 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2571.62,1528.63 L 2631.90,1530.24 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2571.62,1528.63 A1072.00,1072.00 0.00 0,1 2571.56,1530.77" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2631.494,1542.797 A1132.303,1132.303 40.000 0,1 2631.406,1545.056 L2580.087,1543.012 A1080.943,1080.943 0.000 0,0 2580.171,1540.855 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2571.56,1530.77 L 2631.84,1532.50 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2580.17,1540.86 L 2631.49,1542.80 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2580.17,1540.86 A1080.94,1080.94 0.00 0,1 2580.09,1543.01" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2630.949,1555.345 A1132.303,1132.303 40.000 0,1 2630.836,1557.604 L2602.596,1556.165 A1104.026,1104.026 0.000 0,0 2602.706,1553.963 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2580.09,1543.01 L 2631.41,1545.06 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2602.71,1553.96 L 2630.95,1555.35 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2602.71,1553.96 A1104.03,1104.03 0.00 0,1 2602.60,1556.16" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2630.266,1567.887 A1132.303,1132.303 40.000 0,1 2630.128,1570.144 L2632.715,1570.305 A1134.895,1134.895 0.000 0,0 2632.853,1568.043 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2602.60,1556.16 L 2630.84,1557.60 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2632.85,1568.04 L 2630.27,1567.89 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2632.85,1568.04 A1134.89,1134.89 0.00 0,1 2632.72,1570.30" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2629.443,1580.421 A1132.303,1132.303 40.000 0,1 2629.280,1582.676 L2661.940,1585.067 A1165.050,1165.050 0.000 0,0 2662.108,1582.747 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2632.72,1570.30 L 2630.13,1570.14 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2662.11,1582.75 L 2629.44,1580.42 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2662.11,1582.75 A1165.05,1165.05 0.00 0,1 2661.94,1585.07" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2628.481,1592.945 A1132.303,1132.303 40.000 0,1 2628.294,1595.198 L2681.988,1599.728 A1186.188,1186.188 0.000 0,0 2682.185,1597.368 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2661.94,1585.07 L 2629.28,1582.68 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2682.18,1597.37 L 2628.48,1592.94 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2682.18,1597.37 A1186.19,1186.19 0.00 0,1 2681.99,1599.73" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2627.381,1605.457 A1132.303,1132.303 40.000 0,1 2627.168,1607.708 L2687.081,1613.433 A1192.488,1192.488 0.000 0,0 2687.305,1611.062 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2681.99,1599.73 L 2628.29,1595.20 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2687.30,1611.06 L 2627.38,1605.46 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2687.30,1611.06 A1192.49,1192.49 0.00 0,1 2687.08,1613.43" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2626.142,1617.956 A1132.303,1132.303 40.000 0,1 2625.904,1620.205 L2675.534,1625.504 A1182.215,1182.215 0.000 0,0 2675.783,1623.156 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2687.08,1613.43 L 2627.17,1607.71 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2675.78,1623.16 L 2626.14,1617.96 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2675.78,1623.16 A1182.22,1182.22 0.00 0,1 2675.53,1625.50" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2624.764,1630.441 A1132.303,1132.303 40.000 0,1 2624.501,1632.687 L2650.219,1635.721 A1158.198,1158.198 0.000 0,0 2650.487,1633.424 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2675.53,1625.50 L 2625.90,1620.20 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2650.49,1633.42 L 2624.76,1630.44 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2650.49,1633.42 A1158.20,1158.20 0.00 0,1 2650.22,1635.72" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2623.248,1642.910 A1132.303,1132.303 40.000 0,1 2622.960,1645.153 L2617.752,1644.479 A1127.051,1127.051 0.000 0,0 2618.038,1642.247 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2650.22,1635.72 L 2624.50,1632.69 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2618.04,1642.25 L 2623.25,1642.91 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2618.04,1642.25 A1127.05,1127.05 0.00 0,1 2617.75,1644.48" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2621.594,1655.361 A1132.303,1132.303 40.000 0,1 2621.281,1657.600 L2586.668,1652.735 A1097.349,1097.349 0.000 0,0 2586.971,1650.565 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2617.75,1644.48 L 2622.96,1645.15 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2586.97,1650.57 L 2621.59,1655.36 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2586.97,1650.57 A1097.35,1097.35 0.00 0,1 2586.67,1652.74" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2619.801,1667.793 A1132.303,1132.303 40.000 0,1 2619.464,1670.029 L2565.058,1661.766 A1077.273,1077.273 0.000 0,0 2565.379,1659.639 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2586.67,1652.74 L 2621.28,1657.60 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2565.38,1659.64 L 2619.80,1667.79 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2565.38,1659.64 A1077.27,1077.27 0.00 0,1 2565.06,1661.77" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2617.871,1680.205 A1132.303,1132.303 40.000 0,1 2617.509,1682.436 L2558.339,1672.777 A1072.350,1072.350 0.000 0,0 2558.682,1670.663 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2565.06,1661.77 L 2619.46,1670.03 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2558.68,1670.66 L 2617.87,1680.20 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2558.68,1670.66 A1072.35,1072.35 0.00 0,1 2558.34,1672.78" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2615.803,1692.594 A1132.303,1132.303 40.000 0,1 2615.416,1694.822 L2567.770,1686.499 A1083.935,1083.935 0.000 0,0 2568.140,1684.367 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2558.34,1672.78 L 2617.51,1682.44 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2568.14,1684.37 L 2615.80,1692.59 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2568.14,1684.37 A1083.93,1083.93 0.00 0,1 2567.77,1686.50" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2613.598,1704.959 A1132.303,1132.303 40.000 0,1 2613.187,1707.183 L2590.119,1702.889 A1108.839,1108.839 0.000 0,0 2590.522,1700.712 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2567.77,1686.50 L 2615.42,1694.82 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2590.52,1700.71 L 2613.60,1704.96 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2590.52,1700.71 A1108.84,1108.84 0.00 0,1 2590.12,1702.89" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2611.256,1717.300 A1132.303,1132.303 40.000 0,1 2610.820,1719.518 L2618.571,1721.050 A1140.204,1140.204 0.000 0,0 2619.011,1718.816 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2590.12,1702.89 L 2613.19,1707.18 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2619.01,1718.82 L 2611.26,1717.30 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2619.01,1718.82 A1140.20,1140.20 0.00 0,1 2618.57,1721.05" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2608.777,1729.613 A1132.303,1132.303 40.000 0,1 2608.317,1731.827 L2644.622,1739.421 A1169.393,1169.393 0.000 0,0 2645.097,1737.135 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2618.57,1721.05 L 2610.82,1719.52 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2645.10,1737.13 L 2608.78,1729.61 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2645.10,1737.13 A1169.39,1169.39 0.00 0,1 2644.62,1739.42" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2606.162,1741.899 A1132.303,1132.303 40.000 0,1 2605.677,1744.107 L2660.425,1756.194 A1188.369,1188.369 0.000 0,0 2660.934,1753.876 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2644.62,1739.42 L 2608.32,1731.83 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2660.93,1753.88 L 2606.16,1741.90 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2660.93,1753.88 A1188.37,1188.37 0.00 0,1 2660.42,1756.19" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2603.411,1754.154 A1132.303,1132.303 40.000 0,1 2602.901,1756.357 L2660.957,1769.852 A1191.907,1191.907 0.000 0,0 2661.494,1767.533 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2660.42,1756.19 L 2605.68,1744.11 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2661.49,1767.53 L 2603.41,1754.15 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2661.49,1767.53 A1191.91,1191.91 0.00 0,1 2660.96,1769.85" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2600.523,1766.379 A1132.303,1132.303 40.000 0,1 2599.989,1768.575 L2645.384,1779.659 A1179.031,1179.031 0.000 0,0 2645.940,1777.372 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2660.96,1769.85 L 2602.90,1756.36 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2645.94,1777.37 L 2600.52,1766.38 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2645.94,1777.37 A1179.03,1179.03 0.00 0,1 2645.38,1779.66" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2597.501,1778.570 A1132.303,1132.303 40.000 0,1 2596.942,1780.761 L2617.273,1785.965 A1153.288,1153.288 0.000 0,0 2617.842,1783.733 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2645.38,1779.66 L 2599.99,1768.58 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2617.84,1783.73 L 2597.50,1778.57 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2617.84,1783.73 A1153.29,1153.29 0.00 0,1 2617.27,1785.96" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2594.343,1790.727 A1132.303,1132.303 40.000 0,1 2593.760,1792.912 L2583.584,1790.186 A1121.767,1121.767 0.000 0,0 2584.161,1788.022 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2617.27,1785.96 L 2596.94,1780.76 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2584.16,1788.02 L 2594.34,1790.73 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2584.16,1788.02 A1121.77,1121.77 0.00 0,1 2583.58,1790.19" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2591.051,1802.849 A1132.303,1132.303 40.000 0,1 2590.444,1805.027 L2552.736,1794.479 A1093.147,1093.147 0.000 0,0 2553.322,1792.376 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2583.58,1790.19 L 2593.76,1792.91 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2553.32,1792.38 L 2591.05,1802.85 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2553.32,1792.38 A1093.15,1093.15 0.00 0,1 2552.74,1794.48" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2587.624,1814.933 A1132.303,1132.303 40.000 0,1 2586.993,1817.104 L2532.280,1801.143 A1075.309,1075.309 0.000 0,0 2532.879,1799.081 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2552.74,1794.48 L 2590.44,1805.03 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2532.88,1799.08 L 2587.62,1814.93 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2532.88,1799.08 A1075.31,1075.31 0.00 0,1 2532.28,1801.14" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2584.064,1826.978 A1132.303,1132.303 40.000 0,1 2583.409,1829.142 L2526.824,1811.952 A1073.164,1073.164 0.000 0,0 2527.445,1809.901 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2532.28,1801.14 L 2586.99,1817.10 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2527.44,1809.90 L 2584.06,1826.98 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2527.44,1809.90 A1073.16,1073.16 0.00 0,1 2526.82,1811.95" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2580.370,1838.984 A1132.303,1132.303 40.000 0,1 2579.691,1841.140 L2536.784,1827.583 A1087.305,1087.305 0.000 0,0 2537.436,1825.512 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2526.82,1811.95 L 2583.41,1829.14 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2537.44,1825.51 L 2580.37,1838.98 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2537.44,1825.51 A1087.30,1087.30 0.00 0,1 2536.78,1827.58" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2576.543,1850.947 A1132.303,1132.303 40.000 0,1 2575.840,1853.096 L2558.294,1847.337 A1113.836,1113.836 0.000 0,0 2558.986,1845.223 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2536.78,1827.58 L 2579.69,1841.14 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2558.99,1845.22 L 2576.54,1850.95 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2558.99,1845.22 A1113.84,1113.84 0.00 0,1 2558.29,1847.34" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2572.584,1862.867 A1132.303,1132.303 40.000 0,1 2571.857,1865.008 L2584.304,1869.247 A1145.452,1145.452 0.000 0,0 2585.040,1867.081 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2558.29,1847.34 L 2575.84,1853.10 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2585.04,1867.08 L 2572.58,1862.87 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2585.04,1867.08 A1145.45,1145.45 0.00 0,1 2584.30,1869.25" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2568.493,1874.743 A1132.303,1132.303 40.000 0,1 2567.742,1876.876 L2606.541,1890.570 A1173.447,1173.447 0.000 0,0 2607.319,1888.360 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2584.30,1869.25 L 2571.86,1865.01 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2607.32,1888.36 L 2568.49,1874.74 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2607.32,1888.36 A1173.45,1173.45 0.00 0,1 2606.54,1890.57" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2564.270,1886.573 A1132.303,1132.303 40.000 0,1 2563.496,1888.697 L2617.793,1908.542 A1190.113,1190.113 0.000 0,0 2618.607,1906.309 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2606.54,1890.57 L 2567.74,1876.88 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2618.61,1906.31 L 2564.27,1886.57 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2618.61,1906.31 A1190.11,1190.11 0.00 0,1 2617.79,1908.54" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2559.916,1898.354 A1132.303,1132.303 40.000 0,1 2559.119,1900.470 L2613.891,1921.180 A1190.860,1190.860 0.000 0,0 2614.730,1918.955 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2617.79,1908.54 L 2563.50,1888.70 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2614.73,1918.96 L 2559.92,1898.35 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2614.73,1918.96 A1190.86,1190.86 0.00 0,1 2613.89,1921.18" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2555.432,1910.087 A1132.303,1132.303 40.000 0,1 2554.611,1912.194 L2594.829,1927.913 A1175.482,1175.482 0.000 0,0 2595.681,1925.726 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2613.89,1921.18 L 2559.12,1900.47 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2595.68,1925.73 L 2555.43,1910.09 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2595.68,1925.73 A1175.48,1175.48 0.00 0,1 2594.83,1927.91" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2550.818,1921.770 A1132.303,1132.303 40.000 0,1 2549.974,1923.867 L2564.729,1929.824 A1148.215,1148.215 0.000 0,0 2565.586,1927.697 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2594.83,1927.91 L 2554.61,1912.19 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2565.59,1927.70 L 2550.82,1921.77 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2565.59,1927.70 A1148.21,1148.21 0.00 0,1 2564.73,1929.82" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2546.075,1933.400 A1132.303,1132.303 40.000 0,1 2545.208,1935.488 L2530.681,1929.436 A1116.566,1116.566 0.000 0,0 2531.537,1927.377 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2564.73,1929.82 L 2549.97,1923.87 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2531.54,1927.38 L 2546.08,1933.40 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2531.54,1927.38 A1116.57,1116.57 0.00 0,1 2530.68,1929.44" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2541.203,1944.978 A1132.303,1132.303 40.000 0,1 2540.313,1947.056 L2500.758,1930.058 A1089.250,1089.250 0.000 0,0 2501.614,1928.059 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2530.68,1929.44 L 2545.21,1935.49 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2501.61,1928.06 L 2541.20,1944.98 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2501.61,1928.06 A1089.25,1089.25 0.00 0,1 2500.76,1930.06" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2536.203,1956.500 A1132.303,1132.303 40.000 0,1 2535.289,1958.568 L2481.789,1934.871 A1073.789,1073.789 0.000 0,0 2482.656,1932.910 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2500.76,1930.06 L 2540.31,1947.06 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2482.66,1932.91 L 2536.20,1956.50 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2482.66,1932.91 A1073.79,1073.79 0.00 0,1 2481.79,1934.87" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2531.075,1967.967 A1132.303,1132.303 40.000 0,1 2530.139,1970.024 L2477.498,1946.006 A1074.441,1074.441 0.000 0,0 2478.386,1944.053 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2481.79,1934.87 L 2535.29,1958.57 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2478.39,1944.05 L 2531.08,1967.97 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2478.39,1944.05 A1074.44,1074.44 0.00 0,1 2477.50,1946.01" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2525.821,1979.375 A1132.303,1132.303 40.000 0,1 2524.862,1981.423 L2487.501,1963.873 A1091.025,1091.025 0.000 0,0 2488.425,1961.900 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2477.50,1946.01 L 2530.14,1970.02 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2488.43,1961.90 L 2525.82,1979.38 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2488.43,1961.90 A1091.03,1091.03 0.00 0,1 2487.50,1963.87" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2520.440,1990.725 A1132.303,1132.303 40.000 0,1 2519.458,1992.762 L2507.460,1986.962 A1118.976,1118.976 0.000 0,0 2508.430,1984.950 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2487.50,1963.87 L 2524.86,1981.42 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2508.43,1984.95 L 2520.44,1990.73 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2508.43,1984.95 A1118.98,1118.98 0.00 0,1 2507.46,1986.96" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2514.934,2002.014 A1132.303,1132.303 40.000 0,1 2513.929,2004.040 L2530.311,2012.183 A1150.597,1150.597 0.000 0,0 2531.332,2010.125 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2507.46,1986.96 L 2519.46,1992.76 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2531.33,2010.13 L 2514.93,2002.01 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2531.33,2010.13 A1150.60,1150.60 0.00 0,1 2530.31,2012.18" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2509.303,2013.242 A1132.303,1132.303 40.000 0,1 2508.276,2015.256 L2548.237,2035.678 A1177.179,1177.179 0.000 0,0 2549.305,2033.583 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2530.31,2012.18 L 2513.93,2004.04 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2549.30,2033.58 L 2509.30,2013.24 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2549.30,2033.58 A1177.18,1177.18 0.00 0,1 2548.24,2035.68" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2503.547,2024.406 A1132.303,1132.303 40.000 0,1 2502.498,2026.409 L2554.825,2053.886 A1191.405,1191.405 0.000 0,0 2555.929,2051.779 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2548.24,2035.68 L 2508.28,2015.26 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2555.93,2051.78 L 2503.55,2024.41 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2555.93,2051.78 A1191.40,1191.40 0.00 0,1 2554.83,2053.89" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2497.668,2035.506 A1132.303,1132.303 40.000 0,1 2496.597,2037.497 L2546.813,2064.580 A1189.356,1189.356 0.000 0,0 2547.938,2062.489 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2554.83,2053.89 L 2502.50,2026.41 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2547.94,2062.49 L 2497.67,2035.51 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2547.94,2062.49 A1189.36,1189.36 0.00 0,1 2546.81,2064.58" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2491.667,2046.540 A1132.303,1132.303 40.000 0,1 2490.573,2048.519 L2524.949,2067.554 A1171.597,1171.597 0.000 0,0 2526.080,2065.507 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2546.81,2064.58 L 2496.60,2037.50 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2526.08,2065.51 L 2491.67,2046.54 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2526.08,2065.51 A1171.60,1171.60 0.00 0,1 2524.95,2067.55" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2485.543,2057.507 A1132.303,1132.303 40.000 0,1 2484.428,2059.474 L2493.743,2064.768 A1143.017,1143.017 0.000 0,0 2494.869,2062.782 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2524.95,2067.55 L 2490.57,2048.52 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2494.87,2062.78 L 2485.54,2057.51 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2494.87,2062.78 A1143.02,1143.02 0.00 0,1 2493.74,2064.77" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2479.298,2068.405 A1132.303,1132.303 40.000 0,1 2478.161,2070.359 L2460.179,2059.874 A1111.487,1111.487 0.000 0,0 2461.296,2057.956 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2493.74,2064.77 L 2484.43,2059.47 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2461.30,2057.96 L 2479.30,2068.41 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2461.30,2057.96 A1111.49,1111.49 0.00 0,1 2460.18,2059.87" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2472.933,2079.233 A1132.303,1132.303 40.000 0,1 2471.774,2081.175 L2431.769,2057.250 A1085.689,1085.689 0.000 0,0 2432.880,2055.388 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2460.18,2059.87 L 2478.16,2070.36 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2432.88,2055.39 L 2472.93,2079.23 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2432.88,2055.39 A1085.69,1085.69 0.00 0,1 2431.77,2057.25" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2466.447,2089.990 A1132.303,1132.303 40.000 0,1 2465.267,2091.919 L2414.480,2060.775 A1072.727,1072.727 0.000 0,0 2415.598,2058.948 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2431.77,2057.25 L 2471.77,2081.17 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2415.60,2058.95 L 2466.45,2089.99 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2415.60,2058.95 A1072.73,1072.73 0.00 0,1 2414.48,2060.78" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2459.843,2100.675 A1132.303,1132.303 40.000 0,1 2458.642,2102.590 L2411.118,2072.717 A1076.169,1076.169 0.000 0,0 2412.260,2070.896 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2414.48,2060.78 L 2465.27,2091.92 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2412.26,2070.90 L 2459.84,2100.67 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2412.26,2070.90 A1076.17,1076.17 0.00 0,1 2411.12,2072.72" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2453.121,2111.285 A1132.303,1132.303 40.000 0,1 2451.899,2113.187 L2420.597,2093.023 A1095.069,1095.069 0.000 0,0 2421.779,2091.184 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2411.12,2072.72 L 2458.64,2102.59 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2421.78,2091.18 L 2453.12,2111.28 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2421.78,2091.18 A1095.07,1095.07 0.00 0,1 2420.60,2093.02" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2446.282,2121.820 A1132.303,1132.303 40.000 0,1 2445.038,2123.708 L2438.293,2119.257 A1124.221,1124.221 0.000 0,0 2439.528,2117.382 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2420.60,2093.02 L 2451.90,2113.19 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2439.53,2117.38 L 2446.28,2121.82 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2439.53,2117.38 A1124.22,1124.22 0.00 0,1 2438.29,2119.26" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2439.326,2132.279 A1132.303,1132.303 40.000 0,1 2438.061,2134.153 L2457.361,2147.200 A1155.599,1155.599 0.000 0,0 2458.651,2145.287 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2438.29,2119.26 L 2445.04,2123.71 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2458.65,2145.29 L 2439.33,2132.28 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2458.65,2145.29 A1155.60,1155.60 0.00 0,1 2457.36,2147.20" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2432.254,2142.660 A1132.303,1132.303 40.000 0,1 2430.969,2144.520 L2470.647,2171.989 A1180.561,1180.561 0.000 0,0 2471.987,2170.050 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2457.36,2147.20 L 2438.06,2134.15 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2471.99,2170.05 L 2432.25,2142.66 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2471.99,2170.05 A1180.56,1180.56 0.00 0,1 2470.65,2171.99" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2425.068,2152.961 A1132.303,1132.303 40.000 0,1 2423.762,2154.807 L2472.657,2189.466 A1192.236,1192.236 0.000 0,0 2474.032,2187.523 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2470.65,2171.99 L 2430.97,2144.52 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2474.03,2187.52 L 2425.07,2152.96 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2474.03,2187.52 A1192.24,1192.24 0.00 0,1 2472.66,2189.47" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2417.768,2163.183 A1132.303,1132.303 40.000 0,1 2416.442,2165.014 L2461.041,2197.377 A1187.406,1187.406 0.000 0,0 2462.431,2195.457 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2472.66,2189.47 L 2423.76,2154.81 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2462.43,2195.46 L 2417.77,2163.18 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2462.43,2195.46 A1187.41,1187.41 0.00 0,1 2461.04,2197.38" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2410.355,2173.323 A1132.303,1132.303 40.000 0,1 2409.008,2175.139 L2437.188,2196.068 A1167.404,1167.404 0.000 0,0 2438.576,2194.196 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2461.04,2197.38 L 2416.44,2165.01 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2438.58,2194.20 L 2410.35,2173.32 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2438.58,2194.20 A1167.40,1167.40 0.00 0,1 2437.19,2196.07" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2402.830,2183.380 A1132.303,1132.303 40.000 0,1 2401.463,2185.181 L2405.789,2188.469 A1137.736,1137.736 0.000 0,0 2407.162,2186.659 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2437.19,2196.07 L 2409.01,2175.14 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2407.16,2186.66 L 2402.83,2183.38 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2407.16,2186.66 A1137.74,1137.74 0.00 0,1 2405.79,2188.47" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2395.194,2193.353 A1132.303,1132.303 40.000 0,1 2393.807,2195.139 L2373.496,2179.342 A1106.571,1106.571 0.000 0,0 2374.851,2177.596 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2405.79,2188.47 L 2401.46,2185.18 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2374.85,2177.60 L 2395.19,2193.35 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2374.85,2177.60 A1106.57,1106.57 0.00 0,1 2373.50,2179.34" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2387.447,2203.240 A1132.303,1132.303 40.000 0,1 2386.041,2205.011 L2347.064,2173.997 A1082.493,1082.493 0.000 0,0 2348.408,2172.305 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2373.50,2179.34 L 2393.81,2195.14 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2348.41,2172.30 L 2387.45,2203.24 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2348.41,2172.30 A1082.49,1082.49 0.00 0,1 2347.06,2174.00" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2379.592,2213.041 A1132.303,1132.303 40.000 0,1 2378.166,2214.796 L2331.498,2176.810 A1072.130,1072.130 0.000 0,0 2332.848,2175.149 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2347.06,2174.00 L 2386.04,2205.01 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2332.85,2175.15 L 2379.59,2213.04 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2332.85,2175.15 A1072.13,1072.13 0.00 0,1 2331.50,2176.81" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2371.628,2222.754 A1132.303,1132.303 40.000 0,1 2370.183,2224.493 L2328.709,2189.963 A1078.336,1078.336 0.000 0,0 2330.085,2188.307 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2331.50,2176.81 L 2378.17,2214.80 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2330.09,2188.31 L 2371.63,2222.75 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2330.09,2188.31 A1078.34,1078.34 0.00 0,1 2328.71,2189.96" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2363.557,2232.379 A1132.303,1132.303 40.000 0,1 2362.093,2234.102 L2337.044,2212.772 A1099.403,1099.403 0.000 0,0 2338.466,2211.099 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2328.71,2189.96 L 2370.18,2224.49 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2338.47,2211.10 L 2363.56,2232.38 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2338.47,2211.10 A1099.40,1099.40 0.00 0,1 2337.04,2212.77" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2355.380,2241.913 A1132.303,1132.303 40.000 0,1 2353.897,2243.619 L2351.805,2241.798 A1129.529,1129.529 0.000 0,0 2353.284,2240.096 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2337.04,2212.77 L 2362.09,2234.10 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2353.28,2240.10 L 2355.38,2241.91 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2353.28,2240.10 A1129.53,1129.53 0.00 0,1 2351.80,2241.80" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2347.097,2251.356 A1132.303,1132.303 40.000 0,1 2345.595,2253.046 L2366.592,2271.745 A1160.419,1160.419 0.000 0,0 2368.131,2270.013 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2351.80,2241.80 L 2353.90,2243.62 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2368.13,2270.01 L 2347.10,2251.36 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2368.13,2270.01 A1160.42,1160.42 0.00 0,1 2366.59,2271.74" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2338.710,2260.706 A1132.303,1132.303 40.000 0,1 2337.190,2262.379 L2375.093,2296.896 A1183.567,1183.567 0.000 0,0 2376.682,2295.147 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2366.59,2271.74 L 2345.60,2253.05 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2376.68,2295.15 L 2338.71,2260.71 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2376.68,2295.15 A1183.57,1183.57 0.00 0,1 2375.09,2296.90" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2330.220,2269.963 A1132.303,1132.303 40.000 0,1 2328.681,2271.619 L2372.809,2312.708 A1192.598,1192.598 0.000 0,0 2374.430,2310.964 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2375.09,2296.90 L 2337.19,2262.38 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2374.43,2310.96 L 2330.22,2269.96 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2374.43,2310.96 A1192.60,1192.60 0.00 0,1 2372.81,2312.71" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2321.628,2279.125 A1132.303,1132.303 40.000 0,1 2320.071,2280.764 L2358.256,2317.120 A1185.027,1185.027 0.000 0,0 2359.886,2315.404 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2372.81,2312.71 L 2328.68,2271.62 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2359.89,2315.40 L 2321.63,2279.13 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2359.89,2315.40 A1185.03,1185.03 0.00 0,1 2358.26,2317.12" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2312.935,2288.192 A1132.303,1132.303 40.000 0,1 2311.360,2289.813 L2333.311,2311.182 A1162.937,1162.937 0.000 0,0 2334.929,2309.516 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2358.26,2317.12 L 2320.07,2280.76 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2334.93,2309.52 L 2312.94,2288.19 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2334.93,2309.52 A1162.94,1162.94 0.00 0,1 2333.31,2311.18" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2304.142,2297.161 A1132.303,1132.303 40.000 0,1 2302.548,2298.765 L2302.626,2298.842 A1132.412,1132.412 0.000 0,0 2304.219,2297.238 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2333.31,2311.18 L 2311.36,2289.81 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2304.22,2297.24 L 2304.14,2297.16 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2304.22,2297.24 A1132.41,1132.41 0.00 0,1 2302.63,2298.84" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2295.250,2306.032 A1132.303,1132.303 40.000 0,1 2293.639,2307.618 L2272.299,2285.902 A1101.856,1101.856 0.000 0,0 2273.866,2284.359 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2302.63,2298.84 L 2302.55,2298.76 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2273.87,2284.36 L 2295.25,2306.03 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2273.87,2284.36 A1101.86,1101.86 0.00 0,1 2272.30,2285.90" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2286.259,2314.804 A1132.303,1132.303 40.000 0,1 2284.631,2316.372 L2248.169,2278.436 A1079.685,1079.685 0.000 0,0 2249.722,2276.940 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2272.30,2285.90 L 2293.64,2307.62 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2249.72,2276.94 L 2286.26,2314.80 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2249.72,2276.94 A1079.68,1079.68 0.00 0,1 2248.17,2278.44" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2277.173,2323.476 A1132.303,1132.303 40.000 0,1 2275.527,2325.026 L2234.226,2281.089 A1072.002,1072.002 0.000 0,0 2235.784,2279.622 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2248.17,2278.44 L 2284.63,2316.37 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2235.78,2279.62 L 2277.17,2323.48 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2235.78,2279.62 A1072.00,1072.00 0.00 0,1 2234.23,2281.09" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2267.990,2332.046 A1132.303,1132.303 40.000 0,1 2266.327,2333.578 L2231.555,2295.754 A1080.924,1080.924 0.000 0,0 2233.142,2294.292 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2234.23,2281.09 L 2275.53,2325.03 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2233.14,2294.29 L 2267.99,2332.05 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2233.14,2294.29 A1080.92,1080.92 0.00 0,1 2231.55,2295.75" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2258.713,2340.514 A1132.303,1132.303 40.000 0,1 2257.033,2342.027 L2238.107,2320.975 A1103.994,1103.994 0.000 0,0 2239.744,2319.500 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2231.55,2295.75 L 2266.33,2333.58 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2239.74,2319.50 L 2258.71,2340.51 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2239.74,2319.50 A1103.99,1103.99 0.00 0,1 2238.11,2320.98" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2249.343,2348.878 A1132.303,1132.303 40.000 0,1 2247.646,2350.373 L2249.334,2352.292 A1134.858,1134.858 0.000 0,0 2251.034,2350.794 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2238.11,2320.98 L 2257.03,2342.03 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2251.03,2350.79 L 2249.34,2348.88 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2251.03,2350.79 A1134.86,1134.86 0.00 0,1 2249.33,2352.29" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2239.880,2357.139 A1132.303,1132.303 40.000 0,1 2238.167,2358.614 L2259.496,2383.423 A1165.019,1165.019 0.000 0,0 2261.258,2381.905 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2249.33,2352.29 L 2247.65,2350.37 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2261.26,2381.90 L 2239.88,2357.14 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2261.26,2381.90 A1165.02,1165.02 0.00 0,1 2259.50,2383.42" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2230.327,2365.293 A1132.303,1132.303 40.000 0,1 2228.597,2366.750 L2263.260,2407.985 A1186.172,1186.172 0.000 0,0 2265.072,2406.459 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2259.50,2383.42 L 2238.17,2358.61 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2265.07,2406.46 L 2230.33,2365.29 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2265.07,2406.46 A1186.17,1186.17 0.00 0,1 2263.26,2407.99" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2220.683,2373.341 A1132.303,1132.303 40.000 0,1 2218.938,2374.779 L2257.153,2421.277 A1192.490,1192.490 0.000 0,0 2258.991,2419.764 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2263.26,2407.99 L 2228.60,2366.75 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2258.99,2419.76 L 2220.68,2373.34 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2258.99,2419.76 A1192.49,1192.49 0.00 0,1 2257.15,2421.28" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2210.951,2381.282 A1132.303,1132.303 40.000 0,1 2209.190,2382.700 L2240.464,2421.625 A1182.235,1182.235 0.000 0,0 2242.303,2420.145 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2257.15,2421.28 L 2218.94,2374.78 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2242.30,2420.15 L 2210.95,2381.28 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2242.30,2420.15 A1182.24,1182.24 0.00 0,1 2240.46,2421.63" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2201.131,2389.114 A1132.303,1132.303 40.000 0,1 2199.355,2390.512 L2215.369,2410.904 A1158.231,1158.231 0.000 0,0 2217.186,2409.474 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2240.46,2421.63 L 2209.19,2382.70 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2217.19,2409.47 L 2201.13,2389.11 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2217.19,2409.47 A1158.23,1158.23 0.00 0,1 2215.37,2410.90" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2191.225,2396.837 A1132.303,1132.303 40.000 0,1 2189.433,2398.215 L2186.258,2394.078 A1127.087,1127.087 0.000 0,0 2188.042,2392.706 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2215.37,2410.90 L 2199.35,2390.51 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2188.04,2392.71 L 2191.23,2396.84 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2188.04,2392.71 A1127.09,1127.09 0.00 0,1 2186.26,2394.08" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2181.235,2404.449 A1132.303,1132.303 40.000 0,1 2179.427,2405.808 L2158.472,2377.870 A1097.379,1097.379 0.000 0,0 2160.223,2376.554 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2186.26,2394.08 L 2189.43,2398.22 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2160.22,2376.55 L 2181.23,2404.45 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2160.22,2376.55 A1097.38,1097.38 0.00 0,1 2158.47,2377.87" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2171.160,2411.951 A1132.303,1132.303 40.000 0,1 2169.337,2413.289 L2136.817,2368.915 A1077.288,1077.288 0.000 0,0 2138.550,2367.642 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2158.47,2377.87 L 2179.43,2405.81 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2138.55,2367.64 L 2171.16,2411.95 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2138.55,2367.64 A1077.29,1077.29 0.00 0,1 2136.82,2368.92" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2161.002,2419.340 A1132.303,1132.303 40.000 0,1 2159.165,2420.658 L2124.262,2371.907 A1072.346,1072.346 0.000 0,0 2126.001,2370.659 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2136.82,2368.92 L 2169.34,2413.29 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2126.00,2370.66 L 2161.00,2419.34 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2126.00,2370.66 A1072.35,1072.35 0.00 0,1 2124.26,2371.91" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2150.764,2426.615 A1132.303,1132.303 40.000 0,1 2148.912,2427.913 L2121.181,2388.258 A1083.913,1083.913 0.000 0,0 2122.953,2387.016 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2124.26,2371.91 L 2159.17,2420.66 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2122.95,2387.02 L 2150.76,2426.62 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2122.95,2387.02 A1083.91,1083.91 0.00 0,1 2121.18,2388.26" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2140.445,2433.777 A1132.303,1132.303 40.000 0,1 2138.579,2435.054 L2125.327,2415.650 A1108.805,1108.805 0.000 0,0 2127.155,2414.400 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2121.18,2388.26 L 2148.91,2427.91 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2127.15,2414.40 L 2140.44,2433.78 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2127.15,2414.40 A1108.81,1108.81 0.00 0,1 2125.33,2415.65" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2130.047,2440.824 A1132.303,1132.303 40.000 0,1 2128.167,2442.080 L2132.531,2448.624 A1140.168,1140.168 0.000 0,0 2134.424,2447.359 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2125.33,2415.65 L 2138.58,2435.05 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2134.42,2447.36 L 2130.05,2440.82 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2134.42,2447.36 A1140.17,1140.17 0.00 0,1 2132.53,2448.62" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2119.572,2447.755 A1132.303,1132.303 40.000 0,1 2117.678,2448.990 L2137.896,2480.052 A1169.365,1169.365 0.000 0,0 2139.852,2478.777 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2132.53,2448.62 L 2128.17,2442.08 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2139.85,2478.78 L 2119.57,2447.76 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2139.85,2478.78 A1169.36,1169.36 0.00 0,1 2137.90,2480.05" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2109.021,2454.570 A1132.303,1132.303 40.000 0,1 2107.113,2455.784 L2137.168,2503.099 A1188.356,1188.356 0.000 0,0 2139.169,2501.824 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2137.90,2480.05 L 2117.68,2448.99 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2139.17,2501.82 L 2109.02,2454.57 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2139.17,2501.82 A1188.36,1188.36 0.00 0,1 2137.17,2503.10" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2098.394,2461.267 A1132.303,1132.303 40.000 0,1 2096.474,2462.460 L2127.875,2513.128 A1191.912,1191.912 0.000 0,0 2129.896,2511.872 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2137.17,2503.10 L 2107.11,2455.78 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2129.90,2511.87 L 2098.39,2461.27 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2129.90,2511.87 A1191.91,1191.91 0.00 0,1 2127.87,2513.13" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2087.694,2467.845 A1132.303,1132.303 40.000 0,1 2085.761,2469.017 L2109.946,2509.026 A1179.054,1179.054 0.000 0,0 2111.960,2507.807 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2127.87,2513.13 L 2096.47,2462.46 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2111.96,2507.81 L 2087.69,2467.85 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2111.96,2507.81 A1179.05,1179.05 0.00 0,1 2109.95,2509.03" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2076.922,2474.305 A1132.303,1132.303 40.000 0,1 2074.975,2475.455 L2085.649,2493.563 A1153.323,1153.323 0.000 0,0 2087.632,2492.392 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2109.95,2509.03 L 2085.76,2469.02 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2087.63,2492.39 L 2076.92,2474.30 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2087.63,2492.39 A1153.32,1153.32 0.00 0,1 2085.65,2493.56" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2066.079,2480.645 A1132.303,1132.303 40.000 0,1 2064.120,2481.773 L2058.889,2472.669 A1121.803,1121.803 0.000 0,0 2060.830,2471.551 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2085.65,2493.56 L 2074.98,2475.45 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2060.83,2471.55 L 2066.08,2480.64 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2060.83,2471.55 A1121.80,1121.80 0.00 0,1 2058.89,2472.67" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2055.166,2486.864 A1132.303,1132.303 40.000 0,1 2053.194,2487.970 L2034.078,2453.830 A1093.174,1093.174 0.000 0,0 2035.981,2452.761 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2058.89,2472.67 L 2064.12,2481.77 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2035.98,2452.76 L 2055.17,2486.86 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2035.98,2452.76 A1093.17,1093.17 0.00 0,1 2034.08,2453.83" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2044.185,2492.961 A1132.303,1132.303 40.000 0,1 2042.201,2494.046 L2014.915,2444.022 A1075.320,1075.320 0.000 0,0 2016.799,2442.991 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2034.08,2453.83 L 2053.19,2487.97 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2016.80,2442.99 L 2044.18,2492.96 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2016.80,2442.99 A1075.32,1075.32 0.00 0,1 2014.92,2444.02" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2033.136,2498.937 A1132.303,1132.303 40.000 0,1 2031.141,2499.999 L2003.397,2447.765 A1073.157,1073.157 0.000 0,0 2005.288,2446.758 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2014.92,2444.02 L 2042.20,2494.05 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2005.29,2446.76 L 2033.14,2498.94 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2005.29,2446.76 A1073.16,1073.16 0.00 0,1 2003.40,2447.76" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2022.023,2504.789 A1132.303,1132.303 40.000 0,1 2020.015,2505.830 L1999.339,2465.836 A1087.280,1087.280 0.000 0,0 2001.266,2464.837 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2003.40,2447.76 L 2031.14,2500.00 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2001.27,2464.84 L 2022.02,2504.79 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2001.27,2464.84 A1087.28,1087.28 0.00 0,1 1999.34,2465.84" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2010.845,2510.518 A1132.303,1132.303 40.000 0,1 2008.826,2511.536 L2000.512,2495.008 A1113.801,1113.801 0.000 0,0 2002.497,2494.006 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1999.34,2465.84 L 2020.02,2505.83 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2002.50,2494.01 L 2010.84,2510.52 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2002.50,2494.01 A1113.80,1113.80 0.00 0,1 2000.51,2495.01" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1999.604,2516.123 A1132.303,1132.303 40.000 0,1 1997.574,2517.118 L2003.336,2528.898 A1145.416,1145.416 0.000 0,0 2005.390,2527.891 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2000.51,2495.01 L 2008.83,2511.54 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2005.39,2527.89 L 1999.60,2516.12 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2005.39,2527.89 A1145.42,1145.42 0.00 0,1 2003.34,2528.90" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1988.301,2521.602 A1132.303,1132.303 40.000 0,1 1986.260,2522.575 L2003.918,2559.708 A1173.420,1173.420 0.000 0,0 2006.033,2558.700 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2003.34,2528.90 L 1997.57,2517.12 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2006.03,2558.70 L 1988.30,2521.60 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2006.03,2558.70 A1173.42,1173.42 0.00 0,1 2003.92,2559.71" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1976.939,2526.956 A1132.303,1132.303 40.000 0,1 1974.887,2527.906 L1999.128,2580.377 A1190.102,1190.102 0.000 0,0 2001.285,2579.378 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 2003.92,2559.71 L 1986.26,2522.58 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2001.28,2579.38 L 1976.94,2526.96 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 2001.28,2579.38 A1190.10,1190.10 0.00 0,1 1999.13,2580.38" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1965.518,2532.183 A1132.303,1132.303 40.000 0,1 1963.456,2533.111 L1987.427,2586.546 A1190.869,1190.869 0.000 0,0 1989.595,2585.571 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1999.13,2580.38 L 1974.89,2527.91 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1989.60,2585.57 L 1965.52,2532.18 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1989.60,2585.57 A1190.87,1190.87 0.00 0,1 1987.43,2586.55" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1954.039,2537.284 A1132.303,1132.303 40.000 0,1 1951.967,2538.188 L1969.213,2577.802 A1175.508,1175.508 0.000 0,0 1971.364,2576.863 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1987.43,2586.55 L 1963.46,2533.11 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1971.36,2576.86 L 1954.04,2537.28 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1971.36,2576.86 A1175.51,1175.51 0.00 0,1 1969.21,2577.80" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1942.505,2542.257 A1132.303,1132.303 40.000 0,1 1940.423,2543.138 L1946.626,2557.830 A1148.250,1148.250 0.000 0,0 1948.737,2556.936 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1969.21,2577.80 L 1951.97,2538.19 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1948.74,2556.94 L 1942.50,2542.26 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1948.74,2556.94 A1148.25,1148.25 0.00 0,1 1946.63,2557.83" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1930.916,2547.101 A1132.303,1132.303 40.000 0,1 1928.824,2547.959 L1922.878,2533.427 A1116.601,1116.601 0.000 0,0 1924.940,2532.581 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1946.63,2557.83 L 1940.42,2543.14 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1924.94,2532.58 L 1930.92,2547.10 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1924.94,2532.58 A1116.60,1116.60 0.00 0,1 1922.88,2533.43" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1919.274,2551.817 A1132.303,1132.303 40.000 0,1 1917.173,2552.652 L1901.321,2512.651 A1089.275,1089.275 0.000 0,0 1903.342,2511.848 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1922.88,2533.43 L 1928.82,2547.96 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1903.34,2511.85 L 1919.27,2551.82 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1903.34,2511.85 A1089.28,1089.28 0.00 0,1 1901.32,2512.65" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1907.581,2556.403 A1132.303,1132.303 40.000 0,1 1905.471,2557.215 L1884.520,2502.590 A1073.798,1073.798 0.000 0,0 1886.522,2501.820 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1901.32,2512.65 L 1917.17,2552.65 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1886.52,2501.82 L 1907.58,2556.40 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1886.52,2501.82 A1073.80,1073.80 0.00 0,1 1884.52,2502.59" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1895.837,2560.859 A1132.303,1132.303 40.000 0,1 1893.718,2561.647 L1873.595,2507.387 A1074.431,1074.431 0.000 0,0 1875.606,2506.639 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1884.52,2502.59 L 1905.47,2557.21 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1875.61,2506.64 L 1895.84,2560.86 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1875.61,2506.64 A1074.43,1074.43 0.00 0,1 1873.60,2507.39" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1884.045,2565.185 A1132.303,1132.303 40.000 0,1 1881.917,2565.950 L1867.986,2527.066 A1090.999,1090.999 0.000 0,0 1870.036,2526.329 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1873.60,2507.39 L 1893.72,2561.65 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1870.04,2526.33 L 1884.04,2565.18 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1870.04,2526.33 A1091.00,1091.00 0.00 0,1 1867.99,2527.07" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1872.205,2569.379 A1132.303,1132.303 40.000 0,1 1870.069,2570.120 L1865.702,2557.492 A1118.941,1118.941 0.000 0,0 1867.813,2556.760 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1867.99,2527.07 L 1881.92,2565.95 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1867.81,2556.76 L 1872.21,2569.38 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1867.81,2556.76 A1118.94,1118.94 0.00 0,1 1865.70,2557.49" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1860.320,2573.442 A1132.303,1132.303 40.000 0,1 1858.176,2574.160 L1863.952,2591.481 A1150.562,1150.562 0.000 0,0 1866.131,2590.753 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1865.70,2557.49 L 1870.07,2570.12 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1866.13,2590.75 L 1860.32,2573.44 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1866.13,2590.75 A1150.56,1150.56 0.00 0,1 1863.95,2591.48" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1848.390,2577.373 A1132.303,1132.303 40.000 0,1 1846.239,2578.067 L1859.954,2620.771 A1177.155,1177.155 0.000 0,0 1862.191,2620.050 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1863.95,2591.48 L 1858.18,2574.16 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1862.19,2620.05 L 1848.39,2577.37 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1862.19,2620.05 A1177.16,1177.16 0.00 0,1 1859.95,2620.77" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1836.418,2581.172 A1132.303,1132.303 40.000 0,1 1834.258,2581.841 L1851.703,2638.303 A1191.398,1191.398 0.000 0,0 1853.976,2637.598 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1859.95,2620.77 L 1846.24,2578.07 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1853.98,2637.60 L 1836.42,2581.17 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1853.98,2637.60 A1191.40,1191.40 0.00 0,1 1851.70,2638.30" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1824.404,2584.837 A1132.303,1132.303 40.000 0,1 1822.237,2585.483 L1838.477,2640.188 A1189.368,1189.368 0.000 0,0 1840.753,2639.510 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1851.70,2638.30 L 1834.26,2581.84 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1840.75,2639.51 L 1824.40,2584.84 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1840.75,2639.51 A1189.37,1189.37 0.00 0,1 1838.48,2640.19" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1812.350,2588.369 A1132.303,1132.303 40.000 0,1 1810.176,2588.990 L1820.948,2626.808 A1171.624,1171.624 0.000 0,0 1823.197,2626.165 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1838.48,2640.19 L 1822.24,2585.48 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1823.20,2626.16 L 1812.35,2588.37 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1823.20,2626.16 A1171.62,1171.62 0.00 0,1 1820.95,2626.81" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1800.258,2591.767 A1132.303,1132.303 40.000 0,1 1798.077,2592.364 L1800.907,2602.735 A1143.053,1143.053 0.000 0,0 1803.109,2602.132 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1820.95,2626.81 L 1810.18,2588.99 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1803.11,2602.13 L 1800.26,2591.77 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1803.11,2602.13 A1143.05,1143.05 0.00 0,1 1800.91,2602.74" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1788.129,2595.030 A1132.303,1132.303 40.000 0,1 1785.942,2595.603 L1780.694,2575.496 A1111.521,1111.521 0.000 0,0 1782.841,2574.933 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1800.91,2602.74 L 1798.08,2592.36 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1782.84,2574.93 L 1788.13,2595.03 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1782.84,2574.93 A1111.52,1111.52 0.00 0,1 1780.69,2575.50" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1775.964,2598.159 A1132.303,1132.303 40.000 0,1 1773.771,2598.708 L1762.506,2553.500 A1085.712,1085.712 0.000 0,0 1764.609,2552.974 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1780.69,2575.50 L 1785.94,2595.60 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1764.61,2552.97 L 1775.96,2598.16 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1764.61,2552.97 A1085.71,1085.71 0.00 0,1 1762.51,2553.50" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1763.765,2601.153 A1132.303,1132.303 40.000 0,1 1761.566,2601.677 L1747.805,2543.718 A1072.732,1072.732 0.000 0,0 1749.889,2543.221 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1762.51,2553.50 L 1773.77,2598.71 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1749.89,2543.22 L 1763.77,2601.15 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1749.89,2543.22 A1072.73,1072.73 0.00 0,1 1747.81,2543.72" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1751.534,2604.011 A1132.303,1132.303 40.000 0,1 1749.329,2604.511 L1736.966,2549.742 A1076.156,1076.156 0.000 0,0 1739.062,2549.267 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1747.81,2543.72 L 1761.57,2601.68 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1739.06,2549.27 L 1751.53,2604.01 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1739.06,2549.27 A1076.16,1076.16 0.00 0,1 1736.97,2549.74" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1739.272,2606.733 A1132.303,1132.303 40.000 0,1 1737.062,2607.209 L1729.260,2570.772 A1095.040,1095.040 0.000 0,0 1731.398,2570.312 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1736.97,2549.74 L 1749.33,2604.51 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1731.40,2570.31 L 1739.27,2606.73 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1731.40,2570.31 A1095.04,1095.04 0.00 0,1 1729.26,2570.77" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1726.981,2609.319 A1132.303,1132.303 40.000 0,1 1724.765,2609.770 L1723.154,2601.814 A1124.185,1124.185 0.000 0,0 1725.353,2601.366 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1729.26,2570.77 L 1737.06,2607.21 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1725.35,2601.37 L 1726.98,2609.32 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1725.35,2601.37 A1124.18,1124.18 0.00 0,1 1723.15,2601.81" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1714.661,2611.769 A1132.303,1132.303 40.000 0,1 1712.441,2612.195 L1716.805,2635.045 A1155.565,1155.565 0.000 0,0 1719.071,2634.609 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1723.15,2601.81 L 1724.77,2609.77 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1719.07,2634.61 L 1714.66,2611.77 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1719.07,2634.61 A1155.57,1155.57 0.00 0,1 1716.81,2635.04" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1702.315,2614.082 A1132.303,1132.303 40.000 0,1 1700.090,2614.483 L1708.614,2661.961 A1180.540,1180.540 0.000 0,0 1710.934,2661.542 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1716.81,2635.04 L 1712.44,2612.20 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1710.93,2661.54 L 1702.32,2614.08 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1710.93,2661.54 A1180.54,1180.54 0.00 0,1 1708.61,2661.96" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1689.945,2616.257 A1132.303,1132.303 40.000 0,1 1687.715,2616.634 L1697.650,2675.734 A1192.232,1192.232 0.000 0,0 1699.998,2675.337 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1708.61,2661.96 L 1700.09,2614.48 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1700.00,2675.34 L 1689.94,2616.26 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1700.00,2675.34 A1192.23,1192.23 0.00 0,1 1697.65,2675.73" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1677.550,2618.296 A1132.303,1132.303 40.000 0,1 1675.317,2618.648 L1683.851,2673.102 A1187.421,1187.421 0.000 0,0 1686.193,2672.732 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1697.65,2675.73 L 1687.72,2616.63 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1686.19,2672.73 L 1677.55,2618.30 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1686.19,2672.73 A1187.42,1187.42 0.00 0,1 1683.85,2673.10" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1665.135,2620.196 A1132.303,1132.303 40.000 0,1 1662.897,2620.524 L1667.951,2655.289 A1167.433,1167.433 0.000 0,0 1670.258,2654.951 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1683.85,2673.10 L 1675.32,2618.65 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1670.26,2654.95 L 1665.13,2620.20 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1670.26,2654.95 A1167.43,1167.43 0.00 0,1 1667.95,2655.29" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1652.698,2621.959 A1132.303,1132.303 40.000 0,1 1650.458,2622.262 L1651.184,2627.683 A1137.772,1137.772 0.000 0,0 1653.436,2627.378 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1667.95,2655.29 L 1662.90,2620.52 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1653.44,2627.38 L 1652.70,2621.96 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1653.44,2627.38 A1137.77,1137.77 0.00 0,1 1651.18,2627.68" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1640.243,2623.584 A1132.303,1132.303 40.000 0,1 1637.999,2623.862 L1634.867,2598.355 A1106.604,1106.604 0.000 0,0 1637.060,2598.084 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1651.18,2627.68 L 1650.46,2622.26 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1637.06,2598.08 L 1640.24,2623.58 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1637.06,2598.08 A1106.60,1106.60 0.00 0,1 1634.87,2598.36" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1627.771,2625.071 A1132.303,1132.303 40.000 0,1 1625.524,2625.323 L1620.005,2575.841 A1082.513,1082.513 0.000 0,0 1622.152,2575.599 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1634.87,2598.36 L 1638.00,2623.86 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1622.15,2575.60 L 1627.77,2625.07 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1622.15,2575.60 A1082.51,1082.51 0.00 0,1 1620.00,2575.84" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1615.283,2626.419 A1132.303,1132.303 40.000 0,1 1613.033,2626.647 L1607.027,2566.777 A1072.132,1072.132 0.000 0,0 1609.157,2566.561 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1620.00,2575.84 L 1625.52,2625.32 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1609.16,2566.56 L 1615.28,2626.42 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1609.16,2566.56 A1072.13,1072.13 0.00 0,1 1607.03,2566.78" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1602.781,2627.628 A1132.303,1132.303 40.000 0,1 1600.529,2627.831 L1595.736,2574.061 A1078.320,1078.320 0.000 0,0 1597.880,2573.868 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1607.03,2566.78 L 1613.03,2626.65 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1597.88,2573.87 L 1602.78,2627.63 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1597.88,2573.87 A1078.32,1078.32 0.00 0,1 1595.74,2574.06" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1590.266,2628.699 A1132.303,1132.303 40.000 0,1 1588.012,2628.877 L1585.452,2596.046 A1099.372,1099.372 0.000 0,0 1587.640,2595.873 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1595.74,2574.06 L 1600.53,2627.83 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1587.64,2595.87 L 1590.27,2628.70 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1587.64,2595.87 A1099.37,1099.37 0.00 0,1 1585.45,2596.05" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1577.740,2629.631 A1132.303,1132.303 40.000 0,1 1575.484,2629.784 L1575.297,2626.980 A1129.493,1129.493 0.000 0,0 1577.547,2626.827 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1585.45,2596.05 L 1588.01,2628.88 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1577.55,2626.83 L 1577.74,2629.63 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1577.55,2626.83 A1129.49,1129.49 0.00 0,1 1575.30,2626.98" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1565.204,2630.424 A1132.303,1132.303 40.000 0,1 1562.947,2630.552 L1564.508,2658.592 A1160.387,1160.387 0.000 0,0 1566.821,2658.461 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1575.30,2626.98 L 1575.48,2629.78 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1566.82,2658.46 L 1565.20,2630.42 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1566.82,2658.46 A1160.39,1160.39 0.00 0,1 1564.51,2658.59" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1552.660,2631.077 A1132.303,1132.303 40.000 0,1 1550.402,2631.180 L1552.683,2682.374 A1183.547,1183.547 0.000 0,0 1555.044,2682.267 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1564.51,2658.59 L 1562.95,2630.55 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1555.04,2682.27 L 1552.66,2631.08 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1555.04,2682.27 A1183.55,1183.55 0.00 0,1 1552.68,2682.37" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1540.110,2631.592 A1132.303,1132.303 40.000 0,1 1537.851,2631.670 L1539.866,2691.931 A1192.597,1192.597 0.000 0,0 1542.246,2691.849 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1552.68,2682.37 L 1550.40,2631.18 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1542.25,2691.85 L 1540.11,2631.59 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1542.25,2691.85 A1192.60,1192.60 0.00 0,1 1539.87,2691.93" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1527.555,2631.967 A1132.303,1132.303 40.000 0,1 1525.295,2632.020 L1526.473,2684.749 A1185.044,1185.044 0.000 0,0 1528.839,2684.693 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1539.87,2691.93 L 1537.85,2631.67 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1528.84,2684.69 L 1527.56,2631.97 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1528.84,2684.69 A1185.04,1185.04 0.00 0,1 1526.47,2684.75" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1514.997,2632.203 A1132.303,1132.303 40.000 0,1 1512.736,2632.231 L1513.081,2662.895 A1162.968,1162.968 0.000 0,0 1515.403,2662.866 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1526.47,2684.75 L 1525.30,2632.02 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1515.40,2662.87 L 1515.00,2632.20 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1515.40,2662.87 A1162.97,1162.97 0.00 0,1 1513.08,2662.89" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1502.437,2632.300 A1132.303,1132.303 40.000 0,1 1500.176,2632.303 L1500.176,2632.448 A1132.448,1132.448 0.000 0,0 1502.437,2632.445 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1513.08,2662.89 L 1512.74,2632.23 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1502.44,2632.45 L 1502.44,2632.30 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1502.44,2632.45 A1132.45,1132.45 0.00 0,1 1500.18,2632.45" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1489.876,2632.257 A1132.303,1132.303 40.000 0,1 1487.615,2632.235 L1487.948,2601.822 A1101.888,1101.888 0.000 0,0 1490.148,2601.844 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1500.18,2632.45 L 1500.18,2632.30 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1490.15,2601.84 L 1489.88,2632.26 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1490.15,2601.84 A1101.89,1101.89 0.00 0,1 1487.95,2601.82" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1477.317,2632.075 A1132.303,1132.303 40.000 0,1 1475.057,2632.028 L1476.215,2579.441 A1079.703,1079.703 0.000 0,0 1478.371,2579.486 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1487.95,2601.82 L 1487.62,2632.23 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1478.37,2579.49 L 1477.32,2632.08 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1478.37,2579.49 A1079.70,1079.70 0.00 0,1 1476.22,2579.44" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1464.760,2631.754 A1132.303,1132.303 40.000 0,1 1462.501,2631.682 L1464.498,2571.413 A1072.001,1072.001 0.000 0,0 1466.637,2571.482 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1476.22,2579.44 L 1475.06,2632.03 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1466.64,2571.48 L 1464.76,2631.75 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1466.64,2571.48 A1072.00,1072.00 0.00 0,1 1464.50,2571.41" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1452.208,2631.294 A1132.303,1132.303 40.000 0,1 1449.949,2631.196 L1452.221,2579.848 A1080.905,1080.905 0.000 0,0 1454.378,2579.942 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1464.50,2571.41 L 1462.50,2631.68 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1454.38,2579.94 L 1452.21,2631.29 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1454.38,2579.94 A1080.90,1080.90 0.00 0,1 1452.22,2579.85" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1439.662,2630.694 A1132.303,1132.303 40.000 0,1 1437.404,2630.571 L1438.971,2602.273 A1103.961,1103.961 0.000 0,0 1441.172,2602.393 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1452.22,2579.85 L 1449.95,2631.20 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1441.17,2602.39 L 1439.66,2630.69 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1441.17,2602.39 A1103.96,1103.96 0.00 0,1 1438.97,2602.27" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1427.123,2629.955 A1132.303,1132.303 40.000 0,1 1424.867,2629.807 L1424.700,2632.321 A1134.822,1134.822 0.000 0,0 1426.961,2632.469 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1438.97,2602.27 L 1437.40,2630.57 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1426.96,2632.47 L 1427.12,2629.95 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1426.96,2632.47 A1134.82,1134.82 0.00 0,1 1424.70,2632.32" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1414.593,2629.077 A1132.303,1132.303 40.000 0,1 1412.339,2628.904 L1409.808,2661.492 A1164.989,1164.989 0.000 0,0 1412.128,2661.670 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1424.70,2632.32 L 1424.87,2629.81 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1412.13,2661.67 L 1414.59,2629.08 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1412.13,2661.67 A1164.99,1164.99 0.00 0,1 1409.81,2661.49" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1402.074,2628.060 A1132.303,1132.303 40.000 0,1 1399.822,2627.862 L1395.057,2681.504 A1186.155,1186.155 0.000 0,0 1397.416,2681.711 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1409.81,2661.49 L 1412.34,2628.90 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1397.42,2681.71 L 1402.07,2628.06 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1397.42,2681.71 A1186.16,1186.16 0.00 0,1 1395.06,2681.50" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1389.567,2626.904 A1132.303,1132.303 40.000 0,1 1387.317,2626.682 L1381.327,2686.573 A1192.493,1192.493 0.000 0,0 1383.696,2686.807 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1395.06,2681.50 L 1399.82,2627.86 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1383.70,2686.81 L 1389.57,2626.90 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1383.70,2686.81 A1192.49,1192.49 0.00 0,1 1381.33,2686.57" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1377.073,2625.610 A1132.303,1132.303 40.000 0,1 1374.825,2625.362 L1369.303,2675.009 A1182.256,1182.256 0.000 0,0 1371.650,2675.268 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1381.33,2686.57 L 1387.32,2626.68 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1371.65,2675.27 L 1377.07,2625.61 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1371.65,2675.27 A1182.26,1182.26 0.00 0,1 1369.30,2675.01" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1364.594,2624.177 A1132.303,1132.303 40.000 0,1 1362.350,2623.905 L1359.194,2649.673 A1158.264,1158.264 0.000 0,0 1361.490,2649.952 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1369.30,2675.01 L 1374.83,2625.36 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1361.49,2649.95 L 1364.59,2624.18 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1361.49,2649.95 A1158.26,1158.26 0.00 0,1 1359.19,2649.67" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1352.132,2622.606 A1132.303,1132.303 40.000 0,1 1349.891,2622.309 L1350.578,2617.175 A1127.123,1127.123 0.000 0,0 1352.809,2617.471 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1359.19,2649.67 L 1362.35,2623.90 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1352.81,2617.47 L 1352.13,2622.61 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1352.81,2617.47 A1127.12,1127.12 0.00 0,1 1350.58,2617.17" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1339.688,2620.897 A1132.303,1132.303 40.000 0,1 1337.451,2620.574 L1342.460,2586.042 A1097.409,1097.409 0.000 0,0 1344.629,2586.354 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1350.58,2617.17 L 1349.89,2622.31 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1344.63,2586.35 L 1339.69,2620.90 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1344.63,2586.35 A1097.41,1097.41 0.00 0,1 1342.46,2586.04" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1327.264,2619.049 A1132.303,1132.303 40.000 0,1 1325.030,2618.702 L1333.529,2564.363 A1077.303,1077.303 0.000 0,0 1335.655,2564.693 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1342.46,2586.04 L 1337.45,2620.57 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1335.65,2564.69 L 1327.26,2619.05 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1335.65,2564.69 A1077.30,1077.30 0.00 0,1 1333.53,2564.36" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1314.862,2617.064 A1132.303,1132.303 40.000 0,1 1312.632,2616.693 L1322.554,2557.558 A1072.342,1072.342 0.000 0,0 1324.666,2557.910 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1333.53,2564.36 L 1325.03,2618.70 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1324.67,2557.91 L 1314.86,2617.06 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1324.67,2557.91 A1072.34,1072.34 0.00 0,1 1322.55,2557.56" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1302.482,2614.942 A1132.303,1132.303 40.000 0,1 1300.256,2614.545 L1308.796,2566.894 A1083.892,1083.892 0.000 0,0 1310.926,2567.273 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1322.55,2557.56 L 1312.63,2616.69 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1310.93,2567.27 L 1302.48,2614.94 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1310.93,2567.27 A1083.89,1083.89 0.00 0,1 1308.80,2566.89" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1290.126,2612.682 A1132.303,1132.303 40.000 0,1 1287.905,2612.261 L1292.312,2589.147 A1108.772,1108.772 0.000 0,0 1294.487,2589.560 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1308.80,2566.89 L 1300.26,2614.55 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1294.49,2589.56 L 1290.13,2612.68 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1294.49,2589.56 A1108.77,1108.77 0.00 0,1 1292.31,2589.15" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1277.796,2610.286 A1132.303,1132.303 40.000 0,1 1275.580,2609.840 L1274.028,2617.514 A1140.132,1140.132 0.000 0,0 1276.260,2617.963 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1292.31,2589.15 L 1287.90,2612.26 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1276.26,2617.96 L 1277.80,2610.29 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1276.26,2617.96 A1140.13,1140.13 0.00 0,1 1274.03,2617.51" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1265.494,2607.753 A1132.303,1132.303 40.000 0,1 1263.282,2607.282 L1255.540,2643.497 A1169.336,1169.336 0.000 0,0 1257.824,2643.983 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1274.03,2617.51 L 1275.58,2609.84 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1257.82,2643.98 L 1265.49,2607.75 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1257.82,2643.98 A1169.34,1169.34 0.00 0,1 1255.54,2643.50" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1253.220,2605.083 A1132.303,1132.303 40.000 0,1 1251.014,2604.588 L1238.691,2659.256 A1188.342,1188.342 0.000 0,0 1241.006,2659.776 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1255.54,2643.50 L 1263.28,2607.28 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1241.01,2659.78 L 1253.22,2605.08 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1241.01,2659.78 A1188.34,1188.34 0.00 0,1 1238.69,2659.26" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1240.977,2602.278 A1132.303,1132.303 40.000 0,1 1238.776,2601.758 L1225.023,2659.765 A1191.918,1191.918 0.000 0,0 1227.339,2660.312 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1238.69,2659.26 L 1251.01,2604.59 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1227.34,2660.31 L 1240.98,2602.28 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1227.34,2660.31 A1191.92,1191.92 0.00 0,1 1225.02,2659.77" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1228.765,2599.337 A1132.303,1132.303 40.000 0,1 1226.571,2598.793 L1215.276,2644.183 A1179.077,1179.077 0.000 0,0 1217.561,2644.749 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1225.02,2659.77 L 1238.78,2601.76 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1217.56,2644.75 L 1228.77,2599.34 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1217.56,2644.75 A1179.08,1179.08 0.00 0,1 1215.28,2644.18" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1216.587,2596.260 A1132.303,1132.303 40.000 0,1 1214.399,2595.692 L1209.088,2616.065 A1153.357,1153.357 0.000 0,0 1211.317,2616.644 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1215.28,2644.18 L 1226.57,2598.79 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1211.32,2616.64 L 1216.59,2596.26 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1211.32,2616.64 A1153.36,1153.36 0.00 0,1 1209.09,2616.07" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1204.444,2593.049 A1132.303,1132.303 40.000 0,1 1202.262,2592.457 L1205.014,2582.361 A1121.839,1121.839 0.000 0,0 1207.175,2582.948 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1209.09,2616.07 L 1214.40,2595.69 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1207.18,2582.95 L 1204.44,2593.05 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1207.18,2582.95 A1121.84,1121.84 0.00 0,1 1205.01,2582.36" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1192.337,2589.703 A1132.303,1132.303 40.000 0,1 1190.162,2589.087 L1200.861,2551.478 A1093.202,1093.202 0.000 0,0 1202.961,2552.074 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1205.01,2582.36 L 1202.26,2592.46 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1202.96,2552.07 L 1192.34,2589.70 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1202.96,2552.07 A1093.20,1093.20 0.00 0,1 1200.86,2551.48" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1180.268,2586.223 A1132.303,1132.303 40.000 0,1 1178.100,2585.583 L1194.296,2530.963 A1075.332,1075.332 0.000 0,0 1196.355,2531.571 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1200.86,2551.48 L 1190.16,2589.09 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1196.36,2531.57 L 1180.27,2586.22 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1196.36,2531.57 A1075.33,1075.33 0.00 0,1 1194.30,2530.96" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1168.239,2582.610 A1132.303,1132.303 40.000 0,1 1166.078,2581.945 L1183.522,2525.423 A1073.150,1073.150 0.000 0,0 1185.570,2526.053 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1194.30,2530.96 L 1178.10,2585.58 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1185.57,2526.05 L 1168.24,2582.61 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1185.57,2526.05 A1073.15,1073.15 0.00 0,1 1183.52,2525.42" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1156.250,2578.863 A1132.303,1132.303 40.000 0,1 1154.096,2578.174 L1167.857,2535.281 A1087.256,1087.256 0.000 0,0 1169.925,2535.942 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1183.52,2525.42 L 1166.08,2581.95 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1169.93,2535.94 L 1156.25,2578.86 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1169.93,2535.94 A1087.26,1087.26 0.00 0,1 1167.86,2535.28" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1144.303,2574.983 A1132.303,1132.303 40.000 0,1 1142.158,2574.271 L1148.016,2556.685 A1113.766,1113.766 0.000 0,0 1150.126,2557.385 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1167.86,2535.28 L 1154.10,2578.17 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1150.13,2557.39 L 1144.30,2574.98 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1150.13,2557.39 A1113.77,1113.77 0.00 0,1 1148.02,2556.68" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1132.401,2570.972 A1132.303,1132.303 40.000 0,1 1130.263,2570.235 L1125.993,2582.597 A1145.381,1145.381 0.000 0,0 1128.155,2583.341 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1148.02,2556.68 L 1142.16,2574.27 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1128.15,2583.34 L 1132.40,2570.97 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1128.15,2583.34 A1145.38,1145.38 0.00 0,1 1125.99,2582.60" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1120.543,2566.828 A1132.303,1132.303 40.000 0,1 1118.414,2566.068 L1104.566,2604.756 A1173.394,1173.394 0.000 0,0 1106.773,2605.543 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1125.99,2582.60 L 1130.26,2570.24 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1106.77,2605.54 L 1120.54,2566.83 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1106.77,2605.54 A1173.39,1173.39 0.00 0,1 1104.57,2604.76" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1108.732,2562.553 A1132.303,1132.303 40.000 0,1 1106.612,2561.770 L1086.534,2615.959 A1190.092,1190.092 0.000 0,0 1088.763,2616.783 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1104.57,2604.76 L 1118.41,2566.07 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1088.76,2616.78 L 1108.73,2562.55 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1088.76,2616.78 A1190.09,1190.09 0.00 0,1 1086.53,2615.96" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1096.970,2558.147 A1132.303,1132.303 40.000 0,1 1094.858,2557.341 L1073.900,2612.037 A1190.877,1190.877 0.000 0,0 1076.121,2612.886 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1086.53,2615.96 L 1106.61,2561.77 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1076.12,2612.89 L 1096.97,2558.15 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1076.12,2612.89 A1190.88,1190.88 0.00 0,1 1073.90,2612.04" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1085.257,2553.612 A1132.303,1132.303 40.000 0,1 1083.154,2552.781 L1067.239,2592.976 A1175.533,1175.533 0.000 0,0 1069.422,2593.838 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1073.90,2612.04 L 1094.86,2557.34 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1069.42,2593.84 L 1085.26,2553.61 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1069.42,2593.84 A1175.53,1175.53 0.00 0,1 1067.24,2592.98" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1073.595,2548.946 A1132.303,1132.303 40.000 0,1 1071.501,2548.093 L1065.453,2562.886 A1148.285,1148.285 0.000 0,0 1067.576,2563.752 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1067.24,2592.98 L 1083.15,2552.78 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1067.58,2563.75 L 1073.59,2548.95 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1067.58,2563.75 A1148.29,1148.29 0.00 0,1 1065.45,2562.89" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1061.985,2544.151 A1132.303,1132.303 40.000 0,1 1059.901,2543.275 L1065.991,2528.840 A1116.636,1116.636 0.000 0,0 1068.046,2529.705 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1065.45,2562.89 L 1071.50,2548.09 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1068.05,2529.70 L 1061.99,2544.15 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1068.05,2529.70 A1116.64,1116.64 0.00 0,1 1065.99,2528.84" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1050.430,2539.228 A1132.303,1132.303 40.000 0,1 1048.356,2538.329 L1065.508,2498.896 A1089.301,1089.301 0.000 0,0 1067.503,2499.761 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1065.99,2528.84 L 1059.90,2543.27 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1067.50,2499.76 L 1050.43,2539.23 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1067.50,2499.76 A1089.30,1089.30 0.00 0,1 1065.51,2498.90" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1038.929,2534.178 A1132.303,1132.303 40.000 0,1 1036.865,2533.255 L1060.791,2479.876 A1073.807,1073.807 0.000 0,0 1062.749,2480.751 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1065.51,2498.90 L 1048.36,2538.33 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1062.75,2480.75 L 1038.93,2534.18 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1062.75,2480.75 A1073.81,1073.81 0.00 0,1 1060.79,2479.88" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1027.486,2528.999 A1132.303,1132.303 40.000 0,1 1025.432,2528.054 L1049.692,2475.501 A1074.420,1074.420 0.000 0,0 1051.640,2476.398 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1060.79,2479.88 L 1036.87,2533.25 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1051.64,2476.40 L 1027.49,2529.00 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1051.64,2476.40 A1074.42,1074.42 0.00 0,1 1049.69,2475.50" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1016.100,2523.694 A1132.303,1132.303 40.000 0,1 1014.057,2522.726 L1031.795,2485.396 A1090.972,1090.972 0.000 0,0 1033.763,2486.329 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1049.69,2475.50 L 1025.43,2528.05 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1033.76,2486.33 L 1016.10,2523.69 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1033.76,2486.33 A1090.97,1090.97 0.00 0,1 1031.79,2485.40" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1004.775,2518.264 A1132.303,1132.303 40.000 0,1 1002.742,2517.273 L1008.626,2505.237 A1118.905,1118.905 0.000 0,0 1010.634,2506.216 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1031.79,2485.40 L 1014.06,2522.73 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1010.63,2506.22 L 1004.77,2518.26 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 1010.63,2506.22 A1118.91,1118.91 0.00 0,1 1008.63,2505.24" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M993.510,2512.708 A1132.303,1132.303 40.000 0,1 991.488,2511.694 L983.304,2527.978 A1150.527,1150.527 0.000 0,0 985.358,2529.007 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 1008.63,2505.24 L 1002.74,2517.27 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 985.36,2529.01 L 993.51,2512.71 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 985.36,2529.01 A1150.53,1150.53 0.00 0,1 983.30,2527.98" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M982.307,2507.027 A1132.303,1132.303 40.000 0,1 980.297,2505.991 L959.722,2545.819 A1177.131,1177.131 0.000 0,0 961.811,2546.895 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 983.30,2527.98 L 991.49,2511.69 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 961.81,2546.90 L 982.31,2507.03 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 961.81,2546.90 A1177.13,1177.13 0.00 0,1 959.72,2545.82" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M971.168,2501.222 A1132.303,1132.303 40.000 0,1 969.170,2500.164 L941.469,2552.357 A1191.390,1191.390 0.000 0,0 943.572,2553.470 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 959.72,2545.82 L 980.30,2505.99 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 943.57,2553.47 L 971.17,2501.22 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 943.57,2553.47 A1191.39,1191.39 0.00 0,1 941.47,2552.36" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M960.094,2495.294 A1132.303,1132.303 40.000 0,1 958.108,2494.214 L930.792,2544.330 A1189.379,1189.379 0.000 0,0 932.879,2545.465 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 941.47,2552.36 L 969.17,2500.16 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 932.88,2545.46 L 960.09,2495.29 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 932.88,2545.46 A1189.38,1189.38 0.00 0,1 930.79,2544.33" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M949.087,2489.244 A1132.303,1132.303 40.000 0,1 947.113,2488.142 L927.899,2522.481 A1171.652,1171.652 0.000 0,0 929.942,2523.622 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 930.79,2544.33 L 958.11,2494.21 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 929.94,2523.62 L 949.09,2489.24 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 929.94,2523.62 A1171.65,1171.65 0.00 0,1 927.90,2522.48" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M938.147,2483.072 A1132.303,1132.303 40.000 0,1 936.185,2481.948 L930.815,2491.302 A1143.089,1143.089 0.000 0,0 932.795,2492.437 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 927.90,2522.48 L 947.11,2488.14 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 932.80,2492.44 L 938.15,2483.07 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 932.80,2492.44 A1143.09,1143.09 0.00 0,1 930.81,2491.30" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M927.277,2476.779 A1132.303,1132.303 40.000 0,1 925.328,2475.634 L935.857,2457.757 A1111.556,1111.556 0.000 0,0 937.771,2458.882 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 930.81,2491.30 L 936.19,2481.95 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 937.77,2458.88 L 927.28,2476.78 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 937.77,2458.88 A1111.56,1111.56 0.00 0,1 935.86,2457.76" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M916.477,2470.366 A1132.303,1132.303 40.000 0,1 914.540,2469.199 L938.618,2429.339 A1085.735,1085.735 0.000 0,0 940.475,2430.458 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 935.86,2457.76 L 925.33,2475.63 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 940.47,2430.46 L 916.48,2470.37 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 940.47,2430.46 A1085.74,1085.74 0.00 0,1 938.62,2429.34" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M905.749,2463.833 A1132.303,1132.303 40.000 0,1 903.825,2462.645 L935.187,2412.005 A1072.738,1072.738 0.000 0,0 937.009,2413.131 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 938.62,2429.34 L 914.54,2469.20 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 937.01,2413.13 L 905.75,2463.83 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 937.01,2413.13 A1072.74,1072.74 0.00 0,1 935.19,2412.01" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M895.094,2457.182 A1132.303,1132.303 40.000 0,1 893.184,2455.972 L923.280,2408.558 A1076.143,1076.143 0.000 0,0 925.096,2409.708 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 935.19,2412.01 L 903.83,2462.64 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 925.10,2409.71 L 895.09,2457.18 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 925.10,2409.71 A1076.14,1076.14 0.00 0,1 923.28,2408.56" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M884.513,2450.413 A1132.303,1132.303 40.000 0,1 882.616,2449.182 L902.949,2417.922 A1095.012,1095.012 0.000 0,0 904.783,2419.112 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 923.28,2408.56 L 893.18,2455.97 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 904.78,2419.11 L 884.51,2450.41 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 904.78,2419.11 A1095.01,1095.01 0.00 0,1 902.95,2417.92" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M874.008,2443.527 A1132.303,1132.303 40.000 0,1 872.125,2442.275 L876.647,2435.490 A1124.149,1124.149 0.000 0,0 878.516,2436.733 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 902.95,2417.92 L 882.62,2449.18 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 878.52,2436.73 L 874.01,2443.53 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 878.52,2436.73 A1124.15,1124.15 0.00 0,1 876.65,2435.49" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M863.580,2436.525 A1132.303,1132.303 40.000 0,1 861.711,2435.252 L848.617,2454.439 A1155.532,1155.532 0.000 0,0 850.524,2455.738 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 876.65,2435.49 L 872.13,2442.28 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 850.52,2455.74 L 863.58,2436.52 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 850.52,2455.74 A1155.53,1155.53 0.00 0,1 848.62,2454.44" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M853.231,2429.408 A1132.303,1132.303 40.000 0,1 851.376,2428.114 L823.757,2467.635 A1180.518,1180.518 0.000 0,0 825.690,2468.983 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 848.62,2454.44 L 861.71,2435.25 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 825.69,2468.98 L 853.23,2429.41 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 825.69,2468.98 A1180.52,1180.52 0.00 0,1 823.76,2467.63" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M842.961,2422.176 A1132.303,1132.303 40.000 0,1 841.121,2420.862 L806.251,2469.597 A1192.227,1192.227 0.000 0,0 808.188,2470.980 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 823.76,2467.63 L 851.38,2428.11 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 808.19,2470.98 L 842.96,2422.18 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 808.19,2470.98 A1192.23,1192.23 0.00 0,1 806.25,2469.60" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M832.772,2414.831 A1132.303,1132.303 40.000 0,1 830.946,2413.497 L798.369,2457.976 A1187.436,1187.436 0.000 0,0 800.283,2459.375 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 806.25,2469.60 L 841.12,2420.86 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 800.28,2459.38 L 832.77,2414.83 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 800.28,2459.38 A1187.44,1187.44 0.00 0,1 798.37,2457.98" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M822.665,2407.373 A1132.303,1132.303 40.000 0,1 820.854,2406.019 L799.765,2434.153 A1167.463,1167.463 0.000 0,0 801.632,2435.549 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 798.37,2457.98 L 830.95,2413.50 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 801.63,2435.55 L 822.66,2407.37 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 801.63,2435.55 A1167.46,1167.46 0.00 0,1 799.77,2434.15" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M812.641,2399.804 A1132.303,1132.303 40.000 0,1 810.846,2398.429 L807.495,2402.798 A1137.808,1137.808 0.000 0,0 809.299,2404.179 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 799.77,2434.15 L 820.85,2406.02 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 809.30,2404.18 L 812.64,2399.80 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 809.30,2404.18 A1137.81,1137.81 0.00 0,1 807.49,2402.80" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M802.702,2392.124 A1132.303,1132.303 40.000 0,1 800.922,2390.730 L816.768,2370.540 A1106.637,1106.637 0.000 0,0 818.507,2371.902 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 807.49,2402.80 L 810.85,2398.43 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 818.51,2371.90 L 802.70,2392.12 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 818.51,2371.90 A1106.64,1106.64 0.00 0,1 816.77,2370.54" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M792.849,2384.334 A1132.303,1132.303 40.000 0,1 791.084,2382.920 L822.244,2344.112 A1082.534,1082.534 0.000 0,0 823.931,2345.464 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 816.77,2370.54 L 800.92,2390.73 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 823.93,2345.46 L 792.85,2384.33 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 823.93,2345.46 A1082.53,1082.53 0.00 0,1 822.24,2344.11" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M783.082,2376.435 A1132.303,1132.303 40.000 0,1 781.334,2375.002 L819.522,2328.506 A1072.135,1072.135 0.000 0,0 821.178,2329.863 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 822.24,2344.11 L 791.08,2382.92 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 821.18,2329.86 L 783.08,2376.44 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 821.18,2329.86 A1072.13,1072.13 0.00 0,1 819.52,2328.51" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M773.404,2368.429 A1132.303,1132.303 40.000 0,1 771.672,2366.976 L806.406,2325.630 A1078.303,1078.303 0.000 0,0 808.056,2327.013 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 819.52,2328.51 L 781.33,2375.00 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 808.06,2327.01 L 773.40,2368.43 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 808.06,2327.01 A1078.30,1078.30 0.00 0,1 806.41,2325.63" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M763.816,2360.315 A1132.303,1132.303 40.000 0,1 762.099,2358.843 L783.579,2333.843 A1099.342,1099.342 0.000 0,0 785.246,2335.272 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 806.41,2325.63 L 771.67,2366.98 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 785.25,2335.27 L 763.82,2360.32 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 785.25,2335.27 A1099.34,1099.34 0.00 0,1 783.58,2333.84" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M754.318,2352.096 A1132.303,1132.303 40.000 0,1 752.618,2350.605 L754.497,2348.467 A1129.456,1129.456 0.000 0,0 756.192,2349.954 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 783.58,2333.84 L 762.10,2358.84 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 756.19,2349.95 L 754.32,2352.10 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 756.19,2349.95 A1129.46,1129.46 0.00 0,1 754.50,2348.47" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M744.912,2343.772 A1132.303,1132.303 40.000 0,1 743.228,2342.262 L724.480,2363.129 A1160.354,1160.354 0.000 0,0 726.205,2364.675 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 754.50,2348.47 L 752.62,2350.61 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 726.20,2364.68 L 744.91,2343.77 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 726.20,2364.68 A1160.35,1160.35 0.00 0,1 724.48,2363.13" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M735.598,2335.344 A1132.303,1132.303 40.000 0,1 733.932,2333.816 L699.275,2371.538 A1183.528,1183.528 0.000 0,0 701.016,2373.135 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 724.48,2363.13 L 743.23,2342.26 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 701.02,2373.13 L 735.60,2335.34 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 701.02,2373.13 A1183.53,1183.53 0.00 0,1 699.27,2371.54" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M726.379,2326.813 A1132.303,1132.303 40.000 0,1 724.730,2325.267 L683.447,2369.211 A1192.597,1192.597 0.000 0,0 685.184,2370.840 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 699.27,2371.54 L 733.93,2333.82 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 685.18,2370.84 L 726.38,2326.81 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 685.18,2370.84 A1192.60,1192.60 0.00 0,1 683.45,2369.21" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M717.255,2318.180 A1132.303,1132.303 40.000 0,1 715.623,2316.616 L679.075,2354.666 A1185.062,1185.062 0.000 0,0 680.783,2356.303 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 683.45,2369.21 L 724.73,2325.27 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 680.78,2356.30 L 717.25,2318.18 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 680.78,2356.30 A1185.06,1185.06 0.00 0,1 679.07,2354.67" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M708.227,2309.447 A1132.303,1132.303 40.000 0,1 706.612,2307.865 L685.103,2329.766 A1163.000,1163.000 0.000 0,0 686.762,2331.392 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 679.07,2354.67 L 715.62,2316.62 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 686.76,2331.39 L 708.23,2309.45 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 686.76,2331.39 A1163.00,1163.00 0.00 0,1 685.10,2329.77" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M699.297,2300.614 A1132.303,1132.303 40.000 0,1 697.700,2299.014 L697.571,2299.142 A1132.484,1132.484 0.000 0,0 699.168,2300.743 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 685.10,2329.77 L 706.61,2307.86 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 699.17,2300.74 L 699.30,2300.61 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 699.17,2300.74 A1132.48,1132.48 0.00 0,1 697.57,2299.14" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M690.465,2291.683 A1132.303,1132.303 40.000 0,1 688.886,2290.065 L710.651,2268.865 A1101.919,1101.919 0.000 0,0 712.187,2270.440 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 697.57,2299.14 L 697.70,2299.01 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 712.19,2270.44 L 690.46,2291.68 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 712.19,2270.44 A1101.92,1101.92 0.00 0,1 710.65,2268.87" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M681.733,2282.654 A1132.303,1132.303 40.000 0,1 680.172,2281.019 L718.243,2244.750 A1079.720,1079.720 0.000 0,0 719.732,2246.309 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 710.65,2268.87 L 688.89,2290.07 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 719.73,2246.31 L 681.73,2282.65 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 719.73,2246.31 A1079.72,1079.72 0.00 0,1 718.24,2244.75" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M673.101,2273.529 A1132.303,1132.303 40.000 0,1 671.558,2271.877 L715.678,2230.770 A1072.001,1072.001 0.000 0,0 717.139,2232.334 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 718.24,2244.75 L 680.17,2281.02 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 717.14,2232.33 L 673.10,2273.53 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 717.14,2232.33 A1072.00,1072.00 0.00 0,1 715.68,2230.77" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M664.572,2264.309 A1132.303,1132.303 40.000 0,1 663.047,2262.639 L701.052,2228.009 A1080.886,1080.886 0.000 0,0 702.507,2229.603 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 715.68,2230.77 L 671.56,2271.88 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 702.51,2229.60 L 664.57,2264.31 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 702.51,2229.60 A1080.89,1080.89 0.00 0,1 701.05,2228.01" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M656.145,2254.995 A1132.303,1132.303 40.000 0,1 654.639,2253.308 L675.822,2234.432 A1103.929,1103.929 0.000 0,0 677.290,2236.076 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 701.05,2228.01 L 663.05,2262.64 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 677.29,2236.08 L 656.14,2254.99 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 677.29,2236.08 A1103.93,1103.93 0.00 0,1 675.82,2234.43" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M647.821,2245.588 A1132.303,1132.303 40.000 0,1 646.334,2243.885 L644.462,2245.516 A1134.786,1134.786 0.000 0,0 645.953,2247.223 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 675.82,2234.43 L 654.64,2253.31 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 645.95,2247.22 L 647.82,2245.59 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 645.95,2247.22 A1134.79,1134.79 0.00 0,1 644.46,2245.52" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M639.603,2236.089 A1132.303,1132.303 40.000 0,1 638.135,2234.369 L613.279,2255.549 A1164.958,1164.958 0.000 0,0 614.789,2257.318 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 644.46,2245.52 L 646.33,2243.88 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 614.79,2257.32 L 639.60,2236.09 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 614.79,2257.32 A1164.96,1164.96 0.00 0,1 613.28,2255.55" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M631.491,2226.499 A1132.303,1132.303 40.000 0,1 630.042,2224.764 L588.679,2259.223 A1186.139,1186.139 0.000 0,0 590.197,2261.041 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 613.28,2255.55 L 638.14,2234.37 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 590.20,2261.04 L 631.49,2226.50 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 590.20,2261.04 A1186.14,1186.14 0.00 0,1 588.68,2259.22" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M623.485,2216.820 A1132.303,1132.303 40.000 0,1 622.056,2215.069 L575.385,2253.081 A1192.495,1192.495 0.000 0,0 576.891,2254.926 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 588.68,2259.22 L 630.04,2224.76 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 576.89,2254.93 L 623.49,2216.82 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 576.89,2254.93 A1192.49,1192.49 0.00 0,1 575.39,2253.08" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M615.588,2207.053 A1132.303,1132.303 40.000 0,1 614.178,2205.286 L575.082,2236.413 A1182.276,1182.276 0.000 0,0 576.555,2238.259 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 575.39,2253.08 L 622.06,2215.07 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 576.55,2238.26 L 615.59,2207.05 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 576.55,2238.26 A1182.28,1182.28 0.00 0,1 575.08,2236.41" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M607.799,2197.199 A1132.303,1132.303 40.000 0,1 606.409,2195.416 L585.895,2211.381 A1158.297,1158.297 0.000 0,0 587.317,2213.205 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 575.08,2236.41 L 614.18,2205.29 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 587.32,2213.20 L 607.80,2197.20 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 587.32,2213.20 A1158.30,1158.30 0.00 0,1 585.89,2211.38" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M600.120,2187.259 A1132.303,1132.303 40.000 0,1 598.750,2185.461 L602.843,2182.347 A1127.159,1127.159 0.000 0,0 604.207,2184.137 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 585.89,2211.38 L 606.41,2195.42 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 604.21,2184.14 L 600.12,2187.26 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 604.21,2184.14 A1127.16,1127.16 0.00 0,1 602.84,2182.35" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M592.552,2177.235 A1132.303,1132.303 40.000 0,1 591.201,2175.421 L619.184,2154.625 A1097.438,1097.438 0.000 0,0 620.493,2156.382 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 602.84,2182.35 L 598.75,2185.46 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 620.49,2156.38 L 592.55,2177.23 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 620.49,2156.38 A1097.44,1097.44 0.00 0,1 619.18,2154.62" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M585.095,2167.127 A1132.303,1132.303 40.000 0,1 583.765,2165.299 L628.258,2132.992 A1077.318,1077.318 0.000 0,0 629.523,2134.731 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 619.18,2154.62 L 591.20,2175.42 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 629.52,2134.73 L 585.10,2167.13 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 629.52,2134.73 A1077.32,1077.32 0.00 0,1 628.26,2132.99" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M577.751,2156.937 A1132.303,1132.303 40.000 0,1 576.441,2155.094 L625.351,2120.401 A1072.338,1072.338 0.000 0,0 626.592,2122.147 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 628.26,2132.99 L 583.76,2165.30 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 626.59,2122.15 L 577.75,2156.94 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 626.59,2122.15 A1072.34,1072.34 0.00 0,1 625.35,2120.40" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M570.521,2146.666 A1132.303,1132.303 40.000 0,1 569.231,2144.809 L609.044,2117.228 A1083.870,1083.870 0.000 0,0 610.278,2119.006 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 625.35,2120.40 L 576.44,2155.09 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 610.28,2119.01 L 570.52,2146.67 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 610.28,2119.01 A1083.87,1083.87 0.00 0,1 609.04,2117.23" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M563.404,2136.316 A1132.303,1132.303 40.000 0,1 562.136,2134.445 L581.653,2121.241 A1108.739,1108.739 0.000 0,0 582.896,2123.074 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 609.04,2117.23 L 569.23,2144.81 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 582.90,2123.07 L 563.40,2136.32 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 582.90,2123.07 A1108.74,1108.74 0.00 0,1 581.65,2121.24" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M556.404,2125.887 A1132.303,1132.303 40.000 0,1 555.156,2124.002 L548.653,2128.297 A1140.096,1140.096 0.000 0,0 549.909,2130.195 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 581.65,2121.24 L 562.14,2134.44 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 549.91,2130.20 L 556.40,2125.89 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 549.91,2130.20 A1140.10,1140.10 0.00 0,1 548.65,2128.30" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M549.519,2115.382 A1132.303,1132.303 40.000 0,1 548.292,2113.483 L517.189,2133.532 A1169.307,1169.307 0.000 0,0 518.456,2135.493 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 548.65,2128.30 L 555.16,2124.00 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 518.46,2135.49 L 549.52,2115.38 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 518.46,2135.49 A1169.31,1169.31 0.00 0,1 517.19,2133.53" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M542.751,2104.800 A1132.303,1132.303 40.000 0,1 541.545,2102.888 L494.121,2132.719 A1188.329,1188.329 0.000 0,0 495.386,2134.726 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 517.19,2133.53 L 548.29,2113.48 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 495.39,2134.73 L 542.75,2104.80 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 495.39,2134.73 A1188.33,1188.33 0.00 0,1 494.12,2132.72" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M536.101,2094.144 A1132.303,1132.303 40.000 0,1 534.916,2092.219 L484.101,2123.401 A1191.923,1191.923 0.000 0,0 485.348,2125.429 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 494.12,2132.72 L 541.55,2102.89 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 485.35,2125.43 L 536.10,2094.14 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 485.35,2125.43 A1191.92,1191.92 0.00 0,1 484.10,2123.40" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M529.569,2083.416 A1132.303,1132.303 40.000 0,1 528.406,2081.477 L488.251,2105.509 A1179.100,1179.100 0.000 0,0 489.462,2107.528 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 484.10,2123.40 L 534.92,2092.22 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 489.46,2107.53 L 529.57,2083.42 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 489.46,2107.53 A1179.10,1179.10 0.00 0,1 488.25,2105.51" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M523.157,2072.615 A1132.303,1132.303 40.000 0,1 522.016,2070.663 L503.802,2081.291 A1153.391,1153.391 0.000 0,0 504.965,2083.279 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 488.25,2105.51 L 528.41,2081.48 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 504.96,2083.28 L 523.16,2072.61 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 504.96,2083.28 A1153.39,1153.39 0.00 0,1 503.80,2081.29" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M516.866,2061.744 A1132.303,1132.303 40.000 0,1 515.746,2059.780 L524.811,2054.624 A1121.875,1121.875 0.000 0,0 525.920,2056.570 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 503.80,2081.29 L 522.02,2070.66 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 525.92,2056.57 L 516.87,2061.74 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 525.92,2056.57 A1121.87,1121.87 0.00 0,1 524.81,2054.62" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M510.695,2050.803 A1132.303,1132.303 40.000 0,1 509.597,2048.827 L543.773,2029.888 A1093.230,1093.230 0.000 0,0 544.833,2031.797 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 524.81,2054.62 L 515.75,2059.78 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 544.83,2031.80 L 510.69,2050.80 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 544.83,2031.80 A1093.23,1093.23 0.00 0,1 543.77,2029.89" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M504.646,2039.795 A1132.303,1132.303 40.000 0,1 503.570,2037.807 L553.693,2010.753 A1075.344,1075.344 0.000 0,0 554.715,2012.642 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 543.77,2029.89 L 509.60,2048.83 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 554.72,2012.64 L 504.65,2039.80 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 554.72,2012.64 A1075.34,1075.34 0.00 0,1 553.69,2010.75" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M498.719,2028.721 A1132.303,1132.303 40.000 0,1 497.665,2026.721 L550.035,1999.201 A1073.143,1073.143 0.000 0,0 551.033,2001.097 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 553.69,2010.75 L 503.57,2037.81 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 551.03,2001.10 L 498.72,2028.72 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 551.03,2001.10 A1073.14,1073.14 0.00 0,1 550.03,1999.20" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M492.916,2017.581 A1132.303,1132.303 40.000 0,1 491.884,2015.569 L532.012,1995.047 A1087.232,1087.232 0.000 0,0 533.002,1996.979 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 550.03,1999.20 L 497.67,2026.72 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 533.00,1996.98 L 492.92,2017.58 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 533.00,1996.98 A1087.23,1087.23 0.00 0,1 532.01,1995.05" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M487.236,2006.378 A1132.303,1132.303 40.000 0,1 486.227,2004.355 L502.854,1996.083 A1113.732,1113.732 0.000 0,0 503.847,1998.073 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 532.01,1995.05 L 491.88,2015.57 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 503.85,1998.07 L 487.24,2006.38 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 503.85,1998.07 A1113.73,1113.73 0.00 0,1 502.85,1996.08" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M481.681,1995.113 A1132.303,1132.303 40.000 0,1 480.695,1993.078 L468.954,1998.758 A1145.345,1145.345 0.000 0,0 469.952,2000.816 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 502.85,1996.08 L 486.23,2004.35 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 469.95,2000.82 L 481.68,1995.11 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 469.95,2000.82 A1145.35,1145.35 0.00 0,1 468.95,1998.76" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M476.252,1983.786 A1132.303,1132.303 40.000 0,1 475.288,1981.741 L438.125,1999.212 A1173.367,1173.367 0.000 0,0 439.124,2001.331 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 468.95,1998.76 L 480.69,1993.08 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 439.12,2001.33 L 476.25,1983.79 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 439.12,2001.33 A1173.37,1173.37 0.00 0,1 438.13,1999.21" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M470.948,1972.400 A1132.303,1132.303 40.000 0,1 470.007,1970.344 L417.449,1994.345 A1190.082,1190.082 0.000 0,0 418.438,1996.506 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 438.13,1999.21 L 475.29,1981.74 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 418.44,1996.51 L 470.95,1972.40 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 418.44,1996.51 A1190.08,1190.08 0.00 0,1 417.45,1994.35" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M465.771,1960.956 A1132.303,1132.303 40.000 0,1 464.853,1958.890 L411.296,1982.632 A1190.886,1190.886 0.000 0,0 412.262,1984.805 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 417.45,1994.35 L 470.01,1970.34 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 412.26,1984.80 L 465.77,1960.96 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 412.26,1984.80 A1190.89,1190.89 0.00 0,1 411.30,1982.63" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M460.722,1949.455 A1132.303,1132.303 40.000 0,1 459.826,1947.379 L420.090,1964.470 A1175.559,1175.559 0.000 0,0 421.019,1966.625 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 411.30,1982.63 L 464.85,1958.89 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 421.02,1966.62 L 460.72,1949.46 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 421.02,1966.62 A1175.56,1175.56 0.00 0,1 420.09,1964.47" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M455.800,1937.899 A1132.303,1132.303 40.000 0,1 454.928,1935.813 L440.144,1941.978 A1148.320,1148.320 0.000 0,0 441.029,1944.093 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 420.09,1964.47 L 459.83,1947.38 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 441.03,1944.09 L 455.80,1937.90 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 441.03,1944.09 A1148.32,1148.32 0.00 0,1 440.14,1941.98" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M451.007,1926.289 A1132.303,1132.303 40.000 0,1 450.158,1924.193 L464.651,1918.337 A1116.671,1116.671 0.000 0,0 465.488,1920.404 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 440.14,1941.98 L 454.93,1935.81 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 465.49,1920.40 L 451.01,1926.29 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 465.49,1920.40 A1116.67,1116.67 0.00 0,1 464.65,1918.34" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M446.342,1914.626 A1132.303,1132.303 40.000 0,1 445.517,1912.522 L485.539,1896.864 A1089.326,1089.326 0.000 0,0 486.334,1898.889 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 464.65,1918.34 L 450.16,1924.19 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 486.33,1898.89 L 446.34,1914.63 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 486.33,1898.89 A1089.33,1089.33 0.00 0,1 485.54,1896.86" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M441.808,1902.913 A1132.303,1132.303 40.000 0,1 441.005,1900.799 L495.706,1880.097 A1073.816,1073.816 0.000 0,0 496.467,1882.101 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 485.54,1896.86 L 445.52,1912.52 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 496.47,1882.10 L 441.81,1902.91 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 496.47,1882.10 A1073.82,1073.82 0.00 0,1 495.71,1880.10" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M437.404,1891.150 A1132.303,1132.303 40.000 0,1 436.625,1889.027 L490.993,1869.137 A1074.410,1074.410 0.000 0,0 491.732,1871.151 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 495.71,1880.10 L 441.01,1900.80 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 491.73,1871.15 L 437.40,1891.15 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 491.73,1871.15 A1074.41,1074.41 0.00 0,1 490.99,1869.14" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M433.130,1879.338 A1132.303,1132.303 40.000 0,1 432.375,1877.207 L471.369,1863.430 A1090.946,1090.946 0.000 0,0 472.097,1865.483 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 490.99,1869.14 L 436.62,1889.03 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 472.10,1865.48 L 433.13,1879.34 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 472.10,1865.48 A1090.95,1090.95 0.00 0,1 471.37,1863.43" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M428.988,1867.480 A1132.303,1132.303 40.000 0,1 428.256,1865.341 L440.970,1861.007 A1118.870,1118.870 0.000 0,0 441.693,1863.121 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 471.37,1863.43 L 432.37,1877.21 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 441.69,1863.12 L 428.99,1867.48 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 441.69,1863.12 A1118.87,1118.87 0.00 0,1 440.97,1861.01" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M424.977,1855.577 A1132.303,1132.303 40.000 0,1 424.269,1853.430 L406.988,1859.108 A1150.493,1150.493 0.000 0,0 407.707,1861.290 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 440.97,1861.01 L 428.26,1865.34 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 407.71,1861.29 L 424.98,1855.58 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 407.71,1861.29 A1150.49,1150.49 0.00 0,1 406.99,1859.11" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M421.099,1843.630 A1132.303,1132.303 40.000 0,1 420.415,1841.475 L377.697,1854.987 A1177.107,1177.107 0.000 0,0 378.408,1857.227 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 406.99,1859.11 L 424.27,1853.43 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 378.41,1857.23 L 421.10,1843.63 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 378.41,1857.23 A1177.11,1177.11 0.00 0,1 377.70,1854.99" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M417.354,1831.641 A1132.303,1132.303 40.000 0,1 416.694,1829.479 L360.170,1846.670 A1191.383,1191.383 0.000 0,0 360.864,1848.945 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 377.70,1854.99 L 420.42,1841.48 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 360.86,1848.95 L 417.35,1831.64 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 360.86,1848.95 A1191.38,1191.38 0.00 0,1 360.17,1846.67" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M413.741,1819.611 A1132.303,1132.303 40.000 0,1 413.105,1817.442 L358.306,1833.446 A1189.391,1189.391 0.000 0,0 358.974,1835.725 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 360.17,1846.67 L 416.69,1829.48 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 358.97,1835.73 L 413.74,1819.61 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 358.97,1835.73 A1189.39,1189.39 0.00 0,1 358.31,1833.45" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M410.263,1807.542 A1132.303,1132.303 40.000 0,1 409.651,1805.365 L371.733,1815.985 A1171.679,1171.679 0.000 0,0 372.366,1818.237 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 358.31,1833.45 L 413.11,1817.44 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 372.37,1818.24 L 410.26,1807.54 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 372.37,1818.24 A1171.68,1171.68 0.00 0,1 371.73,1815.98" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M406.918,1795.435 A1132.303,1132.303 40.000 0,1 406.331,1793.252 L395.878,1796.054 A1143.124,1143.124 0.000 0,0 396.471,1798.258 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 371.73,1815.98 L 409.65,1805.37 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 396.47,1798.26 L 406.92,1795.43 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 396.47,1798.26 A1143.12,1143.12 0.00 0,1 395.88,1796.05" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M403.708,1783.291 A1132.303,1132.303 40.000 0,1 403.145,1781.102 L423.209,1775.960 A1111.590,1111.590 0.000 0,0 423.763,1778.109 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 395.88,1796.05 L 406.33,1793.25 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 423.76,1778.11 L 403.71,1783.29 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 423.76,1778.11 A1111.59,1111.59 0.00 0,1 423.21,1775.96" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M400.633,1771.113 A1132.303,1132.303 40.000 0,1 400.094,1768.917 L445.307,1757.863 A1085.759,1085.759 0.000 0,0 445.824,1759.969 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 423.21,1775.96 L 403.14,1781.10 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 445.82,1759.97 L 400.63,1771.11 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 445.82,1759.97 A1085.76,1085.76 0.00 0,1 445.31,1757.86" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M397.694,1758.901 A1132.303,1132.303 40.000 0,1 397.179,1756.700 L455.187,1743.197 A1072.744,1072.744 0.000 0,0 455.675,1745.283 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 445.31,1757.86 L 400.09,1768.92 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 455.67,1745.28 L 397.69,1758.90 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 455.67,1745.28 A1072.74,1072.74 0.00 0,1 455.19,1743.20" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M394.889,1746.657 A1132.303,1132.303 40.000 0,1 394.399,1744.450 L449.248,1732.323 A1076.129,1076.129 0.000 0,0 449.714,1734.421 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 455.19,1743.20 L 397.18,1756.70 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 449.71,1734.42 L 394.89,1746.66 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 449.71,1734.42 A1076.13,1076.13 0.00 0,1 449.25,1732.32" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M392.221,1734.384 A1132.303,1132.303 40.000 0,1 391.756,1732.171 L428.282,1724.519 A1094.983,1094.983 0.000 0,0 428.733,1726.658 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 449.25,1732.32 L 394.40,1744.45 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 428.73,1726.66 L 392.22,1734.38 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 428.73,1726.66 A1094.98,1094.98 0.00 0,1 428.28,1724.52" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M389.690,1722.081 A1132.303,1132.303 40.000 0,1 389.248,1719.863 L397.282,1718.273 A1124.113,1124.113 0.000 0,0 397.720,1720.474 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 428.28,1724.52 L 391.76,1732.17 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 397.72,1720.47 L 389.69,1722.08 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 397.72,1720.47 A1124.11,1124.11 0.00 0,1 397.28,1718.27" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M387.294,1709.751 A1132.303,1132.303 40.000 0,1 386.878,1707.528 L364.075,1711.780 A1155.498,1155.498 0.000 0,0 364.500,1714.047 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 397.28,1718.27 L 389.25,1719.86 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 364.50,1714.05 L 387.29,1709.75 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 364.50,1714.05 A1155.50,1155.50 0.00 0,1 364.08,1711.78" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M385.036,1697.395 A1132.303,1132.303 40.000 0,1 384.644,1695.168 L337.172,1703.475 A1180.496,1180.496 0.000 0,0 337.581,1705.796 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 364.08,1711.78 L 386.88,1707.53 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 337.58,1705.80 L 385.04,1697.39 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 337.58,1705.80 A1180.50,1180.50 0.00 0,1 337.17,1703.47" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M382.915,1685.014 A1132.303,1132.303 40.000 0,1 382.548,1682.784 L323.413,1692.456 A1192.223,1192.223 0.000 0,0 323.800,1694.805 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 337.17,1703.47 L 384.64,1695.17 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 323.80,1694.81 L 382.92,1685.01 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 323.80,1694.81 A1192.22,1192.22 0.00 0,1 323.41,1692.46" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M380.931,1672.611 A1132.303,1132.303 40.000 0,1 380.589,1670.377 L326.069,1678.675 A1187.451,1187.451 0.000 0,0 326.428,1681.018 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 323.41,1692.46 L 382.55,1682.78 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 326.43,1681.02 L 380.93,1672.61 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 326.43,1681.02 A1187.45,1187.45 0.00 0,1 326.07,1678.67" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M379.086,1660.187 A1132.303,1132.303 40.000 0,1 378.768,1657.949 L343.922,1662.857 A1167.492,1167.492 0.000 0,0 344.250,1665.166 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 326.07,1678.67 L 380.59,1670.38 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 344.25,1665.17 L 379.09,1660.19 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 344.25,1665.17 A1167.49,1167.49 0.00 0,1 343.92,1662.86" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M377.378,1647.743 A1132.303,1132.303 40.000 0,1 377.085,1645.501 L371.589,1646.213 A1137.844,1137.844 0.000 0,0 371.883,1648.466 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 343.92,1662.86 L 378.77,1657.95 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 371.88,1648.47 L 377.38,1647.74 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 371.88,1648.47 A1137.84,1137.84 0.00 0,1 371.59,1646.21" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M375.808,1635.281 A1132.303,1132.303 40.000 0,1 375.540,1633.036 L400.995,1630.025 A1106.670,1106.670 0.000 0,0 401.257,1632.219 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 371.59,1646.21 L 377.08,1645.50 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 401.26,1632.22 L 375.81,1635.28 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 401.26,1632.22 A1106.67,1106.67 0.00 0,1 400.99,1630.02" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M374.376,1622.802 A1132.303,1132.303 40.000 0,1 374.133,1620.555 L423.599,1615.258 A1082.554,1082.554 0.000 0,0 423.831,1617.407 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 400.99,1630.02 L 375.54,1633.04 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 423.83,1617.41 L 374.38,1622.80 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 423.83,1617.41 A1082.55,1082.55 0.00 0,1 423.60,1615.26" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M373.083,1610.308 A1132.303,1132.303 40.000 0,1 372.865,1608.058 L432.756,1602.316 A1072.137,1072.137 0.000 0,0 432.963,1604.447 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 423.60,1615.26 L 374.13,1620.55 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 432.96,1604.45 L 373.08,1610.31 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 432.96,1604.45 A1072.14,1072.14 0.00 0,1 432.76,1602.32" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M371.929,1597.801 A1132.303,1132.303 40.000 0,1 371.736,1595.548 L425.559,1590.990 A1078.287,1078.287 0.000 0,0 425.742,1593.136 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 432.76,1602.32 L 372.87,1608.06 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 425.74,1593.14 L 371.93,1597.80 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 425.74,1593.14 A1078.29,1078.29 0.00 0,1 425.56,1590.99" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M370.914,1585.282 A1132.303,1132.303 40.000 0,1 370.745,1583.027 L403.648,1580.608 A1099.311,1099.311 0.000 0,0 403.811,1582.797 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 425.56,1590.99 L 371.74,1595.55 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 403.81,1582.80 L 370.91,1585.28 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 403.81,1582.80 A1099.31,1099.31 0.00 0,1 403.65,1580.61" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M370.037,1572.752 A1132.303,1132.303 40.000 0,1 369.894,1570.495 L372.771,1570.316 A1129.420,1129.420 0.000 0,0 372.914,1572.566 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 403.65,1580.61 L 370.75,1583.03 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 372.91,1572.57 L 370.04,1572.75 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 372.91,1572.57 A1129.42,1129.42 0.00 0,1 372.77,1570.32" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M369.299,1560.213 A1132.303,1132.303 40.000 0,1 369.182,1557.955 L341.199,1559.389 A1160.322,1160.322 0.000 0,0 341.319,1561.703 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 372.77,1570.32 L 369.89,1570.50 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 341.32,1561.70 L 369.30,1560.21 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 341.32,1561.70 A1160.32,1160.32 0.00 0,1 341.20,1559.39" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M368.701,1547.666 A1132.303,1132.303 40.000 0,1 368.608,1545.407 L317.443,1547.461 A1183.509,1183.509 0.000 0,0 317.540,1549.822 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 341.20,1559.39 L 369.18,1557.95 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 317.54,1549.82 L 368.70,1547.67 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 317.54,1549.82 A1183.51,1183.51 0.00 0,1 317.44,1547.46" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M368.242,1535.114 A1132.303,1132.303 40.000 0,1 368.174,1532.854 L307.907,1534.604 A1192.596,1192.596 0.000 0,0 307.978,1536.984 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 317.44,1547.46 L 368.61,1545.41 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 307.98,1536.98 L 368.24,1535.11 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 307.98,1536.98 A1192.60,1192.60 0.00 0,1 307.91,1534.60" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M367.922,1522.557 A1132.303,1132.303 40.000 0,1 367.879,1520.297 L315.111,1521.243 A1185.080,1185.080 0.000 0,0 315.156,1523.609 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 307.91,1534.60 L 368.17,1532.85 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 315.16,1523.61 L 367.92,1522.56 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 315.16,1523.61 A1185.08,1185.08 0.00 0,1 315.11,1521.24" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M367.742,1509.998 A1132.303,1132.303 40.000 0,1 367.724,1507.737 L336.996,1507.947 A1163.031,1163.031 0.000 0,0 337.014,1510.270 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 315.11,1521.24 L 367.88,1520.30 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 337.01,1510.27 L 367.74,1510.00 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 337.01,1510.27 A1163.03,1163.03 0.00 0,1 337.00,1507.95" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M367.700,1497.438 A1132.303,1132.303 40.000 0,1 367.708,1495.177 L367.489,1495.176 A1132.521,1132.521 0.000 0,0 367.482,1497.437 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 337.00,1507.95 L 367.72,1507.74 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 367.48,1497.44 L 367.70,1497.44 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 367.48,1497.44 A1132.52,1132.52 0.00 0,1 367.49,1495.18" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M367.798,1484.877 A1132.303,1132.303 40.000 0,1 367.831,1482.617 L398.179,1483.083 A1101.951,1101.951 0.000 0,0 398.148,1485.283 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 367.49,1495.18 L 367.71,1495.18 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 398.15,1485.28 L 367.80,1484.88 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 398.15,1485.28 A1101.95,1101.95 0.00 0,1 398.18,1483.08" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M368.036,1472.319 A1132.303,1132.303 40.000 0,1 368.093,1470.059 L420.639,1471.449 A1079.738,1079.738 0.000 0,0 420.585,1473.604 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 398.18,1483.08 L 367.83,1482.62 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 420.58,1473.60 L 368.04,1472.32 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 420.58,1473.60 A1079.74,1079.74 0.00 0,1 420.64,1471.45" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M368.412,1459.764 A1132.303,1132.303 40.000 0,1 368.495,1457.505 L428.755,1459.768 A1072.000,1072.000 0.000 0,0 428.677,1461.907 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 420.64,1471.45 L 368.09,1470.06 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 428.68,1461.91 L 368.41,1459.76 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 428.68,1461.91 A1072.00,1072.00 0.00 0,1 428.76,1459.77" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M368.928,1447.214 A1132.303,1132.303 40.000 0,1 369.036,1444.956 L420.411,1447.456 A1080.867,1080.867 0.000 0,0 420.308,1449.612 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 428.76,1459.77 L 368.50,1457.50 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 420.31,1449.61 L 368.93,1447.21 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 420.31,1449.61 A1080.87,1080.87 0.00 0,1 420.41,1447.46" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M369.584,1434.671 A1132.303,1132.303 40.000 0,1 369.716,1432.414 L398.071,1434.109 A1103.897,1103.897 0.000 0,0 397.942,1436.309 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 420.41,1447.46 L 369.04,1444.96 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 397.94,1436.31 L 369.58,1434.67 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 397.94,1436.31 A1103.90,1103.90 0.00 0,1 398.07,1434.11" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M370.378,1422.135 A1132.303,1132.303 40.000 0,1 370.536,1419.880 L368.095,1419.707 A1134.749,1134.749 0.000 0,0 367.937,1421.967 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 398.07,1434.11 L 369.72,1432.41 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 367.94,1421.97 L 370.38,1422.14 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 367.94,1421.97 A1134.75,1134.75 0.00 0,1 368.09,1419.71" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M371.311,1409.609 A1132.303,1132.303 40.000 0,1 371.494,1407.356 L338.978,1404.686 A1164.928,1164.928 0.000 0,0 338.790,1407.005 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 368.09,1419.71 L 370.54,1419.88 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 338.79,1407.00 L 371.31,1409.61 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 338.79,1407.00 A1164.93,1164.93 0.00 0,1 338.98,1404.69" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M372.383,1397.094 A1132.303,1132.303 40.000 0,1 372.591,1394.843 L319.004,1389.845 A1186.122,1186.122 0.000 0,0 318.786,1392.203 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 338.98,1404.69 L 371.49,1407.36 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 318.79,1392.20 L 372.38,1397.09 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 318.79,1392.20 A1186.12,1186.12 0.00 0,1 319.00,1389.84" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M373.594,1384.592 A1132.303,1132.303 40.000 0,1 373.827,1382.343 L313.958,1376.089 A1192.497,1192.497 0.000 0,0 313.713,1378.457 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 319.00,1389.84 L 372.59,1394.84 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 313.71,1378.46 L 373.59,1384.59 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 313.71,1378.46 A1192.50,1192.50 0.00 0,1 313.96,1376.09" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M374.944,1372.104 A1132.303,1132.303 40.000 0,1 375.201,1369.858 L325.539,1364.112 A1182.297,1182.297 0.000 0,0 325.270,1366.457 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 313.96,1376.09 L 373.83,1382.34 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 325.27,1366.46 L 374.94,1372.10 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 325.27,1366.46 A1182.30,1182.30 0.00 0,1 325.54,1364.11" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M376.432,1359.632 A1132.303,1132.303 40.000 0,1 376.714,1357.389 L350.894,1354.111 A1158.329,1158.329 0.000 0,0 350.605,1356.406 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 325.54,1364.11 L 375.20,1369.86 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 350.61,1356.41 L 376.43,1359.63 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 350.61,1356.41 A1158.33,1158.33 0.00 0,1 350.89,1354.11" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M378.058,1347.177 A1132.303,1132.303 40.000 0,1 378.365,1344.937 L383.424,1345.637 A1127.196,1127.196 0.000 0,0 383.118,1347.867 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 350.89,1354.11 L 376.71,1357.39 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 383.12,1347.87 L 378.06,1347.18 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 383.12,1347.87 A1127.20,1127.20 0.00 0,1 383.42,1345.64" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M379.822,1334.741 A1132.303,1132.303 40.000 0,1 380.154,1332.505 L414.606,1337.658 A1097.468,1097.468 0.000 0,0 414.284,1339.825 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 383.42,1345.64 L 378.37,1344.94 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 414.28,1339.83 L 379.82,1334.74 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 414.28,1339.83 A1097.47,1097.47 0.00 0,1 414.61,1337.66" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M381.724,1322.325 A1132.303,1132.303 40.000 0,1 382.081,1320.093 L436.353,1328.827 A1077.333,1077.333 0.000 0,0 436.013,1330.951 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 414.61,1337.66 L 380.15,1332.50 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 436.01,1330.95 L 381.72,1322.33 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 436.01,1330.95 A1077.33,1077.33 0.00 0,1 436.35,1328.83" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M383.764,1309.932 A1132.303,1132.303 40.000 0,1 384.146,1307.703 L443.243,1317.888 A1072.334,1072.334 0.000 0,0 442.882,1319.998 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 436.35,1328.83 L 382.08,1320.09 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 442.88,1320.00 L 383.76,1309.93 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 442.88,1320.00 A1072.33,1072.33 0.00 0,1 443.24,1317.89" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M385.941,1297.561 A1132.303,1132.303 40.000 0,1 386.347,1295.337 L434.004,1304.095 A1083.848,1083.848 0.000 0,0 433.615,1306.224 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 443.24,1317.89 L 384.15,1307.70 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 433.61,1306.22 L 385.94,1297.56 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 433.61,1306.22 A1083.85,1083.85 0.00 0,1 434.00,1304.10" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M388.255,1285.216 A1132.303,1132.303 40.000 0,1 388.686,1282.996 L411.846,1287.518 A1108.705,1108.705 0.000 0,0 411.424,1289.692 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 434.00,1304.10 L 386.35,1295.34 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 411.42,1289.69 L 388.26,1285.22 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 411.42,1289.69 A1108.71,1108.71 0.00 0,1 411.85,1287.52" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M390.706,1272.896 A1132.303,1132.303 40.000 0,1 391.162,1270.682 L383.565,1269.111 A1140.060,1140.060 0.000 0,0 383.106,1271.340 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 411.85,1287.52 L 388.69,1283.00 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 383.11,1271.34 L 390.71,1272.90 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 383.11,1271.34 A1140.06,1140.06 0.00 0,1 383.57,1269.11" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M393.293,1260.605 A1132.303,1132.303 40.000 0,1 393.774,1258.396 L357.649,1250.506 A1169.279,1169.279 0.000 0,0 357.153,1252.788 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 383.57,1269.11 L 391.16,1270.68 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 357.15,1252.79 L 393.29,1260.61 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 357.15,1252.79 A1169.28,1169.28 0.00 0,1 357.65,1250.51" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M396.017,1248.343 A1132.303,1132.303 40.000 0,1 396.522,1246.140 L341.935,1233.582 A1188.315,1188.315 0.000 0,0 341.405,1235.894 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 357.65,1250.51 L 393.77,1258.40 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 341.41,1235.89 L 396.02,1248.34 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 341.41,1235.89 A1188.32,1188.32 0.00 0,1 341.93,1233.58" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M398.877,1236.113 A1132.303,1132.303 40.000 0,1 399.406,1233.914 L341.450,1219.903 A1191.929,1191.929 0.000 0,0 340.893,1222.217 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 341.93,1233.58 L 396.52,1246.14 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 340.89,1222.22 L 398.88,1236.11 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 340.89,1222.22 A1191.93,1191.93 0.00 0,1 341.45,1219.90" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M401.872,1223.914 A1132.303,1132.303 40.000 0,1 402.425,1221.722 L357.041,1210.215 A1179.123,1179.123 0.000 0,0 356.464,1212.498 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 341.45,1219.90 L 399.41,1233.91 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 356.46,1212.50 L 401.87,1223.91 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 356.46,1212.50 A1179.12,1179.12 0.00 0,1 357.04,1210.22" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M405.002,1211.750 A1132.303,1132.303 40.000 0,1 405.580,1209.564 L385.164,1204.146 A1153.425,1153.425 0.000 0,0 384.575,1206.373 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 357.04,1210.22 L 402.43,1221.72 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 384.58,1206.37 L 405.00,1211.75 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 384.58,1206.37 A1153.42,1153.42 0.00 0,1 385.16,1204.15" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M408.267,1199.621 A1132.303,1132.303 40.000 0,1 408.869,1197.442 L418.883,1200.219 A1121.910,1121.910 0.000 0,0 418.287,1202.378 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 385.16,1204.15 L 405.58,1209.56 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 418.29,1202.38 L 408.27,1199.62 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 418.29,1202.38 A1121.91,1121.91 0.00 0,1 418.88,1200.22" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M411.666,1187.529 A1132.303,1132.303 40.000 0,1 412.292,1185.357 L449.799,1196.206 A1093.258,1093.258 0.000 0,0 449.195,1198.304 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 418.88,1200.22 L 408.87,1197.44 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 449.19,1198.30 L 411.67,1187.53 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 449.19,1198.30 A1093.26,1093.26 0.00 0,1 449.80,1196.21" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M415.199,1175.476 A1132.303,1132.303 40.000 0,1 415.849,1173.310 L470.374,1189.740 A1075.356,1075.356 0.000 0,0 469.756,1191.797 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 449.80,1196.21 L 412.29,1185.36 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 469.76,1191.80 L 415.20,1175.48 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 469.76,1191.80 A1075.36,1075.36 0.00 0,1 470.37,1189.74" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M418.866,1163.462 A1132.303,1132.303 40.000 0,1 419.540,1161.304 L475.998,1179.002 A1073.136,1073.136 0.000 0,0 475.359,1181.047 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 470.37,1189.74 L 415.85,1173.31 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 475.36,1181.05 L 418.87,1163.46 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 475.36,1181.05 A1073.14,1073.14 0.00 0,1 476.00,1179.00" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M422.665,1151.490 A1132.303,1132.303 40.000 0,1 423.363,1149.340 L466.241,1163.305 A1087.208,1087.208 0.000 0,0 465.571,1165.370 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 476.00,1179.00 L 419.54,1161.30 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 465.57,1165.37 L 422.67,1151.49 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 465.57,1165.37 A1087.21,1087.21 0.00 0,1 466.24,1163.30" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M426.598,1139.561 A1132.303,1132.303 40.000 0,1 427.319,1137.418 L444.945,1143.376 A1113.697,1113.697 0.000 0,0 444.235,1145.483 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 466.24,1163.30 L 423.36,1149.34 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 444.24,1145.48 L 426.60,1139.56 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 444.24,1145.48 A1113.70,1113.70 0.00 0,1 444.95,1143.38" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M430.662,1127.676 A1132.303,1132.303 40.000 0,1 431.407,1125.541 L419.132,1121.240 A1145.310,1145.310 0.000 0,0 418.378,1123.399 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 444.95,1143.38 L 427.32,1137.42 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 418.38,1123.40 L 430.66,1127.68 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 418.38,1123.40 A1145.31,1145.31 0.00 0,1 419.13,1121.24" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M434.858,1115.837 A1132.303,1132.303 40.000 0,1 435.627,1113.711 L397.051,1099.711 A1173.341,1173.341 0.000 0,0 396.254,1101.914 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 419.13,1121.24 L 431.41,1125.54 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 396.25,1101.91 L 434.86,1115.84 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 396.25,1101.91 A1173.34,1173.34 0.00 0,1 397.05,1099.71" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M439.185,1104.045 A1132.303,1132.303 40.000 0,1 439.978,1101.928 L385.897,1081.619 A1190.071,1190.071 0.000 0,0 385.063,1083.844 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 397.05,1099.71 L 435.63,1113.71 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 385.06,1083.84 L 439.18,1104.05 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 385.06,1083.84 A1190.07,1190.07 0.00 0,1 385.90,1081.62" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M443.642,1092.302 A1132.303,1132.303 40.000 0,1 444.458,1090.194 L389.839,1068.988 A1190.895,1190.895 0.000 0,0 388.980,1071.205 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 385.90,1081.62 L 439.98,1101.93 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 388.98,1071.21 L 443.64,1092.30 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 388.98,1071.21 A1190.89,1190.89 0.00 0,1 389.84,1068.99" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M448.230,1080.609 A1132.303,1132.303 40.000 0,1 449.069,1078.510 L408.898,1062.399 A1175.584,1175.584 0.000 0,0 408.027,1064.578 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 389.84,1068.99 L 444.46,1090.19 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 408.03,1064.58 L 448.23,1080.61 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 408.03,1064.58 A1175.58,1175.58 0.00 0,1 408.90,1062.40" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M452.947,1068.968 A1132.303,1132.303 40.000 0,1 453.809,1066.878 L438.978,1060.738 A1148.355,1148.355 0.000 0,0 438.103,1062.857 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 408.90,1062.40 L 449.07,1078.51 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 438.10,1062.86 L 452.95,1068.97 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 438.10,1062.86 A1148.36,1148.36 0.00 0,1 438.98,1060.74" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M457.793,1057.380 A1132.303,1132.303 40.000 0,1 458.678,1055.299 L473.022,1061.425 A1116.706,1116.706 0.000 0,0 472.148,1063.476 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 438.98,1060.74 L 453.81,1066.88 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 472.15,1063.48 L 457.79,1057.38 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 472.15,1063.48 A1116.71,1116.71 0.00 0,1 473.02,1061.42" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M462.767,1045.846 A1132.303,1132.303 40.000 0,1 463.675,1043.776 L502.985,1061.081 A1089.352,1089.352 0.000 0,0 502.111,1063.073 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 473.02,1061.42 L 458.68,1055.30 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 502.11,1063.07 L 462.77,1045.85 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 502.11,1063.07 A1089.35,1089.35 0.00 0,1 502.99,1061.08" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M467.868,1034.368 A1132.303,1132.303 40.000 0,1 468.800,1032.308 L522.057,1056.462 A1073.825,1073.825 0.000 0,0 521.173,1058.416 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 502.99,1061.08 L 463.68,1043.78 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 521.17,1058.42 L 467.87,1034.37 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 521.17,1058.42 A1073.82,1073.82 0.00 0,1 522.06,1056.46" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M473.097,1022.947 A1132.303,1132.303 40.000 0,1 474.051,1020.898 L526.515,1045.398 A1074.400,1074.400 0.000 0,0 525.610,1047.342 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 522.06,1056.46 L 468.80,1032.31 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 525.61,1047.34 L 473.10,1022.95 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 525.61,1047.34 A1074.40,1074.40 0.00 0,1 526.52,1045.40" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M478.452,1011.585 A1132.303,1132.303 40.000 0,1 479.429,1009.547 L516.729,1027.472 A1090.920,1090.920 0.000 0,0 515.787,1029.436 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 526.52,1045.40 L 474.05,1020.90 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 515.79,1029.44 L 478.45,1011.59 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 515.79,1029.44 A1090.92,1090.92 0.00 0,1 516.73,1027.47" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M483.933,1000.284 A1132.303,1132.303 40.000 0,1 484.932,998.256 L497.006,1004.224 A1118.834,1118.834 0.000 0,0 496.018,1006.228 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 516.73,1027.47 L 479.43,1009.55 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 496.02,1006.23 L 483.93,1000.28 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 496.02,1006.23 A1118.83,1118.83 0.00 0,1 497.01,1004.22" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M489.538,989.043 A1132.303,1132.303 40.000 0,1 490.561,987.027 L474.375,978.802 A1150.458,1150.458 0.000 0,0 473.337,980.851 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 497.01,1004.22 L 484.93,998.26 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 473.34,980.85 L 489.54,989.04 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 473.34,980.85 A1150.46,1150.46 0.00 0,1 474.38,978.80" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M495.269,977.866 A1132.303,1132.303 40.000 0,1 496.313,975.861 L456.620,955.133 A1177.082,1177.082 0.000 0,0 455.534,957.217 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 474.38,978.80 L 490.56,987.03 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 455.53,957.22 L 495.27,977.87 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 455.53,957.22 A1177.08,1177.08 0.00 0,1 456.62,955.13" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M501.122,966.753 A1132.303,1132.303 40.000 0,1 502.189,964.759 L450.132,936.835 A1191.376,1191.376 0.000 0,0 449.010,938.933 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 456.62,955.13 L 496.31,975.86 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 449.01,938.93 L 501.12,966.75 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 449.01,938.93 A1191.38,1191.38 0.00 0,1 450.13,936.84" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M507.099,955.705 A1132.303,1132.303 40.000 0,1 508.188,953.724 L458.172,926.176 A1189.403,1189.403 0.000 0,0 457.028,928.257 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 450.13,936.84 L 502.19,964.76 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 457.03,928.26 L 507.10,955.71 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 457.03,928.26 A1189.40,1189.40 0.00 0,1 458.17,926.18" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M513.198,944.725 A1132.303,1132.303 40.000 0,1 514.309,942.755 L480.006,923.363 A1171.707,1171.707 0.000 0,0 478.857,925.401 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 458.17,926.18 L 508.19,953.72 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 478.86,925.40 L 513.20,944.72 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 478.86,925.40 A1171.71,1171.71 0.00 0,1 480.01,923.36" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M519.418,933.812 A1132.303,1132.303 40.000 0,1 520.551,931.856 L511.159,926.408 A1143.160,1143.160 0.000 0,0 510.015,928.383 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 480.01,923.36 L 514.31,942.76 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 510.02,928.38 L 519.42,933.81 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 510.02,928.38 A1143.16,1143.16 0.00 0,1 511.16,926.41" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M525.759,922.970 A1132.303,1132.303 40.000 0,1 526.913,921.026 L544.684,931.599 A1111.624,1111.624 0.000 0,0 543.551,933.508 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 511.16,926.41 L 520.55,931.86 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 543.55,933.51 L 525.76,922.97 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 543.55,933.51 A1111.62,1111.62 0.00 0,1 544.68,931.60" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M532.220,912.198 A1132.303,1132.303 40.000 0,1 533.395,910.267 L573.109,934.496 A1085.782,1085.782 0.000 0,0 571.981,936.348 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 544.68,931.60 L 526.91,921.03 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 571.98,936.35 L 532.22,912.20 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 571.98,936.35 A1085.78,1085.78 0.00 0,1 573.11,934.50" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M538.800,901.499 A1132.303,1132.303 40.000 0,1 539.997,899.581 L590.488,931.160 A1072.750,1072.750 0.000 0,0 589.354,932.977 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 573.11,934.50 L 533.40,910.27 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 589.35,932.98 L 538.80,901.50 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 589.35,932.98 A1072.75,1072.75 0.00 0,1 590.49,931.16" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M545.498,890.873 A1132.303,1132.303 40.000 0,1 546.716,888.969 L594.019,919.289 A1076.116,1076.116 0.000 0,0 592.862,921.099 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 590.49,931.16 L 540.00,899.58 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 592.86,921.10 L 545.50,890.87 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 592.86,921.10 A1076.12,1076.12 0.00 0,1 594.02,919.29" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M552.314,880.323 A1132.303,1132.303 40.000 0,1 553.553,878.432 L584.771,898.934 A1094.954,1094.954 0.000 0,0 583.572,900.762 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 594.02,919.29 L 546.72,888.97 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 583.57,900.76 L 552.31,880.32 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 583.57,900.76 A1094.95,1094.95 0.00 0,1 584.77,898.93" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M559.246,869.848 A1132.303,1132.303 40.000 0,1 560.506,867.971 L567.331,872.563 A1124.077,1124.077 0.000 0,0 566.080,874.426 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 584.77,898.93 L 553.55,878.43 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 566.08,874.43 L 559.25,869.85 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 566.08,874.43 A1124.08,1124.08 0.00 0,1 567.33,872.56" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M566.294,859.452 A1132.303,1132.303 40.000 0,1 567.575,857.589 L548.502,844.448 A1155.464,1155.464 0.000 0,0 547.195,846.349 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 567.33,872.56 L 560.51,867.97 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 547.19,846.35 L 566.29,859.45 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 547.19,846.35 A1155.46,1155.46 0.00 0,1 548.50,844.45" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M573.457,849.134 A1132.303,1132.303 40.000 0,1 574.758,847.285 L535.396,819.516 A1180.474,1180.474 0.000 0,0 534.039,821.444 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 548.50,844.45 L 567.57,857.59 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 534.04,821.44 L 573.46,849.13 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 534.04,821.44 A1180.47,1180.47 0.00 0,1 535.40,819.52" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M580.734,838.896 A1132.303,1132.303 40.000 0,1 582.056,837.061 L533.482,801.982 A1192.219,1192.219 0.000 0,0 532.090,803.913 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 535.40,819.52 L 574.76,847.28 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 532.09,803.91 L 580.73,838.90 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 532.09,803.91 A1192.22,1192.22 0.00 0,1 533.48,801.98" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M588.124,828.739 A1132.303,1132.303 40.000 0,1 589.466,826.920 L545.107,794.129 A1187.465,1187.465 0.000 0,0 543.700,796.037 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 533.48,801.98 L 582.06,837.06 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 543.70,796.04 L 588.12,828.74 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 543.70,796.04 A1187.47,1187.47 0.00 0,1 545.11,794.13" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M595.626,818.665 A1132.303,1132.303 40.000 0,1 596.988,816.861 L568.901,795.612 A1167.522,1167.522 0.000 0,0 567.496,797.473 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 545.11,794.13 L 589.47,826.92 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 567.50,797.47 L 595.63,818.67 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 567.50,797.47 A1167.52,1167.52 0.00 0,1 568.90,795.61" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M603.240,808.675 A1132.303,1132.303 40.000 0,1 604.622,806.886 L600.211,803.471 A1137.880,1137.880 0.000 0,0 598.822,805.269 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 568.90,795.61 L 596.99,816.86 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 598.82,805.27 L 603.24,808.68 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 598.82,805.27 A1137.88,1137.88 0.00 0,1 600.21,803.47" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M610.964,798.770 A1132.303,1132.303 40.000 0,1 612.366,796.996 L632.434,812.890 A1106.703,1106.703 0.000 0,0 631.063,814.624 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 600.21,803.47 L 604.62,806.89 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 631.06,814.62 L 610.96,798.77 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 631.06,814.62 A1106.70,1106.70 0.00 0,1 632.43,812.89" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M618.797,788.951 A1132.303,1132.303 40.000 0,1 620.218,787.193 L658.856,818.498 A1082.575,1082.575 0.000 0,0 657.497,820.179 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 632.43,812.89 L 612.37,797.00 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 657.50,820.18 L 618.80,788.95 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 657.50,820.18 A1082.57,1082.57 0.00 0,1 658.86,818.50" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M626.739,779.220 A1132.303,1132.303 40.000 0,1 628.180,777.478 L674.502,815.868 A1072.140,1072.140 0.000 0,0 673.138,817.517 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 658.86,818.50 L 620.22,787.19 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 673.14,817.52 L 626.74,779.22 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 673.14,817.52 A1072.14,1072.14 0.00 0,1 674.50,815.87" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M634.788,769.577 A1132.303,1132.303 40.000 0,1 636.248,767.851 L677.465,802.788 A1078.271,1078.271 0.000 0,0 676.074,804.432 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 674.50,815.87 L 628.18,777.48 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 676.07,804.43 L 634.79,769.58 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 676.07,804.43 A1078.27,1078.27 0.00 0,1 677.46,802.79" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M642.944,760.025 A1132.303,1132.303 40.000 0,1 644.423,758.315 L669.374,779.945 A1099.281,1099.281 0.000 0,0 667.938,781.605 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 677.46,802.79 L 636.25,767.85 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 667.94,781.60 L 642.94,760.02 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 667.94,781.60 A1099.28,1099.28 0.00 0,1 669.37,779.94" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M651.205,750.563 A1132.303,1132.303 40.000 0,1 652.703,748.870 L654.887,750.806 A1129.384,1129.384 0.000 0,0 653.393,752.495 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 669.37,779.94 L 644.42,758.31 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 653.39,752.50 L 651.20,750.56 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 653.39,752.50 A1129.38,1129.38 0.00 0,1 654.89,750.81" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M659.570,741.194 A1132.303,1132.303 40.000 0,1 661.087,739.517 L640.351,720.720 A1160.290,1160.290 0.000 0,0 638.797,722.438 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 654.89,750.81 L 652.70,748.87 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 638.80,722.44 L 659.57,741.19 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 638.80,722.44 A1160.29,1160.29 0.00 0,1 640.35,720.72" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M668.039,731.918 A1132.303,1132.303 40.000 0,1 669.575,730.258 L632.034,695.461 A1183.490,1183.490 0.000 0,0 630.429,697.195 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 640.35,720.72 L 661.09,739.52 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 630.43,697.20 L 668.04,731.92 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 630.43,697.20 A1183.49,1183.49 0.00 0,1 632.03,695.46" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M676.611,722.736 A1132.303,1132.303 40.000 0,1 678.164,721.094 L634.404,679.619 A1192.595,1192.595 0.000 0,0 632.767,681.349 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 632.03,695.46 L 669.57,730.26 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 632.77,681.35 L 676.61,722.74 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 632.77,681.35 A1192.59,1192.59 0.00 0,1 634.40,679.62" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M685.283,713.650 A1132.303,1132.303 40.000 0,1 686.855,712.025 L648.942,675.285 A1185.097,1185.097 0.000 0,0 647.296,676.986 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 634.40,679.62 L 678.16,721.09 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 647.30,676.99 L 685.28,713.65 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 647.30,676.99 A1185.10,1185.10 0.00 0,1 648.94,675.28" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M694.056,704.661 A1132.303,1132.303 40.000 0,1 695.646,703.053 L673.795,681.404 A1163.062,1163.062 0.000 0,0 672.162,683.055 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 648.94,675.28 L 686.86,712.02 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 672.16,683.06 L 694.06,704.66 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 672.16,683.06 A1163.06,1163.06 0.00 0,1 673.80,681.40" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M702.928,695.770 A1132.303,1132.303 40.000 0,1 704.536,694.180 L704.357,693.999 A1132.557,1132.557 0.000 0,0 702.749,695.589 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 673.80,681.40 L 695.65,703.05 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 702.75,695.59 L 702.93,695.77 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 702.75,695.59 A1132.56,1132.56 0.00 0,1 704.36,694.00" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M711.899,686.978 A1132.303,1132.303 40.000 0,1 713.524,685.406 L734.584,707.219 A1101.982,1101.982 0.000 0,0 733.002,708.749 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 704.36,694.00 L 704.54,694.18 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 733.00,708.75 L 711.90,686.98 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 733.00,708.75 A1101.98,1101.98 0.00 0,1 734.58,707.22" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M720.966,678.285 A1132.303,1132.303 40.000 0,1 722.608,676.731 L758.685,714.937 A1079.756,1079.756 0.000 0,0 757.118,716.419 Z" style="stroke-linecap:round;fill:rgb(105,115,120);" />
+<path d="M 734.58,707.22 L 713.52,685.41 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 758.68,714.94 L 722.61,676.73 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 757.12,716.42 L 720.97,678.29 " style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M 757.12,716.42 A1079.76,1079.76 0.00 0,1 758.68,714.94" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+</g>
+<g id="plot1">
+<g id="plot1-axis">
+</g>
+<path d="M1500.000,562.000 A938.000,938.000 40.000 1,1 869.908,805.142 L859.832,794.030 A953.000,953.000 0.000 1,0 1500.000,547.000 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1606.280,544.895 A961.000,961.000 40.000 0,1 1711.463,562.554 L1714.764,547.922 A976.000,976.000 0.000 0,0 1607.939,529.987 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1608.823,522.036 A984.000,984.000 40.000 0,1 1608.932,522.048 L1610.592,507.140 A999.000,999.000 0.000 0,0 1610.482,507.128 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1611.367,499.177 A1007.000,1007.000 40.000 0,1 2302.988,2107.667 L2314.949,2116.718 A1022.000,1022.000 0.000 0,0 1613.026,484.269 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1614.246,522.655 A984.000,984.000 40.000 0,1 2327.142,966.996 L2339.750,958.871 A999.000,999.000 0.000 0,0 1615.987,507.756 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1619.587,476.966 A1030.000,1030.000 40.000 0,1 1858.210,534.295 L1863.427,520.232 A1045.000,1045.000 0.000 0,0 1621.328,462.067 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1622.257,454.121 A1053.000,1053.000 40.000 0,1 2262.523,773.799 L2273.385,763.455 A1068.000,1068.000 0.000 0,0 1623.999,439.223 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1815.251,592.180 A961.000,961.000 40.000 0,1 2104.272,752.755 L2113.704,741.091 A976.000,976.000 0.000 0,0 1820.172,578.010 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2014.400,607.647 A1030.000,1030.000 40.000 0,1 2133.163,687.593 L2142.384,675.762 A1045.000,1045.000 0.000 0,0 2021.891,594.652 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2129.687,774.042 A961.000,961.000 40.000 0,1 2162.274,803.642 L2172.611,792.773 A976.000,976.000 0.000 0,0 2139.516,762.711 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2164.588,805.850 A961.000,961.000 40.000 0,1 2191.549,832.707 L2202.344,822.291 A976.000,976.000 0.000 0,0 2174.961,795.015 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2230.329,773.695 A1030.000,1030.000 40.000 0,1 2238.819,782.332 L2249.578,771.881 A1045.000,1045.000 0.000 0,0 2240.965,763.117 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2203.865,845.710 A961.000,961.000 40.000 0,1 2227.200,871.747 L2238.551,861.941 A976.000,976.000 0.000 0,0 2214.851,835.497 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2261.366,806.298 A1030.000,1030.000 40.000 0,1 2298.724,849.661 L2310.356,840.190 A1045.000,1045.000 0.000 0,0 2272.454,796.196 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2293.525,807.810 A1053.000,1053.000 40.000 0,1 2329.455,851.299 L2341.271,842.058 A1068.000,1068.000 0.000 0,0 2304.828,797.949 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2245.150,893.145 A961.000,961.000 40.000 0,1 2307.808,979.455 L2320.417,971.330 A976.000,976.000 0.000 0,0 2256.780,883.673 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2302.605,854.457 A1030.000,1030.000 40.000 0,1 2304.463,856.775 L2316.179,847.408 A1045.000,1045.000 0.000 0,0 2314.293,845.056 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2320.266,877.052 A1030.000,1030.000 40.000 0,1 2365.747,941.984 L2378.355,933.857 A1045.000,1045.000 0.000 0,0 2332.211,867.980 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2355.170,885.596 A1053.000,1053.000 40.000 0,1 2371.157,908.481 L2383.567,900.055 A1068.000,1068.000 0.000 0,0 2367.352,876.843 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2376.696,916.722 A1053.000,1053.000 40.000 0,1 2381.007,923.254 L2393.557,915.038 A1068.000,1068.000 0.000 0,0 2389.184,908.413 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2330.264,1016.076 A961.000,961.000 40.000 0,1 2352.000,1055.459 L2365.299,1048.520 A976.000,976.000 0.000 0,0 2343.223,1008.522 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2360.421,1071.986 A961.000,961.000 40.000 0,1 2419.460,1220.510 L2433.811,1216.147 A976.000,976.000 0.000 0,0 2373.851,1065.305 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2431.216,1262.603 A961.000,961.000 40.000 0,1 2449.421,1648.731 L2464.240,1651.052 A976.000,976.000 0.000 0,0 2445.751,1258.897 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2467.954,1323.023 A984.000,984.000 40.000 0,1 2474.325,1362.349 L2489.177,1360.251 A999.000,999.000 0.000 0,0 2482.710,1320.325 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2475.848,1373.599 A984.000,984.000 40.000 0,1 2428.584,1825.558 L2442.739,1830.521 A999.000,999.000 0.000 0,0 2490.723,1371.672 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2523.164,1381.526 A1030.000,1030.000 40.000 0,1 2526.796,1418.824 L2541.750,1417.642 A1045.000,1045.000 0.000 0,0 2538.064,1379.800 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2547.973,1397.231 A1053.000,1053.000 40.000 0,1 2520.836,1758.267 L2535.378,1761.946 A1068.000,1068.000 0.000 0,0 2562.901,1395.767 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2529.178,1458.855 A1030.000,1030.000 40.000 0,1 2529.851,1482.496 L2544.849,1482.242 A1045.000,1045.000 0.000 0,0 2544.166,1458.256 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2528.972,1546.008 A1030.000,1030.000 40.000 0,1 2526.543,1584.320 L2541.492,1585.548 A1045.000,1045.000 0.000 0,0 2543.957,1546.678 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2523.365,1616.726 A1030.000,1030.000 40.000 0,1 2522.120,1627.164 L2537.005,1629.016 A1045.000,1045.000 0.000 0,0 2538.268,1618.426 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2521.369,1633.058 A1030.000,1030.000 40.000 0,1 2518.080,1656.248 L2532.906,1658.524 A1045.000,1045.000 0.000 0,0 2536.244,1634.996 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2448.116,1656.835 A961.000,961.000 40.000 0,1 2446.355,1667.133 L2461.126,1669.741 A976.000,976.000 0.000 0,0 2462.915,1659.283 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2446.206,1667.972 A961.000,961.000 40.000 0,1 2443.766,1681.181 L2458.497,1684.009 A976.000,976.000 0.000 0,0 2460.975,1670.594 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2412.980,1799.981 A961.000,961.000 40.000 0,1 2388.875,1865.270 L2402.749,1870.972 A976.000,976.000 0.000 0,0 2427.230,1804.663 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2421.171,1845.976 A984.000,984.000 40.000 0,1 2047.618,2317.539 L2055.966,2330.002 A999.000,999.000 0.000 0,0 2435.214,1851.250 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2453.087,1890.546 A1030.000,1030.000 40.000 0,1 2452.043,1893.082 L2465.908,1898.806 A1045.000,1045.000 0.000 0,0 2466.967,1896.233 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2373.049,1901.630 A961.000,961.000 40.000 0,1 2349.192,1949.882 L2362.447,1956.904 A976.000,976.000 0.000 0,0 2386.676,1907.898 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2412.507,1977.735 A1030.000,1030.000 40.000 0,1 2385.963,2025.328 L2398.865,2032.979 A1045.000,1045.000 0.000 0,0 2425.796,1984.693 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2326.449,1990.412 A961.000,961.000 40.000 0,1 2303.882,2026.588 L2316.429,2034.808 A976.000,976.000 0.000 0,0 2339.349,1998.066 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2375.839,2042.039 A1030.000,1030.000 40.000 0,1 2081.261,2350.315 L2089.726,2362.698 A1045.000,1045.000 0.000 0,0 2388.594,2049.933 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2389.695,2063.252 A1053.000,1053.000 40.000 0,1 2369.737,2093.604 L2382.127,2102.060 A1068.000,1068.000 0.000 0,0 2402.368,2071.275 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2297.575,2036.093 A961.000,961.000 40.000 0,1 2268.745,2076.673 L2280.745,2085.674 A976.000,976.000 0.000 0,0 2310.024,2044.460 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2267.977,2077.696 A961.000,961.000 40.000 0,1 2249.266,2101.766 L2260.961,2111.159 A976.000,976.000 0.000 0,0 2279.964,2086.713 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2296.745,2115.830 A1007.000,1007.000 40.000 0,1 2262.257,2158.038 L2273.611,2167.840 A1022.000,1022.000 0.000 0,0 2308.613,2125.003 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2241.325,2111.522 A961.000,961.000 40.000 0,1 2233.601,2120.766 L2245.052,2130.455 A976.000,976.000 0.000 0,0 2252.896,2121.067 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2230.770,2124.096 A961.000,961.000 40.000 0,1 2197.033,2161.563 L2207.913,2171.889 A976.000,976.000 0.000 0,0 2242.177,2133.837 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2233.160,2190.308 A1007.000,1007.000 40.000 0,1 2226.774,2197.029 L2237.600,2207.411 A1022.000,1022.000 0.000 0,0 2244.081,2200.590 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2188.463,2170.477 A961.000,961.000 40.000 0,1 2172.658,2186.332 L2183.158,2197.045 A976.000,976.000 0.000 0,0 2199.209,2180.943 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2209.786,2214.320 A1007.000,1007.000 40.000 0,1 2209.152,2214.950 L2219.715,2225.599 A1022.000,1022.000 0.000 0,0 2220.359,2224.960 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2145.511,2211.925 A961.000,961.000 40.000 0,1 2105.465,2246.279 L2114.916,2257.928 A976.000,976.000 0.000 0,0 2155.586,2223.037 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2176.161,2246.227 A1007.000,1007.000 40.000 0,1 2135.141,2281.438 L2144.602,2293.078 A1022.000,1022.000 0.000 0,0 2186.233,2257.343 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2201.578,2285.237 A1053.000,1053.000 40.000 0,1 1811.629,2505.831 L1816.068,2520.159 A1068.000,1068.000 0.000 0,0 2211.572,2296.423 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2089.013,2259.331 A961.000,961.000 40.000 0,1 2072.280,2272.021 L2081.213,2284.071 A976.000,976.000 0.000 0,0 2098.207,2271.184 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2100.301,2308.509 A1007.000,1007.000 40.000 0,1 2072.516,2328.417 L2081.044,2340.756 A1022.000,1022.000 0.000 0,0 2109.243,2320.553 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2038.620,2295.870 A961.000,961.000 40.000 0,1 2008.137,2315.670 L2016.068,2328.402 A976.000,976.000 0.000 0,0 2047.027,2308.293 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2045.439,2318.994 A984.000,984.000 40.000 0,1 2008.293,2342.552 L2016.042,2355.396 A999.000,999.000 0.000 0,0 2053.754,2331.479 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M2053.811,2341.036 A1007.000,1007.000 40.000 0,1 2043.131,2347.973 L2051.222,2360.604 A1022.000,1022.000 0.000 0,0 2062.060,2353.564 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1997.872,2321.976 A961.000,961.000 40.000 0,1 1992.574,2325.162 L2000.262,2338.042 A976.000,976.000 0.000 0,0 2005.644,2334.806 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1949.656,2349.312 A961.000,961.000 40.000 0,1 1949.562,2349.362 L1956.579,2362.619 A976.000,976.000 0.000 0,0 1956.674,2362.569 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1921.531,2363.616 A961.000,961.000 40.000 0,1 1894.216,2376.422 L1900.369,2390.101 A976.000,976.000 0.000 0,0 1928.111,2377.096 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1921.784,2389.019 A984.000,984.000 40.000 0,1 1875.890,2409.375 L1881.620,2423.237 A999.000,999.000 0.000 0,0 1928.214,2402.571 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1889.251,2378.638 A961.000,961.000 40.000 0,1 1498.124,2460.998 L1498.094,2475.998 A976.000,976.000 0.000 0,0 1895.327,2392.352 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1867.805,2412.675 A984.000,984.000 40.000 0,1 1853.078,2418.473 L1858.460,2432.474 A999.000,999.000 0.000 0,0 1873.412,2426.588 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1832.718,2426.043 A984.000,984.000 40.000 0,1 1810.539,2433.714 L1815.273,2447.947 A999.000,999.000 0.000 0,0 1837.790,2440.159 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1838.812,2448.291 A1007.000,1007.000 40.000 0,1 1824.045,2453.438 L1828.872,2467.640 A1022.000,1022.000 0.000 0,0 1843.859,2462.416 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1772.280,2445.579 A984.000,984.000 40.000 0,1 1763.772,2447.987 L1767.793,2462.438 A999.000,999.000 0.000 0,0 1776.430,2459.993 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1742.677,2453.606 A984.000,984.000 40.000 0,1 1695.327,2464.419 L1698.304,2479.120 A999.000,999.000 0.000 0,0 1746.376,2468.142 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1743.258,2477.177 A1007.000,1007.000 40.000 0,1 1742.716,2477.312 L1746.331,2491.869 A1022.000,1022.000 0.000 0,0 1746.881,2491.733 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1702.410,2486.448 A1007.000,1007.000 40.000 0,1 1661.432,2493.976 L1663.836,2508.782 A1022.000,1022.000 0.000 0,0 1705.425,2501.142 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1706.361,2509.116 A1030.000,1030.000 40.000 0,1 1673.009,2515.366 L1675.528,2530.153 A1045.000,1045.000 0.000 0,0 1709.366,2523.812 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1651.277,2472.302 A984.000,984.000 40.000 0,1 1650.090,2472.486 L1652.378,2487.310 A999.000,999.000 0.000 0,0 1653.583,2487.124 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1646.421,2473.045 A984.000,984.000 40.000 0,1 1636.807,2474.443 L1638.893,2489.298 A999.000,999.000 0.000 0,0 1648.653,2487.878 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1625.124,2476.012 A984.000,984.000 40.000 0,1 1623.608,2476.205 L1625.492,2491.087 A999.000,999.000 0.000 0,0 1627.031,2490.891 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1621.983,2476.410 A984.000,984.000 40.000 0,1 1608.433,2478.007 L1610.086,2492.916 A999.000,999.000 0.000 0,0 1623.843,2491.294 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1603.441,2478.548 A984.000,984.000 40.000 0,1 1596.708,2479.236 L1598.182,2494.164 A999.000,999.000 0.000 0,0 1605.018,2493.465 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1601.081,2501.914 A1007.000,1007.000 40.000 0,1 1558.212,2505.316 L1559.079,2520.291 A1022.000,1022.000 0.000 0,0 1602.586,2516.838 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1595.187,2479.385 A984.000,984.000 40.000 0,1 1550.233,2482.717 L1550.999,2497.697 A999.000,999.000 0.000 0,0 1596.638,2494.315 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1586.324,2526.376 A1030.000,1030.000 40.000 0,1 1586.210,2526.386 L1587.465,2541.333 A1045.000,1045.000 0.000 0,0 1587.581,2541.323 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1556.762,2505.399 A1007.000,1007.000 40.000 0,1 1525.623,2506.674 L1526.004,2521.669 A1022.000,1022.000 0.000 0,0 1557.607,2520.375 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1548.162,2482.821 A984.000,984.000 40.000 0,1 1541.183,2483.138 L1541.811,2498.125 A999.000,999.000 0.000 0,0 1548.896,2497.803 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1549.615,2528.804 A1030.000,1030.000 40.000 0,1 1527.921,2529.621 L1528.328,2544.616 A1045.000,1045.000 0.000 0,0 1550.337,2543.787 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1524.928,2483.684 A984.000,984.000 40.000 0,1 1513.033,2483.914 L1513.231,2498.912 A999.000,999.000 0.000 0,0 1525.308,2498.679 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1510.522,2483.944 A984.000,984.000 40.000 0,1 1500.480,2484.000 L1500.488,2499.000 A999.000,999.000 0.000 0,0 1510.683,2498.943 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1510.768,2506.942 A1007.000,1007.000 40.000 0,1 1497.140,2506.996 L1497.098,2521.996 A1022.000,1022.000 0.000 0,0 1510.929,2521.942 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1499.170,2484.000 A984.000,984.000 40.000 0,1 1493.822,2483.981 L1493.728,2498.980 A999.000,999.000 0.000 0,0 1499.158,2499.000 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1498.789,2529.999 A1030.000,1030.000 40.000 0,1 1305.496,2511.468 L1302.664,2526.198 A1045.000,1045.000 0.000 0,0 1498.771,2544.999 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1497.804,2460.997 A961.000,961.000 40.000 0,1 1486.504,2460.905 L1486.294,2475.904 A976.000,976.000 0.000 0,0 1497.770,2475.997 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1494.013,2506.982 A1007.000,1007.000 40.000 0,1 1472.122,2506.614 L1471.706,2521.608 A1022.000,1022.000 0.000 0,0 1493.923,2521.982 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1453.475,2459.873 A961.000,961.000 40.000 0,1 1423.263,2457.931 L1422.065,2472.883 A976.000,976.000 0.000 0,0 1452.749,2474.856 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1450.290,2482.744 A984.000,984.000 40.000 0,1 1419.577,2480.708 L1418.351,2495.658 A999.000,999.000 0.000 0,0 1449.532,2497.724 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1443.328,2505.404 A1007.000,1007.000 40.000 0,1 1402.566,2502.275 L1401.114,2517.205 A1022.000,1022.000 0.000 0,0 1442.483,2520.380 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1416.995,2457.409 A961.000,961.000 40.000 0,1 1395.564,2455.308 L1393.934,2470.220 A976.000,976.000 0.000 0,0 1415.699,2472.353 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1373.340,2452.617 A961.000,961.000 40.000 0,1 1359.089,2450.613 L1356.889,2465.451 A976.000,976.000 0.000 0,0 1371.363,2467.486 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1369.876,2475.358 A984.000,984.000 40.000 0,1 1349.780,2472.466 L1347.491,2487.290 A999.000,999.000 0.000 0,0 1367.892,2490.227 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1357.208,2496.825 A1007.000,1007.000 40.000 0,1 1346.269,2495.196 L1343.979,2510.021 A1022.000,1022.000 0.000 0,0 1355.081,2511.673 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1352.238,2449.572 A961.000,961.000 40.000 0,1 1315.596,2443.142 L1312.717,2457.863 A976.000,976.000 0.000 0,0 1349.932,2464.394 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1342.449,2471.305 A984.000,984.000 40.000 0,1 1323.947,2468.122 L1321.263,2482.880 A999.000,999.000 0.000 0,0 1340.048,2486.112 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1328.190,2492.235 A1007.000,1007.000 40.000 0,1 1326.100,2491.871 L1323.509,2506.645 A1022.000,1022.000 0.000 0,0 1325.631,2507.015 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1313.325,2466.131 A984.000,984.000 40.000 0,1 1281.389,2459.409 L1278.057,2474.034 A999.000,999.000 0.000 0,0 1310.480,2480.858 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1310.786,2442.188 A961.000,961.000 40.000 0,1 1299.407,2439.832 L1296.276,2454.501 A976.000,976.000 0.000 0,0 1307.832,2456.895 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1296.906,2439.294 A961.000,961.000 40.000 0,1 1296.281,2439.159 L1293.101,2453.818 A976.000,976.000 0.000 0,0 1293.736,2453.955 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1287.746,2437.267 A961.000,961.000 40.000 0,1 1241.654,2425.623 L1237.621,2440.071 A976.000,976.000 0.000 0,0 1284.433,2451.897 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1268.213,2456.311 A984.000,984.000 40.000 0,1 1232.948,2447.069 L1228.877,2461.506 A999.000,999.000 0.000 0,0 1264.680,2470.889 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1250.871,2475.697 A1007.000,1007.000 40.000 0,1 1233.163,2471.003 L1229.188,2485.467 A1022.000,1022.000 0.000 0,0 1247.160,2490.230 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1244.849,2497.897 A1030.000,1030.000 40.000 0,1 1117.737,2456.439 L1112.170,2470.367 A1045.000,1045.000 0.000 0,0 1241.133,2512.429 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1238.267,2424.671 A961.000,961.000 40.000 0,1 1187.510,2408.774 L1182.632,2422.959 A976.000,976.000 0.000 0,0 1234.182,2439.104 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1231.793,2446.742 A984.000,984.000 40.000 0,1 1179.927,2430.489 L1175.048,2444.673 A999.000,999.000 0.000 0,0 1227.704,2461.174 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1180.486,2454.966 A1007.000,1007.000 40.000 0,1 1179.956,2454.788 L1175.189,2469.011 A1022.000,1022.000 0.000 0,0 1175.726,2469.191 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1176.042,2404.750 A961.000,961.000 40.000 0,1 1136.525,2389.610 L1130.851,2403.496 A976.000,976.000 0.000 0,0 1170.986,2418.872 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1158.545,2422.857 A984.000,984.000 40.000 0,1 1136.735,2414.492 L1131.198,2428.432 A999.000,999.000 0.000 0,0 1153.340,2436.925 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1134.403,2413.562 A984.000,984.000 40.000 0,1 1094.041,2396.356 L1087.852,2410.019 A999.000,999.000 0.000 0,0 1128.830,2427.488 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1125.028,2434.583 A1007.000,1007.000 40.000 0,1 1101.924,2424.978 L1095.994,2438.756 A1022.000,1022.000 0.000 0,0 1119.443,2448.504 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1117.661,2381.668 A961.000,961.000 40.000 0,1 1112.972,2379.619 L1106.931,2393.349 A976.000,976.000 0.000 0,0 1111.693,2395.429 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1098.390,2373.058 A961.000,961.000 40.000 0,1 1053.154,2350.794 L1046.179,2364.073 A976.000,976.000 0.000 0,0 1092.121,2386.685 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1076.816,2388.353 A984.000,984.000 40.000 0,1 1073.764,2386.893 L1067.266,2400.412 A999.000,999.000 0.000 0,0 1070.365,2401.895 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1072.387,2386.230 A984.000,984.000 40.000 0,1 1017.813,2357.760 L1010.463,2370.835 A999.000,999.000 0.000 0,0 1065.868,2399.739 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1040.291,2395.945 A1007.000,1007.000 40.000 0,1 1030.183,2390.686 L1023.185,2403.953 A1022.000,1022.000 0.000 0,0 1033.444,2409.290 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1033.364,2340.103 A961.000,961.000 40.000 0,1 1032.433,2339.584 L1025.135,2352.689 A976.000,976.000 0.000 0,0 1026.081,2353.215 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1018.436,2331.635 A961.000,961.000 40.000 0,1 993.475,2316.672 L985.569,2329.419 A976.000,976.000 0.000 0,0 1010.919,2344.616 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M999.937,2347.462 A984.000,984.000 40.000 0,1 975.521,2332.573 L967.526,2345.265 A999.000,999.000 0.000 0,0 992.314,2360.381 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M969.324,2355.823 A1007.000,1007.000 40.000 0,1 757.776,2180.553 L746.720,2190.690 A1022.000,1022.000 0.000 0,0 961.419,2368.571 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M983.368,2310.316 A961.000,961.000 40.000 0,1 945.231,2284.699 L936.572,2296.947 A976.000,976.000 0.000 0,0 975.304,2322.964 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M970.911,2329.651 A984.000,984.000 40.000 0,1 970.451,2329.358 L962.379,2342.000 A999.000,999.000 0.000 0,0 962.846,2342.298 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M941.800,2310.351 A984.000,984.000 40.000 0,1 901.974,2281.422 L892.857,2293.334 A999.000,999.000 0.000 0,0 933.291,2322.704 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M913.078,2260.949 A961.000,961.000 40.000 0,1 907.187,2256.369 L897.934,2268.174 A976.000,976.000 0.000 0,0 903.917,2272.826 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M899.915,2250.612 A961.000,961.000 40.000 0,1 894.435,2246.199 L884.983,2257.846 A976.000,976.000 0.000 0,0 890.548,2262.328 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M883.084,2236.841 A961.000,961.000 40.000 0,1 852.659,2210.261 L842.555,2221.347 A976.000,976.000 0.000 0,0 873.454,2248.342 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M825.654,2184.674 A961.000,961.000 40.000 0,1 812.490,2171.454 L801.759,2181.935 A976.000,976.000 0.000 0,0 815.128,2195.360 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M802.585,2161.161 A961.000,961.000 40.000 0,1 783.596,2140.536 L772.414,2150.534 A976.000,976.000 0.000 0,0 791.700,2171.481 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M774.503,2130.219 A961.000,961.000 40.000 0,1 646.937,1942.499 L633.622,1949.405 A976.000,976.000 0.000 0,0 763.179,2140.056 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M717.055,2096.031 A984.000,984.000 40.000 0,1 688.783,2056.941 L676.417,2065.431 A999.000,999.000 0.000 0,0 705.119,2105.116 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M696.527,2107.025 A1007.000,1007.000 40.000 0,1 518.690,1726.007 L504.072,1729.374 A1022.000,1022.000 0.000 0,0 684.558,2116.067 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M679.629,2043.366 A984.000,984.000 40.000 0,1 678.425,2041.545 L665.901,2049.800 A999.000,999.000 0.000 0,0 667.123,2051.649 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M677.585,2040.268 A984.000,984.000 40.000 0,1 603.374,1905.362 L589.706,1911.542 A999.000,999.000 0.000 0,0 665.048,2048.504 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M623.488,2040.950 A1030.000,1030.000 40.000 0,1 493.313,1717.900 L478.652,1721.073 A1045.000,1045.000 0.000 0,0 610.724,2048.828 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M599.531,1835.673 A961.000,961.000 40.000 0,1 595.971,1825.964 L581.860,1831.052 A976.000,976.000 0.000 0,0 585.476,1840.912 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M582.687,1786.459 A961.000,961.000 40.000 0,1 574.177,1757.627 L559.726,1761.649 A976.000,976.000 0.000 0,0 568.369,1790.930 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M561.777,1707.989 A961.000,961.000 40.000 0,1 552.747,1661.965 L537.962,1664.493 A976.000,976.000 0.000 0,0 547.133,1711.235 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M549.670,1642.809 A961.000,961.000 40.000 0,1 546.981,1623.595 L532.105,1625.524 A976.000,976.000 0.000 0,0 534.837,1645.038 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M525.139,1633.802 A984.000,984.000 40.000 0,1 523.525,1621.463 L508.640,1623.315 A999.000,999.000 0.000 0,0 510.279,1635.841 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M544.785,1605.284 A961.000,961.000 40.000 0,1 544.634,1603.906 L529.722,1605.528 A976.000,976.000 0.000 0,0 529.875,1606.927 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M542.129,1577.481 A961.000,961.000 40.000 0,1 540.677,1556.744 L525.703,1557.630 A976.000,976.000 0.000 0,0 527.177,1578.690 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M517.769,1558.974 A984.000,984.000 40.000 0,1 516.065,1511.308 L501.066,1511.481 A999.000,999.000 0.000 0,0 502.796,1559.873 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M540.066,1545.247 A961.000,961.000 40.000 0,1 539.000,1500.704 L524.000,1500.715 A976.000,976.000 0.000 0,0 525.082,1545.954 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M539.420,1471.605 A961.000,961.000 40.000 0,1 540.325,1449.557 L525.345,1448.769 A976.000,976.000 0.000 0,0 524.426,1471.162 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M517.010,1455.436 A984.000,984.000 40.000 0,1 519.770,1413.943 L504.828,1412.631 A999.000,999.000 0.000 0,0 502.025,1454.757 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M543.929,1402.794 A961.000,961.000 40.000 0,1 549.446,1358.688 L534.610,1356.482 A976.000,976.000 0.000 0,0 529.006,1401.277 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M521.113,1399.816 A984.000,984.000 40.000 0,1 528.121,1346.028 L513.306,1343.680 A999.000,999.000 0.000 0,0 506.191,1398.289 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M553.379,1334.379 A961.000,961.000 40.000 0,1 554.713,1326.929 L539.958,1324.228 A976.000,976.000 0.000 0,0 538.604,1331.794 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M531.140,1328.051 A984.000,984.000 40.000 0,1 541.963,1275.455 L527.359,1272.032 A999.000,999.000 0.000 0,0 516.371,1325.429 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M556.226,1318.861 A961.000,961.000 40.000 0,1 563.344,1285.065 L548.724,1281.710 A976.000,976.000 0.000 0,0 541.495,1316.034 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M515.693,1287.425 A1007.000,1007.000 40.000 0,1 528.696,1234.262 L514.227,1230.304 A1022.000,1022.000 0.000 0,0 501.031,1284.258 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M564.234,1281.222 A961.000,961.000 40.000 0,1 577.562,1230.501 L563.164,1226.295 A976.000,976.000 0.000 0,0 549.628,1277.807 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M545.778,1259.757 A984.000,984.000 40.000 0,1 677.154,960.389 L664.610,952.163 A999.000,999.000 0.000 0,0 531.232,1256.095 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M502.809,1242.105 A1030.000,1030.000 40.000 0,1 510.915,1212.577 L496.511,1208.392 A1045.000,1045.000 0.000 0,0 488.287,1238.349 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M583.351,1211.426 A961.000,961.000 40.000 0,1 591.984,1185.313 L577.811,1180.401 A976.000,976.000 0.000 0,0 569.043,1206.921 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M541.166,1192.290 A1007.000,1007.000 40.000 0,1 544.462,1182.202 L530.228,1177.468 A1022.000,1022.000 0.000 0,0 526.883,1187.706 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M522.529,1175.269 A1030.000,1030.000 40.000 0,1 531.054,1150.653 L516.943,1145.566 A1045.000,1045.000 0.000 0,0 508.294,1170.540 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M600.008,1163.049 A961.000,961.000 40.000 0,1 612.984,1130.238 L599.139,1124.466 A976.000,976.000 0.000 0,0 585.960,1157.790 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M560.059,1138.670 A1007.000,1007.000 40.000 0,1 569.711,1114.498 L555.854,1108.756 A1022.000,1022.000 0.000 0,0 546.058,1133.287 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M543.045,1119.031 A1030.000,1030.000 40.000 0,1 561.779,1074.980 L548.116,1068.790 A1045.000,1045.000 0.000 0,0 529.109,1113.483 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M526.724,1098.076 A1053.000,1053.000 40.000 0,1 699.164,816.281 L687.756,806.542 A1068.000,1068.000 0.000 0,0 512.860,1092.351 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M615.049,1125.324 A961.000,961.000 40.000 0,1 624.763,1103.161 L611.102,1096.967 A976.000,976.000 0.000 0,0 601.236,1119.476 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M629.490,1092.897 A961.000,961.000 40.000 0,1 635.917,1079.427 L622.430,1072.863 A976.000,976.000 0.000 0,0 615.902,1086.543 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M590.969,1066.743 A1007.000,1007.000 40.000 0,1 611.082,1026.847 L597.841,1019.799 A1022.000,1022.000 0.000 0,0 577.428,1060.290 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M644.147,1062.923 A961.000,961.000 40.000 0,1 661.757,1030.032 L648.673,1022.696 A976.000,976.000 0.000 0,0 630.788,1056.101 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M586.784,1023.622 A1030.000,1030.000 40.000 0,1 596.313,1005.784 L583.152,998.586 A1045.000,1045.000 0.000 0,0 573.485,1016.684 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M616.332,1017.114 A1007.000,1007.000 40.000 0,1 703.091,884.382 L691.220,875.212 A1022.000,1022.000 0.000 0,0 603.169,1009.921 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M663.746,1026.503 A961.000,961.000 40.000 0,1 672.932,1010.634 L660.022,1002.996 A976.000,976.000 0.000 0,0 650.693,1019.112 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M674.620,1007.793 A961.000,961.000 40.000 0,1 689.558,983.566 L676.908,975.505 A976.000,976.000 0.000 0,0 661.736,1000.110 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M622.458,960.723 A1030.000,1030.000 40.000 0,1 646.027,924.127 L633.590,915.740 A1045.000,1045.000 0.000 0,0 609.678,952.870 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M697.617,971.131 A961.000,961.000 40.000 0,1 712.529,949.172 L700.238,940.575 A976.000,976.000 0.000 0,0 685.093,962.876 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M685.878,947.314 A984.000,984.000 40.000 0,1 693.432,936.347 L681.137,927.755 A999.000,999.000 0.000 0,0 673.468,938.889 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M723.999,933.129 A961.000,961.000 40.000 0,1 742.305,908.883 L730.478,899.656 A976.000,976.000 0.000 0,0 711.886,924.281 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M710.869,912.183 A984.000,984.000 40.000 0,1 718.366,902.251 L706.450,893.139 A999.000,999.000 0.000 0,0 698.840,903.223 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M723.701,895.338 A984.000,984.000 40.000 0,1 741.670,872.950 L730.110,863.392 A999.000,999.000 0.000 0,0 711.867,886.121 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M774.629,869.637 A961.000,961.000 40.000 0,1 792.820,849.294 L781.782,839.138 A976.000,976.000 0.000 0,0 763.307,859.797 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M808.836,832.308 A961.000,961.000 40.000 0,1 814.116,826.885 L803.410,816.379 A976.000,976.000 0.000 0,0 798.047,821.886 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M797.318,811.165 A984.000,984.000 40.000 0,1 814.963,793.615 L804.520,782.847 A999.000,999.000 0.000 0,0 786.606,800.664 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M835.428,805.835 A961.000,961.000 40.000 0,1 854.379,788.176 L844.301,777.065 A976.000,976.000 0.000 0,0 825.054,795.000 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M819.837,788.920 A984.000,984.000 40.000 0,1 838.927,771.139 L828.849,760.028 A999.000,999.000 0.000 0,0 809.469,778.080 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M819.842,757.414 A1007.000,1007.000 40.000 0,1 823.475,754.103 L813.397,742.992 A1022.000,1022.000 0.000 0,0 809.711,746.352 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M891.822,785.882 A938.000,938.000 40.000 0,1 1470.828,562.454 L1470.362,547.461 A953.000,953.000 0.000 0,0 882.097,774.463 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1021.224,666.756 A961.000,961.000 40.000 0,1 1051.664,649.991 L1044.666,636.723 A976.000,976.000 0.000 0,0 1013.751,653.751 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1151.397,604.457 A961.000,961.000 40.000 0,1 1470.113,539.465 L1469.647,524.472 A976.000,976.000 0.000 0,0 1145.956,590.479 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+<path d="M1321.391,532.346 A984.000,984.000 40.000 0,1 1457.290,516.927 L1456.639,501.941 A999.000,999.000 0.000 0,0 1318.668,517.595 Z" style="stroke-width:1.0;stroke:rgb(0,0,0);stroke-linecap:round;fill:none;" />
+</g>
+<g id="plot2">
+<g id="plot2-axis">
+</g>
+<polygon points="1501,663 1505,670 1497,670" style="fill:rgb(85,85,85);" />
+<polygon points="1510,685 1514,692 1506,692" style="fill:rgb(85,85,85);" />
+<polygon points="1519,693 1523,700 1515,700" style="fill:rgb(85,85,85);" />
+<polygon points="1528,684 1532,691 1524,691" style="fill:rgb(85,85,85);" />
+<polygon points="1538,661 1542,668 1534,668" style="fill:rgb(85,85,85);" />
+<polygon points="1549,631 1553,638 1545,638" style="fill:rgb(85,85,85);" />
+<polygon points="1561,601 1564,609 1556,608" style="fill:rgb(85,85,85);" />
+<polygon points="1573,581 1576,588 1568,588" style="fill:rgb(85,85,85);" />
+<polygon points="1583,576 1587,583 1579,582" style="fill:rgb(85,85,85);" />
+<polygon points="1592,587 1596,594 1588,594" style="fill:rgb(85,85,85);" />
+<polygon points="1600,612 1603,619 1595,618" style="fill:rgb(85,85,85);" />
+<polygon points="1606,644 1609,651 1601,650" style="fill:rgb(85,85,85);" />
+<polygon points="1611,675 1614,682 1607,681" style="fill:rgb(85,85,85);" />
+<polygon points="1618,696 1621,703 1613,702" style="fill:rgb(85,85,85);" />
+<polygon points="1626,702 1629,710 1621,708" style="fill:rgb(85,85,85);" />
+<polygon points="1637,692 1639,700 1632,698" style="fill:rgb(85,85,85);" />
+<polygon points="1650,669 1653,677 1645,675" style="fill:rgb(85,85,85);" />
+<polygon points="1665,640 1668,648 1660,646" style="fill:rgb(85,85,85);" />
+<polygon points="1680,613 1683,621 1675,619" style="fill:rgb(85,85,85);" />
+<polygon points="1694,597 1697,604 1689,603" style="fill:rgb(85,85,85);" />
+<polygon points="1705,596 1707,603 1700,601" style="fill:rgb(85,85,85);" />
+<polygon points="1712,610 1714,618 1707,616" style="fill:rgb(85,85,85);" />
+<polygon points="1716,638 1718,646 1710,644" style="fill:rgb(85,85,85);" />
+<polygon points="1717,671 1719,679 1712,677" style="fill:rgb(85,85,85);" />
+<polygon points="1719,701 1721,709 1713,707" style="fill:rgb(85,85,85);" />
+<polygon points="1723,720 1725,728 1717,726" style="fill:rgb(85,85,85);" />
+<polygon points="1731,725 1733,733 1725,731" style="fill:rgb(85,85,85);" />
+<polygon points="1744,714 1745,722 1738,720" style="fill:rgb(85,85,85);" />
+<polygon points="1760,692 1762,699 1755,697" style="fill:rgb(85,85,85);" />
+<polygon points="1779,665 1781,672 1773,670" style="fill:rgb(85,85,85);" />
+<polygon points="1798,641 1799,649 1792,646" style="fill:rgb(85,85,85);" />
+<polygon points="1813,629 1814,637 1807,634" style="fill:rgb(85,85,85);" />
+<polygon points="1823,632 1824,640 1817,637" style="fill:rgb(85,85,85);" />
+<polygon points="1827,650 1828,658 1821,655" style="fill:rgb(85,85,85);" />
+<polygon points="1826,679 1827,687 1820,684" style="fill:rgb(85,85,85);" />
+<polygon points="1823,712 1824,720 1817,717" style="fill:rgb(85,85,85);" />
+<polygon points="1821,741 1822,749 1815,745" style="fill:rgb(85,85,85);" />
+<polygon points="1824,758 1825,766 1817,763" style="fill:rgb(85,85,85);" />
+<polygon points="1832,761 1833,769 1826,766" style="fill:rgb(85,85,85);" />
+<polygon points="1847,750 1848,758 1841,755" style="fill:rgb(85,85,85);" />
+<polygon points="1868,729 1868,737 1861,733" style="fill:rgb(85,85,85);" />
+<polygon points="1890,704 1891,712 1884,709" style="fill:rgb(85,85,85);" />
+<polygon points="1911,685 1911,693 1904,689" style="fill:rgb(85,85,85);" />
+<polygon points="1926,677 1927,685 1920,681" style="fill:rgb(85,85,85);" />
+<polygon points="1935,684 1935,692 1928,688" style="fill:rgb(85,85,85);" />
+<polygon points="1935,704 1935,712 1928,708" style="fill:rgb(85,85,85);" />
+<polygon points="1930,734 1930,742 1923,738" style="fill:rgb(85,85,85);" />
+<polygon points="1923,766 1923,774 1916,770" style="fill:rgb(85,85,85);" />
+<polygon points="1918,793 1918,801 1911,797" style="fill:rgb(85,85,85);" />
+<polygon points="1919,809 1919,817 1912,813" style="fill:rgb(85,85,85);" />
+<polygon points="1928,810 1928,818 1921,814" style="fill:rgb(85,85,85);" />
+<polygon points="1946,799 1946,807 1939,803" style="fill:rgb(85,85,85);" />
+<polygon points="1970,780 1969,788 1963,783" style="fill:rgb(85,85,85);" />
+<polygon points="1995,759 1995,767 1988,763" style="fill:rgb(85,85,85);" />
+<polygon points="2017,744 2017,752 2010,747" style="fill:rgb(85,85,85);" />
+<polygon points="2032,740 2032,748 2025,744" style="fill:rgb(85,85,85);" />
+<polygon points="2038,750 2037,758 2031,753" style="fill:rgb(85,85,85);" />
+<polygon points="2034,772 2033,780 2027,776" style="fill:rgb(85,85,85);" />
+<polygon points="2025,802 2024,810 2017,805" style="fill:rgb(85,85,85);" />
+<polygon points="2013,833 2012,841 2006,836" style="fill:rgb(85,85,85);" />
+<polygon points="2006,857 2005,865 1998,860" style="fill:rgb(85,85,85);" />
+<polygon points="2006,871 2005,879 1999,874" style="fill:rgb(85,85,85);" />
+<polygon points="2017,872 2016,880 2010,875" style="fill:rgb(85,85,85);" />
+<polygon points="2038,861 2036,869 2030,864" style="fill:rgb(85,85,85);" />
+<polygon points="2065,845 2063,852 2057,847" style="fill:rgb(85,85,85);" />
+<polygon points="2092,828 2091,836 2085,830" style="fill:rgb(85,85,85);" />
+<polygon points="2115,817 2113,825 2108,820" style="fill:rgb(85,85,85);" />
+<polygon points="2129,817 2127,825 2121,820" style="fill:rgb(85,85,85);" />
+<polygon points="2131,830 2129,838 2123,832" style="fill:rgb(85,85,85);" />
+<polygon points="2123,853 2121,861 2115,855" style="fill:rgb(85,85,85);" />
+<polygon points="2109,882 2107,889 2101,884" style="fill:rgb(85,85,85);" />
+<polygon points="2094,910 2092,918 2086,912" style="fill:rgb(85,85,85);" />
+<polygon points="2085,932 2082,940 2077,934" style="fill:rgb(85,85,85);" />
+<polygon points="2085,944 2083,951 2078,946" style="fill:rgb(85,85,85);" />
+<polygon points="2098,944 2096,952 2090,946" style="fill:rgb(85,85,85);" />
+<polygon points="2121,935 2119,943 2113,937" style="fill:rgb(85,85,85);" />
+<polygon points="2151,922 2148,929 2143,923" style="fill:rgb(85,85,85);" />
+<polygon points="2180,909 2177,917 2172,911" style="fill:rgb(85,85,85);" />
+<polygon points="2202,903 2200,911 2194,905" style="fill:rgb(85,85,85);" />
+<polygon points="2214,907 2211,914 2206,908" style="fill:rgb(85,85,85);" />
+<polygon points="2212,921 2209,929 2204,923" style="fill:rgb(85,85,85);" />
+<polygon points="2200,944 2197,952 2192,945" style="fill:rgb(85,85,85);" />
+<polygon points="2181,971 2178,979 2173,972" style="fill:rgb(85,85,85);" />
+<polygon points="2163,997 2160,1004 2156,998" style="fill:rgb(85,85,85);" />
+<polygon points="2153,1016 2150,1023 2145,1017" style="fill:rgb(85,85,85);" />
+<polygon points="2154,1026 2151,1033 2146,1027" style="fill:rgb(85,85,85);" />
+<polygon points="2169,1027 2166,1034 2161,1028" style="fill:rgb(85,85,85);" />
+<polygon points="2195,1020 2191,1027 2187,1021" style="fill:rgb(85,85,85);" />
+<polygon points="2226,1010 2222,1017 2218,1011" style="fill:rgb(85,85,85);" />
+<polygon points="2256,1002 2252,1009 2248,1003" style="fill:rgb(85,85,85);" />
+<polygon points="2277,1000 2273,1008 2269,1001" style="fill:rgb(85,85,85);" />
+<polygon points="2286,1007 2282,1014 2278,1008" style="fill:rgb(85,85,85);" />
+<polygon points="2280,1023 2276,1030 2272,1023" style="fill:rgb(85,85,85);" />
+<polygon points="2263,1045 2259,1052 2255,1045" style="fill:rgb(85,85,85);" />
+<polygon points="2241,1069 2237,1076 2233,1069" style="fill:rgb(85,85,85);" />
+<polygon points="2221,1091 2217,1098 2213,1091" style="fill:rgb(85,85,85);" />
+<polygon points="2210,1108 2206,1115 2202,1108" style="fill:rgb(85,85,85);" />
+<polygon points="2212,1117 2208,1124 2204,1117" style="fill:rgb(85,85,85);" />
+<polygon points="2229,1118 2225,1125 2221,1118" style="fill:rgb(85,85,85);" />
+<polygon points="2257,1114 2252,1121 2249,1114" style="fill:rgb(85,85,85);" />
+<polygon points="2289,1109 2285,1115 2281,1108" style="fill:rgb(85,85,85);" />
+<polygon points="2319,1105 2314,1112 2311,1105" style="fill:rgb(85,85,85);" />
+<polygon points="2338,1107 2334,1114 2330,1107" style="fill:rgb(85,85,85);" />
+<polygon points="2343,1116 2338,1123 2335,1116" style="fill:rgb(85,85,85);" />
+<polygon points="2333,1132 2329,1138 2325,1131" style="fill:rgb(85,85,85);" />
+<polygon points="2312,1152 2307,1158 2304,1151" style="fill:rgb(85,85,85);" />
+<polygon points="2287,1173 2282,1179 2279,1172" style="fill:rgb(85,85,85);" />
+<polygon points="2265,1192 2260,1198 2257,1191" style="fill:rgb(85,85,85);" />
+<polygon points="2254,1206 2249,1212 2246,1205" style="fill:rgb(85,85,85);" />
+<polygon points="2258,1214 2253,1220 2250,1213" style="fill:rgb(85,85,85);" />
+<polygon points="2277,1217 2271,1223 2269,1216" style="fill:rgb(85,85,85);" />
+<polygon points="2306,1216 2301,1222 2298,1215" style="fill:rgb(85,85,85);" />
+<polygon points="2339,1215 2334,1221 2331,1214" style="fill:rgb(85,85,85);" />
+<polygon points="2367,1216 2362,1222 2360,1215" style="fill:rgb(85,85,85);" />
+<polygon points="2384,1222 2379,1227 2376,1220" style="fill:rgb(85,85,85);" />
+<polygon points="2385,1232 2380,1238 2377,1230" style="fill:rgb(85,85,85);" />
+<polygon points="2371,1247 2365,1253 2363,1245" style="fill:rgb(85,85,85);" />
+<polygon points="2346,1264 2341,1270 2338,1262" style="fill:rgb(85,85,85);" />
+<polygon points="2318,1282 2313,1287 2311,1280" style="fill:rgb(85,85,85);" />
+<polygon points="2296,1297 2290,1303 2288,1295" style="fill:rgb(85,85,85);" />
+<polygon points="2285,1309 2280,1315 2278,1307" style="fill:rgb(85,85,85);" />
+<polygon points="2291,1317 2285,1322 2283,1315" style="fill:rgb(85,85,85);" />
+<polygon points="2311,1322 2305,1327 2304,1319" style="fill:rgb(85,85,85);" />
+<polygon points="2342,1325 2336,1330 2334,1322" style="fill:rgb(85,85,85);" />
+<polygon points="2374,1328 2368,1333 2367,1325" style="fill:rgb(85,85,85);" />
+<polygon points="2401,1333 2395,1338 2393,1331" style="fill:rgb(85,85,85);" />
+<polygon points="2414,1341 2408,1346 2407,1338" style="fill:rgb(85,85,85);" />
+<polygon points="2411,1352 2405,1357 2403,1349" style="fill:rgb(85,85,85);" />
+<polygon points="2393,1365 2386,1370 2385,1362" style="fill:rgb(85,85,85);" />
+<polygon points="2365,1379 2358,1384 2357,1376" style="fill:rgb(85,85,85);" />
+<polygon points="2335,1393 2329,1398 2328,1390" style="fill:rgb(85,85,85);" />
+<polygon points="2312,1405 2306,1410 2305,1402" style="fill:rgb(85,85,85);" />
+<polygon points="2303,1415 2297,1420 2296,1412" style="fill:rgb(85,85,85);" />
+<polygon points="2310,1423 2304,1428 2303,1420" style="fill:rgb(85,85,85);" />
+<polygon points="2332,1431 2325,1435 2325,1427" style="fill:rgb(85,85,85);" />
+<polygon points="2363,1438 2356,1442 2356,1434" style="fill:rgb(85,85,85);" />
+<polygon points="2394,1445 2388,1450 2387,1442" style="fill:rgb(85,85,85);" />
+<polygon points="2418,1454 2411,1458 2411,1450" style="fill:rgb(85,85,85);" />
+<polygon points="2427,1464 2421,1468 2420,1460" style="fill:rgb(85,85,85);" />
+<polygon points="2420,1474 2413,1479 2413,1471" style="fill:rgb(85,85,85);" />
+<polygon points="2398,1485 2391,1489 2391,1481" style="fill:rgb(85,85,85);" />
+<polygon points="2368,1495 2361,1499 2361,1491" style="fill:rgb(85,85,85);" />
+<polygon points="2337,1505 2330,1509 2330,1501" style="fill:rgb(85,85,85);" />
+<polygon points="2315,1514 2308,1517 2308,1509" style="fill:rgb(85,85,85);" />
+<polygon points="2307,1522 2300,1526 2300,1518" style="fill:rgb(85,85,85);" />
+<polygon points="2316,1532 2309,1535 2309,1527" style="fill:rgb(85,85,85);" />
+<polygon points="2338,1542 2331,1546 2332,1538" style="fill:rgb(85,85,85);" />
+<polygon points="2369,1553 2362,1557 2362,1549" style="fill:rgb(85,85,85);" />
+<polygon points="2398,1565 2391,1568 2392,1560" style="fill:rgb(85,85,85);" />
+<polygon points="2418,1577 2411,1580 2412,1572" style="fill:rgb(85,85,85);" />
+<polygon points="2424,1587 2417,1591 2417,1583" style="fill:rgb(85,85,85);" />
+<polygon points="2413,1597 2405,1600 2406,1592" style="fill:rgb(85,85,85);" />
+<polygon points="2388,1604 2380,1607 2381,1599" style="fill:rgb(85,85,85);" />
+<polygon points="2356,1610 2348,1613 2349,1605" style="fill:rgb(85,85,85);" />
+<polygon points="2325,1615 2317,1618 2319,1610" style="fill:rgb(85,85,85);" />
+<polygon points="2304,1621 2296,1624 2297,1616" style="fill:rgb(85,85,85);" />
+<polygon points="2297,1629 2290,1632 2291,1624" style="fill:rgb(85,85,85);" />
+<polygon points="2307,1640 2300,1643 2301,1635" style="fill:rgb(85,85,85);" />
+<polygon points="2330,1654 2323,1656 2324,1648" style="fill:rgb(85,85,85);" />
+<polygon points="2359,1669 2352,1671 2353,1664" style="fill:rgb(85,85,85);" />
+<polygon points="2386,1684 2378,1687 2380,1679" style="fill:rgb(85,85,85);" />
+<polygon points="2402,1698 2395,1701 2396,1693" style="fill:rgb(85,85,85);" />
+<polygon points="2403,1709 2396,1711 2398,1704" style="fill:rgb(85,85,85);" />
+<polygon points="2389,1716 2381,1718 2383,1711" style="fill:rgb(85,85,85);" />
+<polygon points="2361,1720 2354,1722 2355,1714" style="fill:rgb(85,85,85);" />
+<polygon points="2328,1721 2321,1723 2323,1715" style="fill:rgb(85,85,85);" />
+<polygon points="2298,1722 2290,1724 2293,1717" style="fill:rgb(85,85,85);" />
+<polygon points="2279,1726 2271,1728 2273,1721" style="fill:rgb(85,85,85);" />
+<polygon points="2274,1734 2266,1736 2268,1728" style="fill:rgb(85,85,85);" />
+<polygon points="2285,1747 2277,1749 2279,1741" style="fill:rgb(85,85,85);" />
+<polygon points="2307,1764 2299,1766 2302,1758" style="fill:rgb(85,85,85);" />
+<polygon points="2334,1783 2326,1785 2329,1777" style="fill:rgb(85,85,85);" />
+<polygon points="2357,1802 2350,1803 2352,1796" style="fill:rgb(85,85,85);" />
+<polygon points="2370,1817 2362,1818 2365,1811" style="fill:rgb(85,85,85);" />
+<polygon points="2367,1827 2359,1828 2362,1821" style="fill:rgb(85,85,85);" />
+<polygon points="2349,1831 2341,1832 2344,1825" style="fill:rgb(85,85,85);" />
+<polygon points="2320,1830 2312,1831 2315,1824" style="fill:rgb(85,85,85);" />
+<polygon points="2287,1827 2279,1828 2282,1821" style="fill:rgb(85,85,85);" />
+<polygon points="2258,1825 2250,1826 2253,1818" style="fill:rgb(85,85,85);" />
+<polygon points="2240,1827 2232,1828 2236,1821" style="fill:rgb(85,85,85);" />
+<polygon points="2237,1835 2229,1836 2233,1829" style="fill:rgb(85,85,85);" />
+<polygon points="2248,1851 2240,1851 2244,1844" style="fill:rgb(85,85,85);" />
+<polygon points="2270,1871 2262,1872 2265,1864" style="fill:rgb(85,85,85);" />
+<polygon points="2294,1894 2286,1894 2289,1887" style="fill:rgb(85,85,85);" />
+<polygon points="2313,1914 2305,1915 2309,1908" style="fill:rgb(85,85,85);" />
+<polygon points="2321,1930 2313,1930 2317,1923" style="fill:rgb(85,85,85);" />
+<polygon points="2314,1938 2306,1938 2310,1931" style="fill:rgb(85,85,85);" />
+<polygon points="2294,1939 2286,1939 2290,1932" style="fill:rgb(85,85,85);" />
+<polygon points="2264,1933 2256,1933 2260,1926" style="fill:rgb(85,85,85);" />
+<polygon points="2232,1926 2224,1926 2228,1919" style="fill:rgb(85,85,85);" />
+<polygon points="2205,1921 2197,1921 2201,1914" style="fill:rgb(85,85,85);" />
+<polygon points="2189,1922 2181,1922 2186,1915" style="fill:rgb(85,85,85);" />
+<polygon points="2188,1931 2180,1931 2184,1924" style="fill:rgb(85,85,85);" />
+<polygon points="2199,1949 2191,1949 2195,1942" style="fill:rgb(85,85,85);" />
+<polygon points="2218,1973 2210,1972 2214,1966" style="fill:rgb(85,85,85);" />
+<polygon points="2239,1998 2231,1998 2235,1991" style="fill:rgb(85,85,85);" />
+<polygon points="2254,2021 2246,2020 2250,2013" style="fill:rgb(85,85,85);" />
+<polygon points="2257,2036 2249,2035 2254,2028" style="fill:rgb(85,85,85);" />
+<polygon points="2247,2041 2240,2040 2244,2034" style="fill:rgb(85,85,85);" />
+<polygon points="2225,2038 2217,2037 2222,2030" style="fill:rgb(85,85,85);" />
+<polygon points="2196,2028 2188,2027 2193,2020" style="fill:rgb(85,85,85);" />
+<polygon points="2165,2016 2157,2015 2162,2009" style="fill:rgb(85,85,85);" />
+<polygon points="2141,2009 2133,2007 2138,2001" style="fill:rgb(85,85,85);" />
+<polygon points="2127,2009 2119,2008 2124,2002" style="fill:rgb(85,85,85);" />
+<polygon points="2126,2020 2118,2019 2123,2013" style="fill:rgb(85,85,85);" />
+<polygon points="2136,2041 2128,2039 2133,2033" style="fill:rgb(85,85,85);" />
+<polygon points="2153,2067 2145,2066 2150,2060" style="fill:rgb(85,85,85);" />
+<polygon points="2170,2095 2162,2094 2167,2088" style="fill:rgb(85,85,85);" />
+<polygon points="2180,2118 2172,2116 2178,2110" style="fill:rgb(85,85,85);" />
+<polygon points="2180,2132 2172,2130 2177,2124" style="fill:rgb(85,85,85);" />
+<polygon points="2167,2134 2160,2132 2165,2126" style="fill:rgb(85,85,85);" />
+<polygon points="2144,2126 2137,2124 2142,2118" style="fill:rgb(85,85,85);" />
+<polygon points="2116,2112 2108,2110 2114,2104" style="fill:rgb(85,85,85);" />
+<polygon points="2087,2097 2080,2095 2085,2089" style="fill:rgb(85,85,85);" />
+<polygon points="2065,2087 2058,2085 2064,2079" style="fill:rgb(85,85,85);" />
+<polygon points="2054,2088 2046,2085 2052,2080" style="fill:rgb(85,85,85);" />
+<polygon points="2053,2100 2045,2098 2051,2093" style="fill:rgb(85,85,85);" />
+<polygon points="2062,2124 2054,2121 2060,2116" style="fill:rgb(85,85,85);" />
+<polygon points="2075,2153 2068,2150 2074,2145" style="fill:rgb(85,85,85);" />
+<polygon points="2088,2182 2080,2180 2086,2174" style="fill:rgb(85,85,85);" />
+<polygon points="2094,2205 2086,2202 2092,2197" style="fill:rgb(85,85,85);" />
+<polygon points="2090,2216 2082,2214 2089,2208" style="fill:rgb(85,85,85);" />
+<polygon points="2075,2215 2068,2212 2074,2207" style="fill:rgb(85,85,85);" />
+<polygon points="2053,2202 2045,2199 2052,2194" style="fill:rgb(85,85,85);" />
+<polygon points="2026,2184 2018,2181 2025,2176" style="fill:rgb(85,85,85);" />
+<polygon points="2000,2166 1993,2163 1999,2158" style="fill:rgb(85,85,85);" />
+<polygon points="1981,2155 1974,2152 1980,2147" style="fill:rgb(85,85,85);" />
+<polygon points="1971,2156 1964,2153 1970,2148" style="fill:rgb(85,85,85);" />
+<polygon points="1970,2171 1963,2168 1970,2163" style="fill:rgb(85,85,85);" />
+<polygon points="1977,2197 1970,2193 1976,2189" style="fill:rgb(85,85,85);" />
+<polygon points="1987,2228 1979,2225 1986,2220" style="fill:rgb(85,85,85);" />
+<polygon points="1994,2258 1987,2254 1994,2250" style="fill:rgb(85,85,85);" />
+<polygon points="1996,2279 1989,2276 1996,2271" style="fill:rgb(85,85,85);" />
+<polygon points="1989,2288 1982,2284 1989,2280" style="fill:rgb(85,85,85);" />
+<polygon points="1974,2282 1967,2278 1974,2274" style="fill:rgb(85,85,85);" />
+<polygon points="1952,2265 1945,2261 1952,2257" style="fill:rgb(85,85,85);" />
+<polygon points="1928,2243 1921,2239 1928,2235" style="fill:rgb(85,85,85);" />
+<polygon points="1906,2223 1899,2219 1906,2215" style="fill:rgb(85,85,85);" />
+<polygon points="1889,2211 1882,2207 1889,2203" style="fill:rgb(85,85,85);" />
+<polygon points="1880,2214 1873,2210 1880,2206" style="fill:rgb(85,85,85);" />
+<polygon points="1879,2230 1872,2226 1879,2222" style="fill:rgb(85,85,85);" />
+<polygon points="1882,2258 1876,2254 1883,2250" style="fill:rgb(85,85,85);" />
+<polygon points="1888,2291 1881,2286 1888,2283" style="fill:rgb(85,85,85);" />
+<polygon points="1891,2320 1885,2316 1892,2312" style="fill:rgb(85,85,85);" />
+<polygon points="1889,2340 1882,2335 1890,2332" style="fill:rgb(85,85,85);" />
+<polygon points="1880,2345 1874,2340 1881,2337" style="fill:rgb(85,85,85);" />
+<polygon points="1864,2335 1858,2330 1865,2327" style="fill:rgb(85,85,85);" />
+<polygon points="1845,2314 1838,2309 1846,2306" style="fill:rgb(85,85,85);" />
+<polygon points="1823,2288 1817,2283 1825,2280" style="fill:rgb(85,85,85);" />
+<polygon points="1805,2266 1798,2261 1806,2259" style="fill:rgb(85,85,85);" />
+<polygon points="1791,2255 1784,2250 1792,2247" style="fill:rgb(85,85,85);" />
+<polygon points="1782,2259 1776,2254 1784,2251" style="fill:rgb(85,85,85);" />
+<polygon points="1780,2278 1773,2273 1781,2270" style="fill:rgb(85,85,85);" />
+<polygon points="1780,2307 1774,2302 1782,2299" style="fill:rgb(85,85,85);" />
+<polygon points="1781,2340 1775,2335 1783,2332" style="fill:rgb(85,85,85);" />
+<polygon points="1780,2369 1774,2363 1782,2361" style="fill:rgb(85,85,85);" />
+<polygon points="1774,2385 1769,2380 1776,2377" style="fill:rgb(85,85,85);" />
+<polygon points="1764,2386 1758,2381 1766,2379" style="fill:rgb(85,85,85);" />
+<polygon points="1749,2372 1744,2367 1751,2364" style="fill:rgb(85,85,85);" />
+<polygon points="1732,2347 1726,2342 1734,2340" style="fill:rgb(85,85,85);" />
+<polygon points="1715,2319 1709,2314 1717,2312" style="fill:rgb(85,85,85);" />
+<polygon points="1699,2297 1694,2291 1702,2289" style="fill:rgb(85,85,85);" />
+<polygon points="1687,2286 1682,2280 1690,2278" style="fill:rgb(85,85,85);" />
+<polygon points="1680,2292 1674,2286 1682,2284" style="fill:rgb(85,85,85);" />
+<polygon points="1675,2312 1669,2306 1677,2304" style="fill:rgb(85,85,85);" />
+<polygon points="1671,2342 1666,2336 1674,2335" style="fill:rgb(85,85,85);" />
+<polygon points="1668,2375 1663,2369 1671,2367" style="fill:rgb(85,85,85);" />
+<polygon points="1663,2401 1658,2395 1665,2394" style="fill:rgb(85,85,85);" />
+<polygon points="1655,2415 1650,2409 1657,2407" style="fill:rgb(85,85,85);" />
+<polygon points="1644,2412 1639,2405 1647,2404" style="fill:rgb(85,85,85);" />
+<polygon points="1631,2393 1626,2387 1634,2386" style="fill:rgb(85,85,85);" />
+<polygon points="1617,2365 1612,2359 1620,2358" style="fill:rgb(85,85,85);" />
+<polygon points="1603,2336 1599,2329 1607,2328" style="fill:rgb(85,85,85);" />
+<polygon points="1591,2313 1587,2306 1595,2306" style="fill:rgb(85,85,85);" />
+<polygon points="1581,2303 1577,2297 1585,2296" style="fill:rgb(85,85,85);" />
+<polygon points="1573,2310 1568,2304 1576,2303" style="fill:rgb(85,85,85);" />
+<polygon points="1566,2332 1561,2326 1569,2325" style="fill:rgb(85,85,85);" />
+<polygon points="1559,2363 1554,2356 1562,2356" style="fill:rgb(85,85,85);" />
+<polygon points="1551,2394 1546,2388 1554,2387" style="fill:rgb(85,85,85);" />
+<polygon points="1542,2418 1538,2411 1546,2411" style="fill:rgb(85,85,85);" />
+<polygon points="1532,2428 1528,2421 1536,2420" style="fill:rgb(85,85,85);" />
+<polygon points="1521,2420 1517,2413 1525,2413" style="fill:rgb(85,85,85);" />
+<polygon points="1511,2398 1507,2391 1515,2391" style="fill:rgb(85,85,85);" />
+<polygon points="1501,2368 1497,2361 1505,2361" style="fill:rgb(85,85,85);" />
+<polygon points="1492,2337 1488,2330 1496,2330" style="fill:rgb(85,85,85);" />
+<polygon points="1483,2315 1479,2308 1487,2308" style="fill:rgb(85,85,85);" />
+<polygon points="1474,2307 1470,2300 1478,2300" style="fill:rgb(85,85,85);" />
+<polygon points="1465,2316 1461,2309 1469,2309" style="fill:rgb(85,85,85);" />
+<polygon points="1454,2338 1451,2331 1459,2331" style="fill:rgb(85,85,85);" />
+<polygon points="1443,2368 1440,2361 1448,2362" style="fill:rgb(85,85,85);" />
+<polygon points="1431,2398 1428,2391 1436,2391" style="fill:rgb(85,85,85);" />
+<polygon points="1419,2418 1416,2411 1424,2412" style="fill:rgb(85,85,85);" />
+<polygon points="1409,2423 1405,2416 1413,2417" style="fill:rgb(85,85,85);" />
+<polygon points="1399,2412 1396,2405 1404,2406" style="fill:rgb(85,85,85);" />
+<polygon points="1392,2387 1389,2380 1397,2381" style="fill:rgb(85,85,85);" />
+<polygon points="1387,2355 1383,2348 1391,2349" style="fill:rgb(85,85,85);" />
+<polygon points="1381,2324 1378,2317 1386,2318" style="fill:rgb(85,85,85);" />
+<polygon points="1375,2303 1372,2296 1380,2297" style="fill:rgb(85,85,85);" />
+<polygon points="1367,2297 1364,2289 1372,2291" style="fill:rgb(85,85,85);" />
+<polygon points="1356,2307 1354,2299 1361,2301" style="fill:rgb(85,85,85);" />
+<polygon points="1343,2329 1340,2322 1348,2323" style="fill:rgb(85,85,85);" />
+<polygon points="1327,2358 1325,2351 1333,2352" style="fill:rgb(85,85,85);" />
+<polygon points="1312,2385 1309,2377 1317,2379" style="fill:rgb(85,85,85);" />
+<polygon points="1298,2401 1295,2394 1303,2396" style="fill:rgb(85,85,85);" />
+<polygon points="1287,2403 1285,2395 1292,2397" style="fill:rgb(85,85,85);" />
+<polygon points="1280,2388 1278,2380 1286,2382" style="fill:rgb(85,85,85);" />
+<polygon points="1277,2360 1275,2353 1282,2355" style="fill:rgb(85,85,85);" />
+<polygon points="1275,2327 1273,2320 1281,2322" style="fill:rgb(85,85,85);" />
+<polygon points="1274,2297 1272,2290 1280,2292" style="fill:rgb(85,85,85);" />
+<polygon points="1270,2278 1268,2270 1276,2272" style="fill:rgb(85,85,85);" />
+<polygon points="1262,2273 1261,2265 1268,2267" style="fill:rgb(85,85,85);" />
+<polygon points="1249,2284 1248,2276 1255,2278" style="fill:rgb(85,85,85);" />
+<polygon points="1232,2306 1231,2298 1238,2301" style="fill:rgb(85,85,85);" />
+<polygon points="1213,2333 1212,2325 1219,2328" style="fill:rgb(85,85,85);" />
+<polygon points="1195,2356 1193,2348 1201,2351" style="fill:rgb(85,85,85);" />
+<polygon points="1179,2368 1178,2360 1185,2363" style="fill:rgb(85,85,85);" />
+<polygon points="1169,2365 1168,2357 1176,2360" style="fill:rgb(85,85,85);" />
+<polygon points="1165,2347 1164,2339 1172,2342" style="fill:rgb(85,85,85);" />
+<polygon points="1166,2318 1165,2310 1173,2313" style="fill:rgb(85,85,85);" />
+<polygon points="1170,2285 1169,2277 1176,2281" style="fill:rgb(85,85,85);" />
+<polygon points="1172,2257 1171,2249 1178,2252" style="fill:rgb(85,85,85);" />
+<polygon points="1170,2239 1169,2231 1176,2234" style="fill:rgb(85,85,85);" />
+<polygon points="1161,2236 1161,2228 1168,2231" style="fill:rgb(85,85,85);" />
+<polygon points="1146,2247 1145,2239 1153,2242" style="fill:rgb(85,85,85);" />
+<polygon points="1126,2268 1125,2260 1132,2263" style="fill:rgb(85,85,85);" />
+<polygon points="1103,2292 1102,2284 1110,2288" style="fill:rgb(85,85,85);" />
+<polygon points="1082,2311 1082,2303 1089,2307" style="fill:rgb(85,85,85);" />
+<polygon points="1066,2319 1066,2311 1073,2315" style="fill:rgb(85,85,85);" />
+<polygon points="1058,2312 1058,2304 1065,2308" style="fill:rgb(85,85,85);" />
+<polygon points="1058,2292 1058,2284 1065,2288" style="fill:rgb(85,85,85);" />
+<polygon points="1063,2262 1063,2254 1070,2258" style="fill:rgb(85,85,85);" />
+<polygon points="1071,2230 1071,2222 1078,2226" style="fill:rgb(85,85,85);" />
+<polygon points="1076,2203 1076,2195 1083,2199" style="fill:rgb(85,85,85);" />
+<polygon points="1075,2188 1075,2180 1082,2184" style="fill:rgb(85,85,85);" />
+<polygon points="1066,2186 1066,2178 1073,2182" style="fill:rgb(85,85,85);" />
+<polygon points="1048,2197 1048,2189 1055,2193" style="fill:rgb(85,85,85);" />
+<polygon points="1024,2216 1025,2208 1031,2212" style="fill:rgb(85,85,85);" />
+<polygon points="998,2236 999,2228 1006,2233" style="fill:rgb(85,85,85);" />
+<polygon points="976,2251 977,2243 983,2248" style="fill:rgb(85,85,85);" />
+<polygon points="961,2255 962,2247 968,2252" style="fill:rgb(85,85,85);" />
+<polygon points="955,2245 956,2237 963,2242" style="fill:rgb(85,85,85);" />
+<polygon points="959,2223 960,2215 967,2220" style="fill:rgb(85,85,85);" />
+<polygon points="969,2193 970,2185 977,2190" style="fill:rgb(85,85,85);" />
+<polygon points="981,2163 982,2155 988,2160" style="fill:rgb(85,85,85);" />
+<polygon points="989,2138 990,2130 996,2135" style="fill:rgb(85,85,85);" />
+<polygon points="988,2125 989,2117 996,2122" style="fill:rgb(85,85,85);" />
+<polygon points="977,2124 979,2116 985,2121" style="fill:rgb(85,85,85);" />
+<polygon points="957,2134 958,2126 964,2131" style="fill:rgb(85,85,85);" />
+<polygon points="930,2150 931,2142 937,2148" style="fill:rgb(85,85,85);" />
+<polygon points="902,2167 904,2159 910,2164" style="fill:rgb(85,85,85);" />
+<polygon points="879,2177 881,2170 887,2175" style="fill:rgb(85,85,85);" />
+<polygon points="865,2177 867,2169 873,2175" style="fill:rgb(85,85,85);" />
+<polygon points="863,2165 865,2157 871,2162" style="fill:rgb(85,85,85);" />
+<polygon points="871,2142 873,2134 879,2140" style="fill:rgb(85,85,85);" />
+<polygon points="886,2113 888,2105 893,2111" style="fill:rgb(85,85,85);" />
+<polygon points="901,2085 903,2077 908,2083" style="fill:rgb(85,85,85);" />
+<polygon points="910,2063 913,2055 918,2061" style="fill:rgb(85,85,85);" />
+<polygon points="910,2051 912,2043 918,2049" style="fill:rgb(85,85,85);" />
+<polygon points="897,2050 900,2043 905,2049" style="fill:rgb(85,85,85);" />
+<polygon points="874,2059 876,2051 882,2057" style="fill:rgb(85,85,85);" />
+<polygon points="844,2072 847,2065 852,2071" style="fill:rgb(85,85,85);" />
+<polygon points="815,2085 818,2077 823,2083" style="fill:rgb(85,85,85);" />
+<polygon points="793,2091 795,2083 800,2089" style="fill:rgb(85,85,85);" />
+<polygon points="781,2087 784,2079 789,2085" style="fill:rgb(85,85,85);" />
+<polygon points="783,2072 786,2065 791,2071" style="fill:rgb(85,85,85);" />
+<polygon points="795,2050 798,2042 803,2049" style="fill:rgb(85,85,85);" />
+<polygon points="814,2023 817,2016 822,2022" style="fill:rgb(85,85,85);" />
+<polygon points="832,1997 835,1990 840,1997" style="fill:rgb(85,85,85);" />
+<polygon points="843,1978 846,1971 851,1977" style="fill:rgb(85,85,85);" />
+<polygon points="842,1968 845,1961 850,1967" style="fill:rgb(85,85,85);" />
+<polygon points="827,1967 830,1960 835,1967" style="fill:rgb(85,85,85);" />
+<polygon points="801,1974 805,1967 809,1973" style="fill:rgb(85,85,85);" />
+<polygon points="770,1983 773,1976 778,1983" style="fill:rgb(85,85,85);" />
+<polygon points="740,1991 744,1984 748,1991" style="fill:rgb(85,85,85);" />
+<polygon points="719,1993 722,1986 727,1992" style="fill:rgb(85,85,85);" />
+<polygon points="710,1986 714,1979 718,1986" style="fill:rgb(85,85,85);" />
+<polygon points="716,1970 720,1963 724,1970" style="fill:rgb(85,85,85);" />
+<polygon points="733,1949 737,1942 741,1949" style="fill:rgb(85,85,85);" />
+<polygon points="755,1925 759,1918 763,1925" style="fill:rgb(85,85,85);" />
+<polygon points="776,1902 780,1896 784,1903" style="fill:rgb(85,85,85);" />
+<polygon points="787,1886 791,1879 795,1886" style="fill:rgb(85,85,85);" />
+<polygon points="785,1877 789,1870 793,1877" style="fill:rgb(85,85,85);" />
+<polygon points="768,1875 772,1869 776,1876" style="fill:rgb(85,85,85);" />
+<polygon points="740,1879 744,1872 748,1879" style="fill:rgb(85,85,85);" />
+<polygon points="707,1884 712,1878 715,1885" style="fill:rgb(85,85,85);" />
+<polygon points="678,1887 682,1881 686,1888" style="fill:rgb(85,85,85);" />
+<polygon points="658,1885 663,1879 666,1886" style="fill:rgb(85,85,85);" />
+<polygon points="654,1876 658,1870 661,1877" style="fill:rgb(85,85,85);" />
+<polygon points="663,1861 668,1854 671,1862" style="fill:rgb(85,85,85);" />
+<polygon points="685,1841 689,1835 693,1842" style="fill:rgb(85,85,85);" />
+<polygon points="710,1820 715,1814 718,1821" style="fill:rgb(85,85,85);" />
+<polygon points="732,1801 737,1795 740,1802" style="fill:rgb(85,85,85);" />
+<polygon points="743,1787 748,1781 751,1788" style="fill:rgb(85,85,85);" />
+<polygon points="740,1779 745,1773 748,1780" style="fill:rgb(85,85,85);" />
+<polygon points="721,1776 726,1770 729,1778" style="fill:rgb(85,85,85);" />
+<polygon points="692,1776 697,1770 699,1778" style="fill:rgb(85,85,85);" />
+<polygon points="659,1777 664,1771 666,1779" style="fill:rgb(85,85,85);" />
+<polygon points="630,1776 636,1770 638,1778" style="fill:rgb(85,85,85);" />
+<polygon points="614,1771 619,1765 621,1772" style="fill:rgb(85,85,85);" />
+<polygon points="612,1760 618,1754 620,1762" style="fill:rgb(85,85,85);" />
+<polygon points="627,1746 632,1740 634,1747" style="fill:rgb(85,85,85);" />
+<polygon points="652,1728 657,1723 659,1730" style="fill:rgb(85,85,85);" />
+<polygon points="680,1711 685,1706 687,1713" style="fill:rgb(85,85,85);" />
+<polygon points="702,1696 708,1690 710,1698" style="fill:rgb(85,85,85);" />
+<polygon points="713,1684 719,1679 721,1686" style="fill:rgb(85,85,85);" />
+<polygon points="708,1676 714,1671 715,1678" style="fill:rgb(85,85,85);" />
+<polygon points="687,1671 693,1666 695,1674" style="fill:rgb(85,85,85);" />
+<polygon points="657,1668 663,1662 665,1670" style="fill:rgb(85,85,85);" />
+<polygon points="624,1664 630,1659 632,1667" style="fill:rgb(85,85,85);" />
+<polygon points="598,1659 604,1654 605,1662" style="fill:rgb(85,85,85);" />
+<polygon points="585,1651 591,1646 592,1653" style="fill:rgb(85,85,85);" />
+<polygon points="588,1640 594,1635 595,1643" style="fill:rgb(85,85,85);" />
+<polygon points="606,1627 612,1622 613,1630" style="fill:rgb(85,85,85);" />
+<polygon points="634,1613 640,1608 641,1616" style="fill:rgb(85,85,85);" />
+<polygon points="664,1600 670,1595 671,1603" style="fill:rgb(85,85,85);" />
+<polygon points="687,1588 693,1583 694,1591" style="fill:rgb(85,85,85);" />
+<polygon points="696,1578 703,1573 703,1581" style="fill:rgb(85,85,85);" />
+<polygon points="689,1569 696,1565 696,1573" style="fill:rgb(85,85,85);" />
+<polygon points="668,1562 674,1558 675,1566" style="fill:rgb(85,85,85);" />
+<polygon points="637,1555 644,1550 644,1558" style="fill:rgb(85,85,85);" />
+<polygon points="605,1547 612,1542 613,1550" style="fill:rgb(85,85,85);" />
+<polygon points="582,1538 589,1533 589,1541" style="fill:rgb(85,85,85);" />
+<polygon points="572,1528 579,1524 579,1532" style="fill:rgb(85,85,85);" />
+<polygon points="580,1517 586,1513 587,1521" style="fill:rgb(85,85,85);" />
+<polygon points="602,1507 608,1503 608,1511" style="fill:rgb(85,85,85);" />
+<polygon points="632,1497 639,1493 639,1501" style="fill:rgb(85,85,85);" />
+<polygon points="663,1488 670,1484 670,1492" style="fill:rgb(85,85,85);" />
+<polygon points="685,1479 692,1475 692,1483" style="fill:rgb(85,85,85);" />
+<polygon points="693,1471 700,1467 700,1475" style="fill:rgb(85,85,85);" />
+<polygon points="685,1461 692,1457 691,1465" style="fill:rgb(85,85,85);" />
+<polygon points="662,1451 669,1447 669,1455" style="fill:rgb(85,85,85);" />
+<polygon points="632,1439 639,1436 639,1444" style="fill:rgb(85,85,85);" />
+<polygon points="603,1427 610,1424 609,1432" style="fill:rgb(85,85,85);" />
+<polygon points="582,1415 590,1412 589,1420" style="fill:rgb(85,85,85);" />
+<polygon points="577,1404 584,1401 583,1409" style="fill:rgb(85,85,85);" />
+<polygon points="588,1395 596,1392 595,1400" style="fill:rgb(85,85,85);" />
+<polygon points="613,1388 621,1385 620,1393" style="fill:rgb(85,85,85);" />
+<polygon points="645,1383 653,1380 652,1388" style="fill:rgb(85,85,85);" />
+<polygon points="676,1378 684,1375 682,1383" style="fill:rgb(85,85,85);" />
+<polygon points="697,1372 705,1369 704,1377" style="fill:rgb(85,85,85);" />
+<polygon points="704,1364 711,1361 710,1369" style="fill:rgb(85,85,85);" />
+<polygon points="694,1353 702,1350 700,1358" style="fill:rgb(85,85,85);" />
+<polygon points="671,1339 679,1336 677,1344" style="fill:rgb(85,85,85);" />
+<polygon points="642,1324 650,1321 648,1329" style="fill:rgb(85,85,85);" />
+<polygon points="616,1308 624,1305 622,1313" style="fill:rgb(85,85,85);" />
+<polygon points="600,1294 607,1291 605,1299" style="fill:rgb(85,85,85);" />
+<polygon points="598,1283 606,1281 604,1288" style="fill:rgb(85,85,85);" />
+<polygon points="613,1276 621,1274 619,1282" style="fill:rgb(85,85,85);" />
+<polygon points="641,1273 648,1271 646,1278" style="fill:rgb(85,85,85);" />
+<polygon points="674,1272 681,1270 679,1277" style="fill:rgb(85,85,85);" />
+<polygon points="704,1271 711,1269 709,1276" style="fill:rgb(85,85,85);" />
+<polygon points="723,1267 731,1265 729,1273" style="fill:rgb(85,85,85);" />
+<polygon points="728,1259 736,1257 734,1265" style="fill:rgb(85,85,85);" />
+<polygon points="718,1246 725,1244 723,1252" style="fill:rgb(85,85,85);" />
+<polygon points="695,1229 703,1227 701,1235" style="fill:rgb(85,85,85);" />
+<polygon points="668,1210 676,1208 674,1216" style="fill:rgb(85,85,85);" />
+<polygon points="645,1191 653,1189 651,1197" style="fill:rgb(85,85,85);" />
+<polygon points="633,1175 641,1174 638,1182" style="fill:rgb(85,85,85);" />
+<polygon points="636,1166 644,1164 641,1172" style="fill:rgb(85,85,85);" />
+<polygon points="654,1162 662,1161 659,1168" style="fill:rgb(85,85,85);" />
+<polygon points="683,1163 691,1162 688,1169" style="fill:rgb(85,85,85);" />
+<polygon points="716,1166 724,1165 721,1172" style="fill:rgb(85,85,85);" />
+<polygon points="745,1168 753,1168 750,1175" style="fill:rgb(85,85,85);" />
+<polygon points="763,1166 771,1166 767,1173" style="fill:rgb(85,85,85);" />
+<polygon points="766,1158 774,1157 770,1165" style="fill:rgb(85,85,85);" />
+<polygon points="755,1143 763,1142 759,1149" style="fill:rgb(85,85,85);" />
+<polygon points="734,1122 742,1122 738,1129" style="fill:rgb(85,85,85);" />
+<polygon points="710,1099 718,1099 714,1106" style="fill:rgb(85,85,85);" />
+<polygon points="691,1078 699,1078 695,1085" style="fill:rgb(85,85,85);" />
+<polygon points="683,1063 691,1062 687,1069" style="fill:rgb(85,85,85);" />
+<polygon points="689,1055 697,1054 694,1061" style="fill:rgb(85,85,85);" />
+<polygon points="710,1054 718,1054 714,1061" style="fill:rgb(85,85,85);" />
+<polygon points="740,1060 748,1060 744,1067" style="fill:rgb(85,85,85);" />
+<polygon points="772,1068 780,1068 776,1075" style="fill:rgb(85,85,85);" />
+<polygon points="799,1073 807,1073 802,1080" style="fill:rgb(85,85,85);" />
+<polygon points="814,1072 822,1072 818,1079" style="fill:rgb(85,85,85);" />
+<polygon points="816,1063 824,1063 820,1070" style="fill:rgb(85,85,85);" />
+<polygon points="805,1045 813,1045 809,1052" style="fill:rgb(85,85,85);" />
+<polygon points="786,1021 794,1021 790,1028" style="fill:rgb(85,85,85);" />
+<polygon points="766,995 774,996 769,1002" style="fill:rgb(85,85,85);" />
+<polygon points="751,973 759,973 754,980" style="fill:rgb(85,85,85);" />
+<polygon points="747,958 755,958 751,965" style="fill:rgb(85,85,85);" />
+<polygon points="757,952 765,953 760,959" style="fill:rgb(85,85,85);" />
+<polygon points="779,956 787,957 782,963" style="fill:rgb(85,85,85);" />
+<polygon points="809,966 817,967 812,973" style="fill:rgb(85,85,85);" />
+<polygon points="839,978 847,979 842,985" style="fill:rgb(85,85,85);" />
+<polygon points="864,986 872,987 867,993" style="fill:rgb(85,85,85);" />
+<polygon points="878,985 886,987 880,993" style="fill:rgb(85,85,85);" />
+<polygon points="879,974 887,976 881,982" style="fill:rgb(85,85,85);" />
+<polygon points="869,954 877,955 871,961" style="fill:rgb(85,85,85);" />
+<polygon points="852,927 860,929 855,935" style="fill:rgb(85,85,85);" />
+<polygon points="836,899 844,901 838,907" style="fill:rgb(85,85,85);" />
+<polygon points="825,876 833,878 828,884" style="fill:rgb(85,85,85);" />
+<polygon points="826,862 834,864 828,870" style="fill:rgb(85,85,85);" />
+<polygon points="838,860 846,862 840,868" style="fill:rgb(85,85,85);" />
+<polygon points="861,868 869,870 863,876" style="fill:rgb(85,85,85);" />
+<polygon points="890,883 897,885 892,891" style="fill:rgb(85,85,85);" />
+<polygon points="918,898 925,900 920,906" style="fill:rgb(85,85,85);" />
+<polygon points="940,908 947,910 942,916" style="fill:rgb(85,85,85);" />
+</g>
+<defs>
+<pattern id="hline" width="10" height="10" patternTransform="rotate(0 0 0)" patternUnits="userSpaceOnUse"><line x1="0" y1="0" x2="10" y2="0" style="stroke:black;stroke-width:5" /></pattern>
+<pattern id="checker" width="10" height="10" patternTransform="rotate(45 0 0)" patternUnits="userSpaceOnUse"><line x1="0" y1="0" x2="10" y2="0" style="stroke:black;stroke-width:5" /><line x1="0" y1="0" x2="0" y2="10" style="stroke:black;stroke-width:4" /></pattern>
+<pattern id="hline-sparse" width="10" height="10" patternTransform="rotate(0 0 0)" patternUnits="userSpaceOnUse"><line x1="0" y1="0" x2="10" y2="0" style="stroke:black;stroke-width:2" /></pattern>
+<pattern id="checker" width="10" height="10" patternTransform="rotate(45 0 0)" patternUnits="userSpaceOnUse"><line x1="0" y1="0" x2="10" y2="0" style="stroke:black;stroke-width:2" /><line x1="0" y1="0" x2="0" y2="10" style="stroke:black;stroke-width:2" /></pattern>
+<pattern id="vline-sparse" width="10" height="10" patternTransform="rotate(0 0 0)" patternUnits="userSpaceOnUse"><line x1="0" y1="0" x2="0" y2="10" style="stroke:black;stroke-width:2" /></pattern>
+<pattern id="vline" width="10" height="10" patternTransform="rotate(0 0 0)" patternUnits="userSpaceOnUse"><line x1="0" y1="0" x2="0" y2="10" style="stroke:black;stroke-width:5" /></pattern>
+</defs>
+</svg>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tool-data/all_fasta.loc.sample	Wed Aug 09 09:52:52 2017 -0400
@@ -0,0 +1,18 @@
+#This file lists the locations and dbkeys of all the fasta files
+#under the "genome" directory (a directory that contains a directory
+#for each build). The script extract_fasta.py will generate the file
+#all_fasta.loc. This file has the format (white space characters are
+#TAB characters):
+#
+#<unique_build_id>	<dbkey>		<display_name>	<file_path>
+#
+#So, all_fasta.loc could look something like this:
+#
+#apiMel3	apiMel3	Honeybee (Apis mellifera): apiMel3		/path/to/genome/apiMel3/apiMel3.fa
+#hg19canon	hg19		Human (Homo sapiens): hg19 Canonical		/path/to/genome/hg19/hg19canon.fa
+#hg19full	hg19		Human (Homo sapiens): hg19 Full			/path/to/genome/hg19/hg19full.fa
+#
+#Your all_fasta.loc file should contain an entry for each individual
+#fasta file. So there will be multiple fasta files for each build,
+#such as with hg19 above.
+#
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tool_data_table_conf.xml.sample	Wed Aug 09 09:52:52 2017 -0400
@@ -0,0 +1,9 @@
+<!-- Use the file tool_data_table_conf.xml.oldlocstyle if you don't want to update your loc files as changed in revision 4550:535d276c92bc-->
+<tables>
+    <!-- Locations of all fasta files under genome directory -->
+    <table name="all_fasta" comment_char="#">
+        <columns>value, dbkey, name, path</columns>
+        <file path="tool-data/all_fasta.loc" />
+    </table>
+</tables>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/unified-histogram.py	Wed Aug 09 09:52:52 2017 -0400
@@ -0,0 +1,155 @@
+#!/usr/bin/env python
+import logging
+import sys
+
+import wiggle
+from BCBio import GFF
+
+logging.basicConfig(level=logging.INFO)
+log = logging.getLogger()
+
+
+MODE = sys.argv[1]
+
+# Pair up (file, extension) pairs from sys.argv
+files = zip(sys.argv[2:][0::2], sys.argv[2:][1::2])
+
+# Our output data structure. This could be much more efficient.
+data = {}
+
+
+def bed(idx, path):
+    # chrom - The name of the chromosome (e.g. chr3, chrY, chr2_random) or scaffold (e.g. scaffold10671).
+    # chromStart - The starting position of the feature in the chromosome or scaffold. The first base in a chromosome is numbered 0.
+    # chromEnd - The ending position of the feature in the chromosome or scaffold. The chromEnd base is not included in the display of the feature. For example, the first 100 bases of a chromosome are defined as chromStart=0, chromEnd=100, and span the bases numbered 0-99.
+    # name - Defines the name of the BED line. This label is displayed to the left of the BED line in the Genome Browser window when the track is open to full display mode or directly to the left of the item in pack mode.
+    # score - A score between 0 and 1000. If the track line useScore attribute is set to 1 for this annotation data set, the score value will determine the level of gray in which this feature is displayed (higher numbers = darker gray). This table shows the Genome Browser's translation of BED score values into shades of gray:
+    # strand - Defines the strand - either '+' or '-'.
+    # thickStart - The starting position at which the feature is drawn thickly (for example, the start codon in gene displays). When there is no thick part, thickStart and thickEnd are usually set to the chromStart position.
+    # thickEnd - The ending position at which the feature is drawn thickly (for example, the stop codon in gene displays).
+    # itemRgb - An RGB value of the form R,G,B (e.g. 255,0,0). If the track line itemRgb attribute is set to "On", this RBG value will determine the display color of the data contained in this BED line. NOTE: It is recommended that a simple color scheme (eight colors or less) be used with this attribute to avoid overwhelming the color resources of the Genome Browser and your Internet browser.
+
+    with open(path, 'r') as handle:
+        for line in handle:
+            lineData = line.strip().split()
+            chrom = lineData[0]
+            chromStart = lineData[1]
+            chromEnd = lineData[2]
+
+            if chrom not in data:
+                data[chrom] = {}
+
+            for i in range(chromStart, chromEnd):
+                if i not in data[chrom]:
+                    data[chrom][i] = {}
+
+                data[chrom][i][idx] = lineData[5]
+
+
+# Handlers
+def gff3(idx, path):
+    for record in GFF.parse(path):
+        if len(record.features) == 0:
+            continue
+
+        if record.id not in data:
+            data[record.id] = {}
+
+        for feature in record.features:
+            if 'score' in feature.qualifiers:
+                for i in range(feature.location.start, feature.location.end):
+                    if i not in data[record.id]:
+                        data[record.id][i] = {}
+
+                    data[record.id][i][idx] = feature.qualifiers['score'][0]
+
+
+def wig(idx, path):
+    walker = wiggle.Wiggle()
+    with open(path, 'r') as handle:
+        for region, position, value in walker.walk(handle):
+            if region not in data:
+                data[region] = {}
+
+            if position not in data[region]:
+                data[region][position] = {}
+
+            data[region][position][idx] = value
+
+
+if __name__ == '__main__':
+    mode_tiles_possible = True
+
+    for idx, (file_path, file_type) in enumerate(files):
+        log.info("Processing %s.%s", file_path, file_type)
+
+        if file_type in globals():
+            func = globals()[file_type]
+            func(idx, file_path)
+
+        if file_type == 'wig':
+            mode_tiles_possible = False
+
+    if MODE == 'tile' and not mode_tiles_possible:
+        raise Exception("You requested a 'tile' plot with wig data, which is impossible")
+
+    # Max number of files
+    max_idx = range(len(files))
+
+    serialized_values = None
+    region_start, region_end = (None, None)
+
+    for genome in data:
+        for position in sorted(data[genome]):
+            values = [
+                '' if x not in data[genome][position] else data[genome][position][x]
+                for x in max_idx
+            ]
+            if serialized_values is None:
+                serialized_values = values
+            if region_start is None:
+                region_start = position
+                region_end = position
+
+            if values == serialized_values:
+                region_end = position
+            else:
+                if MODE == 'histogram':
+                    # histogram
+                    # hs4 0 1999999 5.0000,3.0000,1.0000,19.0000
+                    sys.stdout.write(' '.join(
+                        (genome, str(region_start), str(region_end), ','.join(map(str, values)))
+                    ) + '\n')
+                elif MODE == 'heatmap':
+                    # heatmap
+                    # hs1 2000000 3999999 0.0000 id=hs4
+                    # hs1 4000000 5999999 2.0000 id=hs1
+                    # hs1 4000000 5999999 0.0000 id=hs2
+                    # hs1 4000000 5999999 0.0000 id=hs3
+                    # hs1 4000000 5999999 0.0000 id=hs4
+                    # hs1 6000000 7999999 4.0000 id=hs2
+                    for x in max_idx:
+                        if x in data[genome][position]:
+                            sys.stdout.write(' '.join(
+                                (genome, str(region_start), str(region_end), data[genome][position][x], 'id=hm%s' % x)
+                            ) + '\n')
+                        else:
+                            sys.stdout.write(' '.join(
+                                (genome, str(region_start), str(region_end), 0.0, 'id=hm%s' % x)
+                            ) + '\n')
+                elif MODE == 'line':
+                    # multiple=False
+                    sys.stdout.write(' '.join(
+                        (genome, str(region_start), str(region_end), data[genome][position][0])
+                    ) + '\n')
+                elif MODE == 'scatter':
+                    # multiple=False
+                    sys.stdout.write(' '.join(
+                        (genome, str(region_start), str(region_end), data[genome][position][0])
+                    ) + '\n')
+
+                # Update start of next array
+                region_start = position
+                region_end = position
+                # And update with new array
+                serialized_values = values
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/unified-tiles.py	Wed Aug 09 09:52:52 2017 -0400
@@ -0,0 +1,74 @@
+#!/usr/bin/env python
+import logging
+import sys
+
+from BCBio import GFF
+
+logging.basicConfig(level=logging.INFO)
+log = logging.getLogger()
+
+
+# Pair up (file, extension) pairs from sys.argv
+files = zip(sys.argv[1:][0::2], sys.argv[1:][1::2])
+
+
+# Handlers
+def bed(idx, path):
+    # chrom - The name of the chromosome (e.g. chr3, chrY, chr2_random) or scaffold (e.g. scaffold10671).
+    # chromStart - The starting position of the feature in the chromosome or scaffold. The first base in a chromosome is numbered 0.
+    # chromEnd - The ending position of the feature in the chromosome or scaffold. The chromEnd base is not included in the display of the feature. For example, the first 100 bases of a chromosome are defined as chromStart=0, chromEnd=100, and span the bases numbered 0-99.
+    # name - Defines the name of the BED line. This label is displayed to the left of the BED line in the Genome Browser window when the track is open to full display mode or directly to the left of the item in pack mode.
+    # score - A score between 0 and 1000. If the track line useScore attribute is set to 1 for this annotation data set, the score value will determine the level of gray in which this feature is displayed (higher numbers = darker gray). This table shows the Genome Browser's translation of BED score values into shades of gray:
+    # strand - Defines the strand - either '+' or '-'.
+    # thickStart - The starting position at which the feature is drawn thickly (for example, the start codon in gene displays). When there is no thick part, thickStart and thickEnd are usually set to the chromStart position.
+    # thickEnd - The ending position at which the feature is drawn thickly (for example, the stop codon in gene displays).
+    # itemRgb - An RGB value of the form R,G,B (e.g. 255,0,0). If the track line itemRgb attribute is set to "On", this RBG value will determine the display color of the data contained in this BED line. NOTE: It is recommended that a simple color scheme (eight colors or less) be used with this attribute to avoid overwhelming the color resources of the Genome Browser and your Internet browser.
+
+    with open(path, 'r') as handle:
+        for line in handle:
+            lineData = line.strip().split()
+            chrom = lineData[0]
+            chromStart = lineData[1]
+            chromEnd = lineData[2]
+
+            yield (chrom, chromStart, chromEnd, lineData[4], lineData[6], lineData[5], lineData[9])
+
+
+def gff3(idx, path):
+    for record in GFF.parse(path):
+        if len(record.features) == 0:
+            continue
+
+        for feature in sorted(record.features, key=lambda x: x.location.start):
+            yield (
+                record.id,
+                feature.location.start,
+                feature.location.end,
+                feature.id or feature.qualifiers.get('Name', [None])[0],
+                feature.location.strand,
+                feature.qualifiers.get('score', [0.0])[0],
+                feature.qualifiers.get('color', [None])[0]
+            )
+
+
+if __name__ == '__main__':
+    for idx, (file_path, file_type) in enumerate(files):
+        log.info("Processing %s.%s", file_path, file_type)
+
+        if file_type in globals():
+            func = globals()[file_type]
+            for item in func(idx, file_path):
+                # multiple=False
+                # hs1 10292899 10301003 id=Conrad_993
+                # hs1 10297766 10301003 id=Conrad_994
+                lineExtra = [
+                    'strand=%s' % item[4],
+                    'score=%s' % item[5],
+                    'value=%s' % item[5],
+                ]
+                if item[3] is not None:
+                    lineExtra.append('id=%s' % item[3])
+                if item[6] is not None:
+                    lineExtra.append('color=%s' % item[6])
+
+                sys.stdout.write(' '.join((str(item[0]), str(item[1]), str(item[2]), ','.join(lineExtra))) + '\n')
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/wiggle.py	Wed Aug 09 09:52:52 2017 -0400
@@ -0,0 +1,55 @@
+class Wiggle:
+
+    def fixedStepParser(self, line):
+        value = line.strip()
+        start_position = self.stepIdx * self.parserConfig['step'] + self.parserConfig['start']
+        stop_position = start_position + self.parserConfig['span'] - 1
+        self.stepIdx += 1
+
+        for position in range(start_position, stop_position):
+            yield (self.parserConfig['chrom'], position, value)
+
+    def variableStepParser(self, line):
+        (start, value) = line.strip().split()
+        start = int(start)
+        start_position = start
+        stop_position = start + self.parserConfig['span']
+
+        for position in range(start_position, stop_position):
+            yield (self.parserConfig['chrom'], position, value)
+
+    def walk(self, handle):
+
+        parser = None
+        for line in handle:
+            if line.startswith('track'):
+                continue
+            elif line.startswith('fixedStep'):
+                parser = self.fixedStepParser
+                lineData = line.split()
+                fields = {x.split('=')[0]: x.split('=')[1] for x in lineData[1:]}
+                self.parserConfig = fields
+
+                for numField in ('step', 'start', 'span'):
+                    if numField in self.parserConfig:
+                        self.parserConfig[numField] = int(self.parserConfig[numField])
+                self.stepIdx = 0
+            elif line.startswith('variableStep'):
+                parser = self.variableStepParser
+                lineData = line.split()
+                fields = {x.split('=')[0]: x.split('=')[1] for x in lineData[1:]}
+                # Default value
+                if 'span' not in fields:
+                    fields['span'] = 1
+                self.parserConfig = fields
+
+                for numField in ('span',):
+                    if numField in self.parserConfig:
+                        self.parserConfig[numField] = int(self.parserConfig[numField])
+
+                self.stepIdx = 0
+            elif len(line.strip()) == 0:
+                continue
+            else:
+                for data in parser(line):
+                    yield data