You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ML-For-Beginners/2-Regression/3-Linear/solution/Notebook_Julia_Editing_Line...

2501 lines
501 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Linear Regression using Julia \n",
"\n",
"In this notebook, I presented Julia version of the solutions, Here I have used Linear Regression on Boston dataset, This notebook does not contain polynomial regression part, because It is still in progress. "
]
},
{
"cell_type": "code",
"execution_count": 57,
"metadata": {},
"outputs": [],
"source": [
"# import Pkg\n",
"# Pkg.add(\"Plots\")\n",
"# Pkg.add(\"Lathe\")\n",
"# Pkg.add(\"GLM\")\n",
"# Pkg.add(\"StatsPlots\")\n",
"# Pkg.add(\"MLBase\")\n",
"# Pkg.add(\"Metrics\") \n",
"\n",
"# Uncomment this if you haven't installed the above libraries "
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# packages we will use \n",
"using Plots\n",
"using Lathe\n",
"using GLM\n",
"using Statistics\n",
"using StatsPlots\n",
"using MLBase \n",
"using Metrics \n",
"using DataFrames, CSV\n",
"using Polynomials"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"text/html": [
"<div class=\"data-frame\"><p>5 rows × 14 columns (omitted printing of 5 columns)</p><table class=\"data-frame\"><thead><tr><th></th><th>CRIM</th><th>ZN</th><th>INDUS</th><th>CHAS</th><th>NOX</th><th>RM</th><th>AGE</th><th>DIS</th><th>RAD</th></tr><tr><th></th><th title=\"Float64\">Float64</th><th title=\"Float64\">Float64</th><th title=\"Float64\">Float64</th><th title=\"Float64\">Float64</th><th title=\"Float64\">Float64</th><th title=\"Float64\">Float64</th><th title=\"Float64\">Float64</th><th title=\"Float64\">Float64</th><th title=\"Float64\">Float64</th></tr></thead><tbody><tr><th>1</th><td>0.00632</td><td>18.0</td><td>2.31</td><td>0.0</td><td>0.538</td><td>6.575</td><td>65.2</td><td>4.09</td><td>1.0</td></tr><tr><th>2</th><td>0.02731</td><td>0.0</td><td>7.07</td><td>0.0</td><td>0.469</td><td>6.421</td><td>78.9</td><td>4.9671</td><td>2.0</td></tr><tr><th>3</th><td>0.02729</td><td>0.0</td><td>7.07</td><td>0.0</td><td>0.469</td><td>7.185</td><td>61.1</td><td>4.9671</td><td>2.0</td></tr><tr><th>4</th><td>0.03237</td><td>0.0</td><td>2.18</td><td>0.0</td><td>0.458</td><td>6.998</td><td>45.8</td><td>6.0622</td><td>3.0</td></tr><tr><th>5</th><td>0.06905</td><td>0.0</td><td>2.18</td><td>0.0</td><td>0.458</td><td>7.147</td><td>54.2</td><td>6.0622</td><td>3.0</td></tr></tbody></table></div>"
],
"text/latex": [
"\\begin{tabular}{r|cccccccccc}\n",
"\t& CRIM & ZN & INDUS & CHAS & NOX & RM & AGE & DIS & RAD & \\\\\n",
"\t\\hline\n",
"\t& Float64 & Float64 & Float64 & Float64 & Float64 & Float64 & Float64 & Float64 & Float64 & \\\\\n",
"\t\\hline\n",
"\t1 & 0.00632 & 18.0 & 2.31 & 0.0 & 0.538 & 6.575 & 65.2 & 4.09 & 1.0 & $\\dots$ \\\\\n",
"\t2 & 0.02731 & 0.0 & 7.07 & 0.0 & 0.469 & 6.421 & 78.9 & 4.9671 & 2.0 & $\\dots$ \\\\\n",
"\t3 & 0.02729 & 0.0 & 7.07 & 0.0 & 0.469 & 7.185 & 61.1 & 4.9671 & 2.0 & $\\dots$ \\\\\n",
"\t4 & 0.03237 & 0.0 & 2.18 & 0.0 & 0.458 & 6.998 & 45.8 & 6.0622 & 3.0 & $\\dots$ \\\\\n",
"\t5 & 0.06905 & 0.0 & 2.18 & 0.0 & 0.458 & 7.147 & 54.2 & 6.0622 & 3.0 & $\\dots$ \\\\\n",
"\\end{tabular}\n"
],
"text/plain": [
"\u001b[1m5×14 DataFrame\u001b[0m\n",
"\u001b[1m Row \u001b[0m│\u001b[1m CRIM \u001b[0m\u001b[1m ZN \u001b[0m\u001b[1m INDUS \u001b[0m\u001b[1m CHAS \u001b[0m\u001b[1m NOX \u001b[0m\u001b[1m RM \u001b[0m\u001b[1m AGE \u001b[0m\u001b[1m DIS \u001b[0m\u001b[1m\u001b[0m ⋯\n",
"\u001b[1m \u001b[0m│\u001b[90m Float64 \u001b[0m\u001b[90m Float64 \u001b[0m\u001b[90m Float64 \u001b[0m\u001b[90m Float64 \u001b[0m\u001b[90m Float64 \u001b[0m\u001b[90m Float64 \u001b[0m\u001b[90m Float64 \u001b[0m\u001b[90m Float64 \u001b[0m\u001b[90m\u001b[0m ⋯\n",
"─────┼──────────────────────────────────────────────────────────────────────────\n",
" 1 │ 0.00632 18.0 2.31 0.0 0.538 6.575 65.2 4.09 ⋯\n",
" 2 │ 0.02731 0.0 7.07 0.0 0.469 6.421 78.9 4.9671\n",
" 3 │ 0.02729 0.0 7.07 0.0 0.469 7.185 61.1 4.9671\n",
" 4 │ 0.03237 0.0 2.18 0.0 0.458 6.998 45.8 6.0622\n",
" 5 │ 0.06905 0.0 2.18 0.0 0.458 7.147 54.2 6.0622 ⋯\n",
"\u001b[36m 6 columns omitted\u001b[0m"
]
},
"execution_count": 11,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# loading the data \n",
"\n",
"df = CSV.read(\"data\\\\out.csv\", DataFrame)\n",
"first(df,5)"
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"(506, 14)\n"
]
}
],
"source": [
"# printing the size of the data \n",
"\n",
"println(size(df))"
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div class=\"data-frame\"><p>14 rows × 7 columns</p><table class=\"data-frame\"><thead><tr><th></th><th>variable</th><th>mean</th><th>min</th><th>median</th><th>max</th><th>nmissing</th><th>eltype</th></tr><tr><th></th><th title=\"Symbol\">Symbol</th><th title=\"Float64\">Float64</th><th title=\"Float64\">Float64</th><th title=\"Float64\">Float64</th><th title=\"Float64\">Float64</th><th title=\"Int64\">Int64</th><th title=\"DataType\">DataType</th></tr></thead><tbody><tr><th>1</th><td>CRIM</td><td>3.61352</td><td>0.00632</td><td>0.25651</td><td>88.9762</td><td>0</td><td>Float64</td></tr><tr><th>2</th><td>ZN</td><td>11.3636</td><td>0.0</td><td>0.0</td><td>100.0</td><td>0</td><td>Float64</td></tr><tr><th>3</th><td>INDUS</td><td>11.1368</td><td>0.46</td><td>9.69</td><td>27.74</td><td>0</td><td>Float64</td></tr><tr><th>4</th><td>CHAS</td><td>0.06917</td><td>0.0</td><td>0.0</td><td>1.0</td><td>0</td><td>Float64</td></tr><tr><th>5</th><td>NOX</td><td>0.554695</td><td>0.385</td><td>0.538</td><td>0.871</td><td>0</td><td>Float64</td></tr><tr><th>6</th><td>RM</td><td>6.28463</td><td>3.561</td><td>6.2085</td><td>8.78</td><td>0</td><td>Float64</td></tr><tr><th>7</th><td>AGE</td><td>68.5749</td><td>2.9</td><td>77.5</td><td>100.0</td><td>0</td><td>Float64</td></tr><tr><th>8</th><td>DIS</td><td>3.79504</td><td>1.1296</td><td>3.20745</td><td>12.1265</td><td>0</td><td>Float64</td></tr><tr><th>9</th><td>RAD</td><td>9.54941</td><td>1.0</td><td>5.0</td><td>24.0</td><td>0</td><td>Float64</td></tr><tr><th>10</th><td>TAX</td><td>408.237</td><td>187.0</td><td>330.0</td><td>711.0</td><td>0</td><td>Float64</td></tr><tr><th>11</th><td>PTRATIO</td><td>18.4555</td><td>12.6</td><td>19.05</td><td>22.0</td><td>0</td><td>Float64</td></tr><tr><th>12</th><td>B</td><td>356.674</td><td>0.32</td><td>391.44</td><td>396.9</td><td>0</td><td>Float64</td></tr><tr><th>13</th><td>LSTAT</td><td>12.6531</td><td>1.73</td><td>11.36</td><td>37.97</td><td>0</td><td>Float64</td></tr><tr><th>14</th><td>SalePrice</td><td>22.5328</td><td>5.0</td><td>21.2</td><td>50.0</td><td>0</td><td>Float64</td></tr></tbody></table></div>"
],
"text/latex": [
"\\begin{tabular}{r|ccccccc}\n",
"\t& variable & mean & min & median & max & nmissing & eltype\\\\\n",
"\t\\hline\n",
"\t& Symbol & Float64 & Float64 & Float64 & Float64 & Int64 & DataType\\\\\n",
"\t\\hline\n",
"\t1 & CRIM & 3.61352 & 0.00632 & 0.25651 & 88.9762 & 0 & Float64 \\\\\n",
"\t2 & ZN & 11.3636 & 0.0 & 0.0 & 100.0 & 0 & Float64 \\\\\n",
"\t3 & INDUS & 11.1368 & 0.46 & 9.69 & 27.74 & 0 & Float64 \\\\\n",
"\t4 & CHAS & 0.06917 & 0.0 & 0.0 & 1.0 & 0 & Float64 \\\\\n",
"\t5 & NOX & 0.554695 & 0.385 & 0.538 & 0.871 & 0 & Float64 \\\\\n",
"\t6 & RM & 6.28463 & 3.561 & 6.2085 & 8.78 & 0 & Float64 \\\\\n",
"\t7 & AGE & 68.5749 & 2.9 & 77.5 & 100.0 & 0 & Float64 \\\\\n",
"\t8 & DIS & 3.79504 & 1.1296 & 3.20745 & 12.1265 & 0 & Float64 \\\\\n",
"\t9 & RAD & 9.54941 & 1.0 & 5.0 & 24.0 & 0 & Float64 \\\\\n",
"\t10 & TAX & 408.237 & 187.0 & 330.0 & 711.0 & 0 & Float64 \\\\\n",
"\t11 & PTRATIO & 18.4555 & 12.6 & 19.05 & 22.0 & 0 & Float64 \\\\\n",
"\t12 & B & 356.674 & 0.32 & 391.44 & 396.9 & 0 & Float64 \\\\\n",
"\t13 & LSTAT & 12.6531 & 1.73 & 11.36 & 37.97 & 0 & Float64 \\\\\n",
"\t14 & SalePrice & 22.5328 & 5.0 & 21.2 & 50.0 & 0 & Float64 \\\\\n",
"\\end{tabular}\n"
],
"text/plain": [
"\u001b[1m14×7 DataFrame\u001b[0m\n",
"\u001b[1m Row \u001b[0m│\u001b[1m variable \u001b[0m\u001b[1m mean \u001b[0m\u001b[1m min \u001b[0m\u001b[1m median \u001b[0m\u001b[1m max \u001b[0m\u001b[1m nmissing \u001b[0m\u001b[1m eltype\u001b[0m ⋯\n",
"\u001b[1m \u001b[0m│\u001b[90m Symbol \u001b[0m\u001b[90m Float64 \u001b[0m\u001b[90m Float64 \u001b[0m\u001b[90m Float64 \u001b[0m\u001b[90m Float64 \u001b[0m\u001b[90m Int64 \u001b[0m\u001b[90m DataTy\u001b[0m ⋯\n",
"─────┼──────────────────────────────────────────────────────────────────────────\n",
" 1 │ CRIM 3.61352 0.00632 0.25651 88.9762 0 Float6 ⋯\n",
" 2 │ ZN 11.3636 0.0 0.0 100.0 0 Float6\n",
" 3 │ INDUS 11.1368 0.46 9.69 27.74 0 Float6\n",
" 4 │ CHAS 0.06917 0.0 0.0 1.0 0 Float6\n",
" 5 │ NOX 0.554695 0.385 0.538 0.871 0 Float6 ⋯\n",
" 6 │ RM 6.28463 3.561 6.2085 8.78 0 Float6\n",
" 7 │ AGE 68.5749 2.9 77.5 100.0 0 Float6\n",
" 8 │ DIS 3.79504 1.1296 3.20745 12.1265 0 Float6\n",
" 9 │ RAD 9.54941 1.0 5.0 24.0 0 Float6 ⋯\n",
" 10 │ TAX 408.237 187.0 330.0 711.0 0 Float6\n",
" 11 │ PTRATIO 18.4555 12.6 19.05 22.0 0 Float6\n",
" 12 │ B 356.674 0.32 391.44 396.9 0 Float6\n",
" 13 │ LSTAT 12.6531 1.73 11.36 37.97 0 Float6 ⋯\n",
" 14 │ SalePrice 22.5328 5.0 21.2 50.0 0 Float6\n",
"\u001b[36m 1 column omitted\u001b[0m"
]
},
"execution_count": 14,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# describing the data \n",
"\n",
"describe(df)"
]
},
{
"cell_type": "code",
"execution_count": 15,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"14-element Vector{String}:\n",
" \"CRIM\"\n",
" \"ZN\"\n",
" \"INDUS\"\n",
" \"CHAS\"\n",
" \"NOX\"\n",
" \"RM\"\n",
" \"AGE\"\n",
" \"DIS\"\n",
" \"RAD\"\n",
" \"TAX\"\n",
" \"PTRATIO\"\n",
" \"B\"\n",
" \"LSTAT\"\n",
" \"SalePrice\""
]
},
"execution_count": 15,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# printing the names of the dataframe \n",
"\n",
"names(df)"
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip790\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip790)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip791\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip790)\" d=\"\n",
"M205.121 1486.45 L2352.76 1486.45 L2352.76 123.472 L205.121 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip792\">\n",
" <rect x=\"205\" y=\"123\" width=\"2149\" height=\"1364\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip792)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 265.903,1486.45 265.903,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip792)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 772.421,1486.45 772.421,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip792)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1278.94,1486.45 1278.94,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip792)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1785.46,1486.45 1785.46,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip792)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2291.97,1486.45 2291.97,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 265.903,1486.45 265.903,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 772.421,1486.45 772.421,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1278.94,1486.45 1278.94,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1785.46,1486.45 1785.46,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2291.97,1486.45 2291.97,1467.55 \n",
" \"/>\n",
"<path clip-path=\"url(#clip790)\" d=\"M243.206 1515.64 Q239.595 1515.64 237.767 1519.2 Q235.961 1522.75 235.961 1529.87 Q235.961 1536.98 237.767 1540.55 Q239.595 1544.09 243.206 1544.09 Q246.841 1544.09 248.646 1540.55 Q250.475 1536.98 250.475 1529.87 Q250.475 1522.75 248.646 1519.2 Q246.841 1515.64 243.206 1515.64 M243.206 1511.93 Q249.017 1511.93 252.072 1516.54 Q255.151 1521.12 255.151 1529.87 Q255.151 1538.6 252.072 1543.21 Q249.017 1547.79 243.206 1547.79 Q237.396 1547.79 234.318 1543.21 Q231.262 1538.6 231.262 1529.87 Q231.262 1521.12 234.318 1516.54 Q237.396 1511.93 243.206 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M263.368 1541.24 L268.253 1541.24 L268.253 1547.12 L263.368 1547.12 L263.368 1541.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M289.016 1527.98 Q285.868 1527.98 284.016 1530.13 Q282.188 1532.28 282.188 1536.03 Q282.188 1539.76 284.016 1541.93 Q285.868 1544.09 289.016 1544.09 Q292.165 1544.09 293.993 1541.93 Q295.845 1539.76 295.845 1536.03 Q295.845 1532.28 293.993 1530.13 Q292.165 1527.98 289.016 1527.98 M298.299 1513.32 L298.299 1517.58 Q296.54 1516.75 294.734 1516.31 Q292.952 1515.87 291.192 1515.87 Q286.563 1515.87 284.109 1519 Q281.678 1522.12 281.331 1528.44 Q282.697 1526.43 284.757 1525.36 Q286.817 1524.27 289.294 1524.27 Q294.502 1524.27 297.512 1527.44 Q300.544 1530.59 300.544 1536.03 Q300.544 1541.36 297.396 1544.57 Q294.248 1547.79 289.016 1547.79 Q283.021 1547.79 279.85 1543.21 Q276.679 1538.6 276.679 1529.87 Q276.679 1521.68 280.567 1516.82 Q284.456 1511.93 291.007 1511.93 Q292.766 1511.93 294.549 1512.28 Q296.354 1512.63 298.299 1513.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M749.851 1515.64 Q746.24 1515.64 744.412 1519.2 Q742.606 1522.75 742.606 1529.87 Q742.606 1536.98 744.412 1540.55 Q746.24 1544.09 749.851 1544.09 Q753.486 1544.09 755.291 1540.55 Q757.12 1536.98 757.12 1529.87 Q757.12 1522.75 755.291 1519.2 Q753.486 1515.64 749.851 1515.64 M749.851 1511.93 Q755.662 1511.93 758.717 1516.54 Q761.796 1521.12 761.796 1529.87 Q761.796 1538.6 758.717 1543.21 Q755.662 1547.79 749.851 1547.79 Q744.041 1547.79 740.963 1543.21 Q737.907 1538.6 737.907 1529.87 Q737.907 1521.12 740.963 1516.54 Q744.041 1511.93 749.851 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M770.013 1541.24 L774.898 1541.24 L774.898 1547.12 L770.013 1547.12 L770.013 1541.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M795.083 1530.71 Q791.749 1530.71 789.828 1532.49 Q787.93 1534.27 787.93 1537.4 Q787.93 1540.52 789.828 1542.31 Q791.749 1544.09 795.083 1544.09 Q798.416 1544.09 800.337 1542.31 Q802.259 1540.5 802.259 1537.4 Q802.259 1534.27 800.337 1532.49 Q798.439 1530.71 795.083 1530.71 M790.407 1528.72 Q787.398 1527.98 785.708 1525.92 Q784.041 1523.86 784.041 1520.89 Q784.041 1516.75 786.981 1514.34 Q789.944 1511.93 795.083 1511.93 Q800.245 1511.93 803.184 1514.34 Q806.124 1516.75 806.124 1520.89 Q806.124 1523.86 804.434 1525.92 Q802.768 1527.98 799.782 1528.72 Q803.161 1529.5 805.036 1531.8 Q806.934 1534.09 806.934 1537.4 Q806.934 1542.42 803.856 1545.11 Q800.8 1547.79 795.083 1547.79 Q789.365 1547.79 786.286 1545.11 Q783.231 1542.42 783.231 1537.4 Q783.231 1534.09 785.129 1531.8 Q787.027 1529.5 790.407 1528.72 M788.694 1521.33 Q788.694 1524.02 790.36 1525.52 Q792.05 1527.03 795.083 1527.03 Q798.092 1527.03 799.782 1525.52 Q801.495 1524.02 801.495 1521.33 Q801.495 1518.65 799.782 1517.14 Q798.092 1515.64 795.083 1515.64 Q792.05 1515.64 790.36 1517.14 Q788.694 1518.65 788.694 1521.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M1246.09 1543.18 L1253.73 1543.18 L1253.73 1516.82 L1245.42 1518.49 L1245.42 1514.23 L1253.68 1512.56 L1258.36 1512.56 L1258.36 1543.18 L1266 1543.18 L1266 1547.12 L1246.09 1547.12 L1246.09 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M1275.44 1541.24 L1280.33 1541.24 L1280.33 1547.12 L1275.44 1547.12 L1275.44 1541.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M1300.51 1515.64 Q1296.9 1515.64 1295.07 1519.2 Q1293.27 1522.75 1293.27 1529.87 Q1293.27 1536.98 1295.07 1540.55 Q1296.9 1544.09 1300.51 1544.09 Q1304.15 1544.09 1305.95 1540.55 Q1307.78 1536.98 1307.78 1529.87 Q1307.78 1522.75 1305.95 1519.2 Q1304.15 1515.64 1300.51 1515.64 M1300.51 1511.93 Q1306.32 1511.93 1309.38 1516.54 Q1312.46 1521.12 1312.46 1529.87 Q1312.46 1538.6 1309.38 1543.21 Q1306.32 1547.79 1300.51 1547.79 Q1294.7 1547.79 1291.62 1543.21 Q1288.57 1538.6 1288.57 1529.87 Q1288.57 1521.12 1291.62 1516.54 Q1294.7 1511.93 1300.51 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M1753.41 1543.18 L1761.05 1543.18 L1761.05 1516.82 L1752.74 1518.49 L1752.74 1514.23 L1761 1512.56 L1765.68 1512.56 L1765.68 1543.18 L1773.31 1543.18 L1773.31 1547.12 L1753.41 1547.12 L1753.41 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M1782.76 1541.24 L1787.64 1541.24 L1787.64 1547.12 L1782.76 1547.12 L1782.76 1541.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M1801.86 1543.18 L1818.18 1543.18 L1818.18 1547.12 L1796.23 1547.12 L1796.23 1543.18 Q1798.89 1540.43 1803.48 1535.8 Q1808.08 1531.15 1809.26 1529.81 Q1811.51 1527.28 1812.39 1525.55 Q1813.29 1523.79 1813.29 1522.1 Q1813.29 1519.34 1811.35 1517.61 Q1809.43 1515.87 1806.32 1515.87 Q1804.12 1515.87 1801.67 1516.63 Q1799.24 1517.4 1796.46 1518.95 L1796.46 1514.23 Q1799.29 1513.09 1801.74 1512.51 Q1804.19 1511.93 1806.23 1511.93 Q1811.6 1511.93 1814.8 1514.62 Q1817.99 1517.31 1817.99 1521.8 Q1817.99 1523.93 1817.18 1525.85 Q1816.39 1527.74 1814.29 1530.34 Q1813.71 1531.01 1810.61 1534.23 Q1807.5 1537.42 1801.86 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M2258.88 1543.18 L2266.52 1543.18 L2266.52 1516.82 L2258.21 1518.49 L2258.21 1514.23 L2266.48 1512.56 L2271.15 1512.56 L2271.15 1543.18 L2278.79 1543.18 L2278.79 1547.12 L2258.88 1547.12 L2258.88 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M2288.24 1541.24 L2293.12 1541.24 L2293.12 1547.12 L2288.24 1547.12 L2288.24 1541.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M2316.15 1516.63 L2304.35 1535.08 L2316.15 1535.08 L2316.15 1516.63 M2314.93 1512.56 L2320.8 1512.56 L2320.8 1535.08 L2325.74 1535.08 L2325.74 1538.97 L2320.8 1538.97 L2320.8 1547.12 L2316.15 1547.12 L2316.15 1538.97 L2300.55 1538.97 L2300.55 1534.46 L2314.93 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip792)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 205.121,1305 2352.76,1305 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip792)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 205.121,1019.26 2352.76,1019.26 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip792)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 205.121,733.525 2352.76,733.525 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip792)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 205.121,447.786 2352.76,447.786 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip792)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 205.121,162.047 2352.76,162.047 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,1486.45 205.121,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,1305 224.019,1305 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,1019.26 224.019,1019.26 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,733.525 224.019,733.525 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,447.786 224.019,447.786 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip790)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,162.047 224.019,162.047 \n",
" \"/>\n",
"<path clip-path=\"url(#clip790)\" d=\"M117.825 1318.35 L125.464 1318.35 L125.464 1291.98 L117.154 1293.65 L117.154 1289.39 L125.418 1287.72 L130.093 1287.72 L130.093 1318.35 L137.732 1318.35 L137.732 1322.28 L117.825 1322.28 L117.825 1318.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M157.177 1290.8 Q153.566 1290.8 151.737 1294.37 Q149.931 1297.91 149.931 1305.04 Q149.931 1312.14 151.737 1315.71 Q153.566 1319.25 157.177 1319.25 Q160.811 1319.25 162.616 1315.71 Q164.445 1312.14 164.445 1305.04 Q164.445 1297.91 162.616 1294.37 Q160.811 1290.8 157.177 1290.8 M157.177 1287.1 Q162.987 1287.1 166.042 1291.7 Q169.121 1296.29 169.121 1305.04 Q169.121 1313.77 166.042 1318.37 Q162.987 1322.95 157.177 1322.95 Q151.366 1322.95 148.288 1318.37 Q145.232 1313.77 145.232 1305.04 Q145.232 1296.29 148.288 1291.7 Q151.366 1287.1 157.177 1287.1 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M121.043 1032.61 L137.362 1032.61 L137.362 1036.54 L115.418 1036.54 L115.418 1032.61 Q118.08 1029.85 122.663 1025.22 Q127.269 1020.57 128.45 1019.23 Q130.695 1016.71 131.575 1014.97 Q132.478 1013.21 132.478 1011.52 Q132.478 1008.77 130.533 1007.03 Q128.612 1005.29 125.51 1005.29 Q123.311 1005.29 120.857 1006.06 Q118.427 1006.82 115.649 1008.37 L115.649 1003.65 Q118.473 1002.52 120.927 1001.94 Q123.38 1001.36 125.418 1001.36 Q130.788 1001.36 133.982 1004.04 Q137.177 1006.73 137.177 1011.22 Q137.177 1013.35 136.367 1015.27 Q135.579 1017.17 133.473 1019.76 Q132.894 1020.43 129.792 1023.65 Q126.691 1026.85 121.043 1032.61 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M157.177 1005.06 Q153.566 1005.06 151.737 1008.63 Q149.931 1012.17 149.931 1019.3 Q149.931 1026.41 151.737 1029.97 Q153.566 1033.51 157.177 1033.51 Q160.811 1033.51 162.616 1029.97 Q164.445 1026.41 164.445 1019.3 Q164.445 1012.17 162.616 1008.63 Q160.811 1005.06 157.177 1005.06 M157.177 1001.36 Q162.987 1001.36 166.042 1005.97 Q169.121 1010.55 169.121 1019.3 Q169.121 1028.03 166.042 1032.63 Q162.987 1037.22 157.177 1037.22 Q151.366 1037.22 148.288 1032.63 Q145.232 1028.03 145.232 1019.3 Q145.232 1010.55 148.288 1005.97 Q151.366 1001.36 157.177 1001.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M131.181 732.171 Q134.538 732.889 136.413 735.157 Q138.311 737.426 138.311 740.759 Q138.311 745.875 134.792 748.676 Q131.274 751.477 124.793 751.477 Q122.617 751.477 120.302 751.037 Q118.01 750.62 115.556 749.764 L115.556 745.25 Q117.501 746.384 119.816 746.963 Q122.13 747.541 124.654 747.541 Q129.052 747.541 131.343 745.805 Q133.658 744.069 133.658 740.759 Q133.658 737.703 131.505 735.99 Q129.376 734.254 125.556 734.254 L121.529 734.254 L121.529 730.412 L125.742 730.412 Q129.191 730.412 131.019 729.046 Q132.848 727.657 132.848 725.065 Q132.848 722.403 130.95 720.991 Q129.075 719.555 125.556 719.555 Q123.635 719.555 121.436 719.972 Q119.237 720.389 116.598 721.268 L116.598 717.102 Q119.26 716.361 121.575 715.991 Q123.913 715.62 125.973 715.62 Q131.297 715.62 134.399 718.051 Q137.501 720.458 137.501 724.579 Q137.501 727.449 135.857 729.44 Q134.214 731.407 131.181 732.171 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M157.177 719.324 Q153.566 719.324 151.737 722.889 Q149.931 726.43 149.931 733.56 Q149.931 740.666 151.737 744.231 Q153.566 747.773 157.177 747.773 Q160.811 747.773 162.616 744.231 Q164.445 740.666 164.445 733.56 Q164.445 726.43 162.616 722.889 Q160.811 719.324 157.177 719.324 M157.177 715.62 Q162.987 715.62 166.042 720.227 Q169.121 724.81 169.121 733.56 Q169.121 742.287 166.042 746.893 Q162.987 751.477 157.177 751.477 Q151.366 751.477 148.288 746.893 Q145.232 742.287 145.232 733.56 Q145.232 724.81 148.288 720.227 Q151.366 715.62 157.177 715.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M129.862 434.58 L118.056 453.029 L129.862 453.029 L129.862 434.58 M128.635 430.506 L134.515 430.506 L134.515 453.029 L139.445 453.029 L139.445 456.918 L134.515 456.918 L134.515 465.066 L129.862 465.066 L129.862 456.918 L114.26 456.918 L114.26 452.404 L128.635 430.506 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M157.177 433.585 Q153.566 433.585 151.737 437.15 Q149.931 440.691 149.931 447.821 Q149.931 454.927 151.737 458.492 Q153.566 462.034 157.177 462.034 Q160.811 462.034 162.616 458.492 Q164.445 454.927 164.445 447.821 Q164.445 440.691 162.616 437.15 Q160.811 433.585 157.177 433.585 M157.177 429.881 Q162.987 429.881 166.042 434.488 Q169.121 439.071 169.121 447.821 Q169.121 456.548 166.042 461.154 Q162.987 465.737 157.177 465.737 Q151.366 465.737 148.288 461.154 Q145.232 456.548 145.232 447.821 Q145.232 439.071 148.288 434.488 Q151.366 429.881 157.177 429.881 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M117.061 144.767 L135.417 144.767 L135.417 148.702 L121.343 148.702 L121.343 157.174 Q122.362 156.827 123.38 156.665 Q124.399 156.48 125.418 156.48 Q131.205 156.48 134.584 159.651 Q137.964 162.822 137.964 168.239 Q137.964 173.818 134.492 176.92 Q131.019 179.998 124.7 179.998 Q122.524 179.998 120.255 179.628 Q118.01 179.257 115.603 178.517 L115.603 173.818 Q117.686 174.952 119.908 175.507 Q122.13 176.063 124.607 176.063 Q128.612 176.063 130.95 173.957 Q133.288 171.85 133.288 168.239 Q133.288 164.628 130.95 162.521 Q128.612 160.415 124.607 160.415 Q122.732 160.415 120.857 160.832 Q119.006 161.248 117.061 162.128 L117.061 144.767 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M157.177 147.846 Q153.566 147.846 151.737 151.41 Q149.931 154.952 149.931 162.082 Q149.931 169.188 151.737 172.753 Q153.566 176.295 157.177 176.295 Q160.811 176.295 162.616 172.753 Q164.445 169.188 164.445 162.082 Q164.445 154.952 162.616 151.41 Q160.811 147.846 157.177 147.846 M157.177 144.142 Q162.987 144.142 166.042 148.748 Q169.121 153.332 169.121 162.082 Q169.121 170.808 166.042 175.415 Q162.987 179.998 157.177 179.998 Q151.366 179.998 148.288 175.415 Q145.232 170.808 145.232 162.082 Q145.232 153.332 148.288 148.748 Q151.366 144.142 157.177 144.142 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M20.1444 844.762 L26.9239 844.762 Q23.9002 848.008 22.4043 851.7 Q20.9083 855.36 20.9083 859.498 Q20.9083 867.646 25.9054 871.975 Q30.8707 876.304 40.2919 876.304 Q49.6813 876.304 54.6784 871.975 Q59.6436 867.646 59.6436 859.498 Q59.6436 855.36 58.1477 851.7 Q56.6518 848.008 53.6281 844.762 L60.3439 844.762 Q62.6355 848.135 63.7814 851.923 Q64.9272 855.679 64.9272 859.88 Q64.9272 870.67 58.3387 876.877 Q51.7183 883.083 40.2919 883.083 Q28.8336 883.083 22.2451 876.877 Q15.6248 870.67 15.6248 859.88 Q15.6248 855.615 16.7706 851.859 Q17.8846 848.072 20.1444 844.762 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M41.7242 812.296 Q42.4244 810.228 44.7161 808.286 Q47.0077 806.313 51.0181 804.339 L64.0042 797.814 L64.0042 804.721 L51.8138 810.801 Q47.0395 813.156 45.48 815.384 Q43.9204 817.58 43.9204 821.399 L43.9204 828.402 L64.0042 828.402 L64.0042 834.831 L16.4842 834.831 L16.4842 820.317 Q16.4842 812.169 19.8898 808.159 Q23.2955 804.148 30.1704 804.148 Q34.6582 804.148 37.6183 806.249 Q40.5784 808.318 41.7242 812.296 M21.7677 828.402 L38.6368 828.402 L38.6368 820.317 Q38.6368 815.67 36.5043 813.315 Q34.34 810.928 30.1704 810.928 Q26.0009 810.928 23.9002 813.315 Q21.7677 815.67 21.7677 820.317 L21.7677 828.402 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M16.4842 789.539 L16.4842 783.11 L64.0042 783.11 L64.0042 789.539 L16.4842 789.539 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M16.4842 770.315 L16.4842 760.734 L48.8219 748.608 L16.4842 736.417 L16.4842 726.837 L64.0042 726.837 L64.0042 733.107 L22.277 733.107 L54.8694 745.361 L54.8694 751.822 L22.277 764.076 L64.0042 764.076 L64.0042 770.315 L16.4842 770.315 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M893.596 43.6931 L893.596 65.8515 L906.721 65.8515 Q913.324 65.8515 916.484 63.1374 Q919.684 60.3828 919.684 54.752 Q919.684 49.0808 916.484 46.4072 Q913.324 43.6931 906.721 43.6931 L893.596 43.6931 M893.596 18.8205 L893.596 37.0496 L905.708 37.0496 Q911.704 37.0496 914.62 34.8216 Q917.578 32.5531 917.578 27.935 Q917.578 23.3575 914.62 21.089 Q911.704 18.8205 905.708 18.8205 L893.596 18.8205 M885.413 12.096 L906.316 12.096 Q915.674 12.096 920.737 15.9849 Q925.801 19.8737 925.801 27.0438 Q925.801 32.5936 923.208 35.8748 Q920.616 39.156 915.593 39.9662 Q921.628 41.2625 924.95 45.3944 Q928.312 49.4858 928.312 55.6432 Q928.312 63.745 922.803 68.1605 Q917.294 72.576 907.126 72.576 L885.413 72.576 L885.413 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M959.585 32.4315 Q953.59 32.4315 950.106 37.1306 Q946.623 41.7891 946.623 49.9314 Q946.623 58.0738 950.066 62.7728 Q953.55 67.4314 959.585 67.4314 Q965.54 67.4314 969.024 62.7323 Q972.508 58.0333 972.508 49.9314 Q972.508 41.8701 969.024 37.1711 Q965.54 32.4315 959.585 32.4315 M959.585 26.1121 Q969.308 26.1121 974.857 32.4315 Q980.407 38.7509 980.407 49.9314 Q980.407 61.0714 974.857 67.4314 Q969.308 73.7508 959.585 73.7508 Q949.823 73.7508 944.273 67.4314 Q938.764 61.0714 938.764 49.9314 Q938.764 38.7509 944.273 32.4315 Q949.823 26.1121 959.585 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M1027.92 27.2059 L1011.52 49.2833 L1028.77 72.576 L1019.98 72.576 L1006.78 54.752 L993.572 72.576 L984.782 72.576 L1002.4 48.8377 L986.281 27.2059 L995.071 27.2059 L1007.1 43.369 L1019.13 27.2059 L1027.92 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M1074.19 18.8205 L1074.19 41.5461 L1084.47 41.5461 Q1090.19 41.5461 1093.31 38.5889 Q1096.42 35.6318 1096.42 30.163 Q1096.42 24.7348 1093.31 21.7777 Q1090.19 18.8205 1084.47 18.8205 L1074.19 18.8205 M1066 12.096 L1084.47 12.096 Q1094.64 12.096 1099.83 16.714 Q1105.05 21.2916 1105.05 30.163 Q1105.05 39.1155 1099.83 43.6931 Q1094.64 48.2706 1084.47 48.2706 L1074.19 48.2706 L1074.19 72.576 L1066 72.576 L1066 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M1115.71 9.54393 L1123.16 9.54393 L1123.16 72.576 L1115.71 72.576 L1115.71 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M1156.34 32.4315 Q1150.34 32.4315 1146.86 37.1306 Q1143.37 41.7891 1143.37 49.9314 Q1143.37 58.0738 1146.82 62.7728 Q1150.3 67.4314 1156.34 67.4314 Q1162.29 67.4314 1165.78 62.7323 Q1169.26 58.0333 1169.26 49.9314 Q1169.26 41.8701 1165.78 37.1711 Q1162.29 32.4315 1156.34 32.4315 M1156.34 26.1121 Q1166.06 26.1121 1171.61 32.4315 Q1177.16 38.7509 1177.16 49.9314 Q1177.16 61.0714 1171.61 67.4314 Q1166.06 73.7508 1156.34 73.7508 Q1146.58 73.7508 1141.03 67.4314 Q1135.52 61.0714 1135.52 49.9314 Q1135.52 38.7509 1141.03 32.4315 Q1146.58 26.1121 1156.34 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M1196.89 14.324 L1196.89 27.2059 L1212.24 27.2059 L1212.24 32.9987 L1196.89 32.9987 L1196.89 57.6282 Q1196.89 63.1779 1198.39 64.7578 Q1199.93 66.3376 1204.58 66.3376 L1212.24 66.3376 L1212.24 72.576 L1204.58 72.576 Q1195.96 72.576 1192.67 69.3758 Q1189.39 66.1351 1189.39 57.6282 L1189.39 32.9987 L1183.92 32.9987 L1183.92 27.2059 L1189.39 27.2059 L1189.39 14.324 L1196.89 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M1244.65 46.5287 L1266.48 46.5287 L1266.48 53.1722 L1244.65 53.1722 L1244.65 46.5287 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M1341.3 14.0809 L1341.3 22.0612 Q1336.64 19.8332 1332.51 18.7395 Q1328.38 17.6457 1324.53 17.6457 Q1317.85 17.6457 1314.2 20.2383 Q1310.6 22.8309 1310.6 27.611 Q1310.6 31.6214 1312.99 33.6873 Q1315.42 35.7128 1322.14 36.9686 L1327.08 37.9813 Q1336.24 39.7232 1340.57 44.1387 Q1344.95 48.5136 1344.95 55.8863 Q1344.95 64.6767 1339.03 69.2137 Q1333.16 73.7508 1321.78 73.7508 Q1317.48 73.7508 1312.62 72.7785 Q1307.8 71.8063 1302.62 69.9024 L1302.62 61.4765 Q1307.6 64.2716 1312.38 65.6895 Q1317.16 67.1073 1321.78 67.1073 Q1328.78 67.1073 1332.59 64.3527 Q1336.4 61.598 1336.4 56.4939 Q1336.4 52.0379 1333.65 49.5264 Q1330.93 47.0148 1324.69 45.759 L1319.71 44.7868 Q1310.56 42.9639 1306.46 39.075 Q1302.37 35.1862 1302.37 28.2591 Q1302.37 20.2383 1308 15.6203 Q1313.67 11.0023 1323.6 11.0023 Q1327.85 11.0023 1332.27 11.7719 Q1336.68 12.5416 1341.3 14.0809 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M1378 49.7694 Q1368.97 49.7694 1365.49 51.8354 Q1362 53.9013 1362 58.8839 Q1362 62.8538 1364.59 65.2034 Q1367.23 67.5124 1371.72 67.5124 Q1377.92 67.5124 1381.65 63.1374 Q1385.42 58.7219 1385.42 51.4303 L1385.42 49.7694 L1378 49.7694 M1392.87 46.6907 L1392.87 72.576 L1385.42 72.576 L1385.42 65.6895 Q1382.86 69.8214 1379.06 71.8063 Q1375.25 73.7508 1369.74 73.7508 Q1362.77 73.7508 1358.64 69.8619 Q1354.55 65.9325 1354.55 59.3701 Q1354.55 51.7138 1359.65 47.825 Q1364.8 43.9361 1374.97 43.9361 L1385.42 43.9361 L1385.42 43.2069 Q1385.42 38.0623 1382.01 35.2672 Q1378.65 32.4315 1372.53 32.4315 Q1368.65 32.4315 1364.96 33.3632 Q1361.27 34.295 1357.87 36.1584 L1357.87 29.2718 Q1361.96 27.692 1365.81 26.9223 Q1369.66 26.1121 1373.3 26.1121 Q1383.15 26.1121 1388.01 31.2163 Q1392.87 36.3204 1392.87 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M1408.22 9.54393 L1415.68 9.54393 L1415.68 72.576 L1408.22 72.576 L1408.22 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M1470.08 48.0275 L1470.08 51.6733 L1435.81 51.6733 Q1436.3 59.3701 1440.43 63.421 Q1444.6 67.4314 1452.01 67.4314 Q1456.31 67.4314 1460.32 66.3781 Q1464.37 65.3249 1468.34 63.2184 L1468.34 70.267 Q1464.33 71.9684 1460.12 72.8596 Q1455.9 73.7508 1451.57 73.7508 Q1440.71 73.7508 1434.35 67.4314 Q1428.03 61.1119 1428.03 50.3365 Q1428.03 39.1965 1434.03 32.6746 Q1440.06 26.1121 1450.27 26.1121 Q1459.43 26.1121 1464.73 32.0264 Q1470.08 37.9003 1470.08 48.0275 M1462.63 45.84 Q1462.55 39.7232 1459.18 36.0774 Q1455.86 32.4315 1450.35 32.4315 Q1444.11 32.4315 1440.35 35.9558 Q1436.62 39.4801 1436.05 45.8805 L1462.63 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M1490.82 18.8205 L1490.82 41.5461 L1501.11 41.5461 Q1506.82 41.5461 1509.94 38.5889 Q1513.06 35.6318 1513.06 30.163 Q1513.06 24.7348 1509.94 21.7777 Q1506.82 18.8205 1501.11 18.8205 L1490.82 18.8205 M1482.64 12.096 L1501.11 12.096 Q1511.28 12.096 1516.46 16.714 Q1521.69 21.2916 1521.69 30.163 Q1521.69 39.1155 1516.46 43.6931 Q1511.28 48.2706 1501.11 48.2706 L1490.82 48.2706 L1490.82 72.576 L1482.64 72.576 L1482.64 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M1557.17 34.1734 Q1555.92 33.4443 1554.42 33.1202 Q1552.96 32.7556 1551.18 32.7556 Q1544.86 32.7556 1541.46 36.8875 Q1538.1 40.9789 1538.1 48.6757 L1538.1 72.576 L1530.6 72.576 L1530.6 27.2059 L1538.1 27.2059 L1538.1 34.2544 Q1540.44 30.1225 1544.21 28.1376 Q1547.98 26.1121 1553.37 26.1121 Q1554.14 26.1121 1555.07 26.2337 Q1556 26.3147 1557.13 26.5172 L1557.17 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M1564.99 27.2059 L1572.45 27.2059 L1572.45 72.576 L1564.99 72.576 L1564.99 27.2059 M1564.99 9.54393 L1572.45 9.54393 L1572.45 18.9825 L1564.99 18.9825 L1564.99 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M1620.69 28.9478 L1620.69 35.9153 Q1617.53 34.1734 1614.33 33.3227 Q1611.17 32.4315 1607.93 32.4315 Q1600.68 32.4315 1596.67 37.0496 Q1592.66 41.6271 1592.66 49.9314 Q1592.66 58.2358 1596.67 62.8538 Q1600.68 67.4314 1607.93 67.4314 Q1611.17 67.4314 1614.33 66.5807 Q1617.53 65.6895 1620.69 63.9476 L1620.69 70.8341 Q1617.57 72.2924 1614.21 73.0216 Q1610.89 73.7508 1607.12 73.7508 Q1596.87 73.7508 1590.84 67.3098 Q1584.8 60.8689 1584.8 49.9314 Q1584.8 38.832 1590.88 32.472 Q1597 26.1121 1607.61 26.1121 Q1611.05 26.1121 1614.33 26.8413 Q1617.61 27.5299 1620.69 28.9478 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip790)\" d=\"M1672.46 48.0275 L1672.46 51.6733 L1638.19 51.6733 Q1638.68 59.3701 1642.81 63.421 Q1646.98 67.4314 1654.4 67.4314 Q1658.69 67.4314 1662.7 66.3781 Q1666.75 65.3249 1670.72 63.2184 L1670.72 70.267 Q1666.71 71.9684 1662.5 72.8596 Q1658.29 73.7508 1653.95 73.7508 Q1643.09 73.7508 1636.73 67.4314 Q1630.42 61.1119 1630.42 50.3365 Q1630.42 39.1965 1636.41 32.6746 Q1642.45 26.1121 1652.65 26.1121 Q1661.81 26.1121 1667.12 32.0264 Q1672.46 37.9003 1672.46 48.0275 M1665.01 45.84 Q1664.93 39.7232 1661.57 36.0774 Q1658.24 32.4315 1652.74 32.4315 Q1646.5 32.4315 1642.73 35.9558 Q1639 39.4801 1638.44 45.8805 L1665.01 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip792)\" d=\"\n",
"M1278.94 1430.73 L772.421 1430.73 L1785.46 1430.73 L1278.94 1430.73 L1278.94 1104.27 L1278.94 1430.73 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip792)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1278.94,1430.73 772.421,1430.73 1785.46,1430.73 1278.94,1430.73 1278.94,1104.27 1278.94,1430.73 \n",
" \"/>\n",
"<path clip-path=\"url(#clip792)\" d=\"\n",
"M2291.97 1104.27 L2291.97 984.976 L265.903 984.976 L265.903 1104.27 L2291.97 1104.27 L2291.97 984.976 L2291.97 1104.27 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip792)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2291.97,1104.27 2291.97,984.976 265.903,984.976 265.903,1104.27 2291.97,1104.27 2291.97,984.976 2291.97,1104.27 \n",
" \"/>\n",
"<path clip-path=\"url(#clip792)\" d=\"\n",
"M2291.97 876.395 L265.903 876.395 L265.903 984.976 L2291.97 984.976 L2291.97 876.395 L1278.94 876.395 L2291.97 876.395 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip792)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2291.97,876.395 265.903,876.395 265.903,984.976 2291.97,984.976 2291.97,876.395 1278.94,876.395 2291.97,876.395 \n",
" \"/>\n",
"<path clip-path=\"url(#clip792)\" d=\"\n",
"M1278.94 547.795 L772.421 547.795 L1785.46 547.795 L1278.94 547.795 L1278.94 876.395 L1278.94 547.795 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip792)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1278.94,547.795 772.421,547.795 1785.46,547.795 1278.94,547.795 1278.94,876.395 1278.94,547.795 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"484.932\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"339.205\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"410.64\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"527.793\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"453.501\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"507.791\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"533.508\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"382.066\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"204.908\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"310.631\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"516.363\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"256.341\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"399.21\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"210.623\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"367.779\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"333.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"359.207\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"196.336\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"347.777\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"293.487\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"276.343\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"524.936\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip792)\" cx=\"1278.94\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<polyline clip-path=\"url(#clip792)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:0; stroke-opacity:1; fill:none\" points=\"\n",
" 1278.94,1430.73 772.421,1430.73 1785.46,1430.73 1278.94,1430.73 1278.94,1104.27 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip792)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:0; stroke-opacity:1; fill:none\" points=\"\n",
" 2291.97,1104.27 2291.97,984.976 265.903,984.976 265.903,1104.27 2291.97,1104.27 2291.97,984.976 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip792)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:0; stroke-opacity:1; fill:none\" points=\"\n",
" 2291.97,876.395 265.903,876.395 265.903,984.976 2291.97,984.976 2291.97,876.395 1278.94,876.395 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip792)\" style=\"stroke:#009af9; stroke-linecap:butt; stroke-linejoin:round; stroke-width:0; stroke-opacity:1; fill:none\" points=\"\n",
" 1278.94,547.795 772.421,547.795 1785.46,547.795 1278.94,547.795 1278.94,876.395 \n",
" \"/>\n",
"</svg>\n"
]
},
"execution_count": 22,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# boxplot for out target variable \n",
"\n",
"boxplot(df.SalePrice, title = \"Box Plot - SalePrice\", ylabel = \"CRIM\", legend = false)"
]
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip870\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip870)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip871\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip870)\" d=\"\n",
"M205.121 1423.18 L2352.76 1423.18 L2352.76 123.472 L205.121 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip872\">\n",
" <rect x=\"205\" y=\"123\" width=\"2149\" height=\"1301\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip872)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 265.759,1423.18 265.759,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip872)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 721.21,1423.18 721.21,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip872)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1176.66,1423.18 1176.66,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip872)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1632.11,1423.18 1632.11,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip872)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2087.56,1423.18 2087.56,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,1423.18 2352.76,1423.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 265.759,1423.18 265.759,1404.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 721.21,1423.18 721.21,1404.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1176.66,1423.18 1176.66,1404.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1632.11,1423.18 1632.11,1404.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2087.56,1423.18 2087.56,1404.28 \n",
" \"/>\n",
"<path clip-path=\"url(#clip870)\" d=\"M265.759 1452.37 Q262.148 1452.37 260.319 1455.94 Q258.514 1459.48 258.514 1466.61 Q258.514 1473.71 260.319 1477.28 Q262.148 1480.82 265.759 1480.82 Q269.393 1480.82 271.199 1477.28 Q273.028 1473.71 273.028 1466.61 Q273.028 1459.48 271.199 1455.94 Q269.393 1452.37 265.759 1452.37 M265.759 1448.67 Q271.569 1448.67 274.625 1453.27 Q277.704 1457.86 277.704 1466.61 Q277.704 1475.33 274.625 1479.94 Q271.569 1484.52 265.759 1484.52 Q259.949 1484.52 256.87 1479.94 Q253.815 1475.33 253.815 1466.61 Q253.815 1457.86 256.87 1453.27 Q259.949 1448.67 265.759 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M699.983 1479.92 L716.303 1479.92 L716.303 1483.85 L694.358 1483.85 L694.358 1479.92 Q697.02 1477.16 701.604 1472.53 Q706.21 1467.88 707.391 1466.54 Q709.636 1464.01 710.516 1462.28 Q711.418 1460.52 711.418 1458.83 Q711.418 1456.07 709.474 1454.34 Q707.553 1452.6 704.451 1452.6 Q702.252 1452.6 699.798 1453.37 Q697.368 1454.13 694.59 1455.68 L694.59 1450.96 Q697.414 1449.82 699.868 1449.25 Q702.321 1448.67 704.358 1448.67 Q709.729 1448.67 712.923 1451.35 Q716.118 1454.04 716.118 1458.53 Q716.118 1460.66 715.307 1462.58 Q714.52 1464.48 712.414 1467.07 Q711.835 1467.74 708.733 1470.96 Q705.631 1474.15 699.983 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M736.117 1452.37 Q732.506 1452.37 730.678 1455.94 Q728.872 1459.48 728.872 1466.61 Q728.872 1473.71 730.678 1477.28 Q732.506 1480.82 736.117 1480.82 Q739.752 1480.82 741.557 1477.28 Q743.386 1473.71 743.386 1466.61 Q743.386 1459.48 741.557 1455.94 Q739.752 1452.37 736.117 1452.37 M736.117 1448.67 Q741.928 1448.67 744.983 1453.27 Q748.062 1457.86 748.062 1466.61 Q748.062 1475.33 744.983 1479.94 Q741.928 1484.52 736.117 1484.52 Q730.307 1484.52 727.229 1479.94 Q724.173 1475.33 724.173 1466.61 Q724.173 1457.86 727.229 1453.27 Q730.307 1448.67 736.117 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1164.83 1453.37 L1153.03 1471.81 L1164.83 1471.81 L1164.83 1453.37 M1163.61 1449.29 L1169.49 1449.29 L1169.49 1471.81 L1174.42 1471.81 L1174.42 1475.7 L1169.49 1475.7 L1169.49 1483.85 L1164.83 1483.85 L1164.83 1475.7 L1149.23 1475.7 L1149.23 1471.19 L1163.61 1449.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1192.15 1452.37 Q1188.54 1452.37 1186.71 1455.94 Q1184.9 1459.48 1184.9 1466.61 Q1184.9 1473.71 1186.71 1477.28 Q1188.54 1480.82 1192.15 1480.82 Q1195.78 1480.82 1197.59 1477.28 Q1199.42 1473.71 1199.42 1466.61 Q1199.42 1459.48 1197.59 1455.94 Q1195.78 1452.37 1192.15 1452.37 M1192.15 1448.67 Q1197.96 1448.67 1201.01 1453.27 Q1204.09 1457.86 1204.09 1466.61 Q1204.09 1475.33 1201.01 1479.94 Q1197.96 1484.52 1192.15 1484.52 Q1186.34 1484.52 1183.26 1479.94 Q1180.2 1475.33 1180.2 1466.61 Q1180.2 1457.86 1183.26 1453.27 Q1186.34 1448.67 1192.15 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1617.52 1464.71 Q1614.37 1464.71 1612.52 1466.86 Q1610.69 1469.01 1610.69 1472.76 Q1610.69 1476.49 1612.52 1478.67 Q1614.37 1480.82 1617.52 1480.82 Q1620.67 1480.82 1622.49 1478.67 Q1624.35 1476.49 1624.35 1472.76 Q1624.35 1469.01 1622.49 1466.86 Q1620.67 1464.71 1617.52 1464.71 M1626.8 1450.06 L1626.8 1454.31 Q1625.04 1453.48 1623.23 1453.04 Q1621.45 1452.6 1619.69 1452.6 Q1615.06 1452.6 1612.61 1455.73 Q1610.18 1458.85 1609.83 1465.17 Q1611.2 1463.16 1613.26 1462.09 Q1615.32 1461 1617.79 1461 Q1623 1461 1626.01 1464.18 Q1629.04 1467.32 1629.04 1472.76 Q1629.04 1478.09 1625.9 1481.31 Q1622.75 1484.52 1617.52 1484.52 Q1611.52 1484.52 1608.35 1479.94 Q1605.18 1475.33 1605.18 1466.61 Q1605.18 1458.41 1609.07 1453.55 Q1612.96 1448.67 1619.51 1448.67 Q1621.27 1448.67 1623.05 1449.01 Q1624.86 1449.36 1626.8 1450.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1647.1 1452.37 Q1643.49 1452.37 1641.66 1455.94 Q1639.85 1459.48 1639.85 1466.61 Q1639.85 1473.71 1641.66 1477.28 Q1643.49 1480.82 1647.1 1480.82 Q1650.73 1480.82 1652.54 1477.28 Q1654.37 1473.71 1654.37 1466.61 Q1654.37 1459.48 1652.54 1455.94 Q1650.73 1452.37 1647.1 1452.37 M1647.1 1448.67 Q1652.91 1448.67 1655.97 1453.27 Q1659.04 1457.86 1659.04 1466.61 Q1659.04 1475.33 1655.97 1479.94 Q1652.91 1484.52 1647.1 1484.52 Q1641.29 1484.52 1638.21 1479.94 Q1635.16 1475.33 1635.16 1466.61 Q1635.16 1457.86 1638.21 1453.27 Q1641.29 1448.67 1647.1 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M2072.44 1467.44 Q2069.1 1467.44 2067.18 1469.22 Q2065.28 1471 2065.28 1474.13 Q2065.28 1477.25 2067.18 1479.04 Q2069.1 1480.82 2072.44 1480.82 Q2075.77 1480.82 2077.69 1479.04 Q2079.61 1477.23 2079.61 1474.13 Q2079.61 1471 2077.69 1469.22 Q2075.79 1467.44 2072.44 1467.44 M2067.76 1465.45 Q2064.75 1464.71 2063.06 1462.65 Q2061.39 1460.59 2061.39 1457.63 Q2061.39 1453.48 2064.33 1451.07 Q2067.3 1448.67 2072.44 1448.67 Q2077.6 1448.67 2080.54 1451.07 Q2083.48 1453.48 2083.48 1457.63 Q2083.48 1460.59 2081.79 1462.65 Q2080.12 1464.71 2077.13 1465.45 Q2080.51 1466.24 2082.39 1468.53 Q2084.29 1470.82 2084.29 1474.13 Q2084.29 1479.15 2081.21 1481.84 Q2078.15 1484.52 2072.44 1484.52 Q2066.72 1484.52 2063.64 1481.84 Q2060.58 1479.15 2060.58 1474.13 Q2060.58 1470.82 2062.48 1468.53 Q2064.38 1466.24 2067.76 1465.45 M2066.05 1458.06 Q2066.05 1460.75 2067.71 1462.25 Q2069.4 1463.76 2072.44 1463.76 Q2075.44 1463.76 2077.13 1462.25 Q2078.85 1460.75 2078.85 1458.06 Q2078.85 1455.38 2077.13 1453.88 Q2075.44 1452.37 2072.44 1452.37 Q2069.4 1452.37 2067.71 1453.88 Q2066.05 1455.38 2066.05 1458.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M2102.6 1452.37 Q2098.99 1452.37 2097.16 1455.94 Q2095.35 1459.48 2095.35 1466.61 Q2095.35 1473.71 2097.16 1477.28 Q2098.99 1480.82 2102.6 1480.82 Q2106.23 1480.82 2108.04 1477.28 Q2109.87 1473.71 2109.87 1466.61 Q2109.87 1459.48 2108.04 1455.94 Q2106.23 1452.37 2102.6 1452.37 M2102.6 1448.67 Q2108.41 1448.67 2111.46 1453.27 Q2114.54 1457.86 2114.54 1466.61 Q2114.54 1475.33 2111.46 1479.94 Q2108.41 1484.52 2102.6 1484.52 Q2096.79 1484.52 2093.71 1479.94 Q2090.65 1475.33 2090.65 1466.61 Q2090.65 1457.86 2093.71 1453.27 Q2096.79 1448.67 2102.6 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1164.13 1522.08 L1164.13 1528.35 Q1160.47 1526.6 1157.23 1525.74 Q1153.98 1524.88 1150.96 1524.88 Q1145.7 1524.88 1142.84 1526.92 Q1140.01 1528.96 1140.01 1532.71 Q1140.01 1535.87 1141.88 1537.49 Q1143.79 1539.08 1149.08 1540.07 L1152.96 1540.86 Q1160.15 1542.23 1163.56 1545.7 Q1167 1549.14 1167 1554.93 Q1167 1561.84 1162.35 1565.4 Q1157.74 1568.97 1148.79 1568.97 Q1145.42 1568.97 1141.6 1568.2 Q1137.81 1567.44 1133.74 1565.94 L1133.74 1559.32 Q1137.65 1561.52 1141.41 1562.63 Q1145.16 1563.75 1148.79 1563.75 Q1154.3 1563.75 1157.29 1561.58 Q1160.28 1559.42 1160.28 1555.41 Q1160.28 1551.91 1158.12 1549.93 Q1155.98 1547.96 1151.08 1546.97 L1147.17 1546.21 Q1139.98 1544.78 1136.76 1541.72 Q1133.55 1538.67 1133.55 1533.22 Q1133.55 1526.92 1137.97 1523.29 Q1142.43 1519.66 1150.22 1519.66 Q1153.57 1519.66 1157.04 1520.27 Q1160.5 1520.87 1164.13 1522.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1192.97 1550.12 Q1185.87 1550.12 1183.13 1551.75 Q1180.4 1553.37 1180.4 1557.29 Q1180.4 1560.4 1182.43 1562.25 Q1184.5 1564.07 1188.04 1564.07 Q1192.91 1564.07 1195.83 1560.63 Q1198.79 1557.16 1198.79 1551.43 L1198.79 1550.12 L1192.97 1550.12 M1204.65 1547.71 L1204.65 1568.04 L1198.79 1568.04 L1198.79 1562.63 Q1196.79 1565.88 1193.8 1567.44 Q1190.81 1568.97 1186.48 1568.97 Q1181 1568.97 1177.76 1565.91 Q1174.54 1562.82 1174.54 1557.67 Q1174.54 1551.65 1178.55 1548.6 Q1182.59 1545.54 1190.58 1545.54 L1198.79 1545.54 L1198.79 1544.97 Q1198.79 1540.93 1196.12 1538.73 Q1193.48 1536.5 1188.67 1536.5 Q1185.62 1536.5 1182.72 1537.23 Q1179.82 1537.97 1177.15 1539.43 L1177.15 1534.02 Q1180.37 1532.78 1183.39 1532.17 Q1186.41 1531.54 1189.28 1531.54 Q1197.01 1531.54 1200.83 1535.55 Q1204.65 1539.56 1204.65 1547.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1216.71 1518.52 L1222.57 1518.52 L1222.57 1568.04 L1216.71 1568.04 L1216.71 1518.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1265.32 1548.76 L1265.32 1551.62 L1238.39 1551.62 Q1238.77 1557.67 1242.02 1560.85 Q1245.3 1564 1251.12 1564 Q1254.49 1564 1257.65 1563.17 Q1260.83 1562.35 1263.95 1560.69 L1263.95 1566.23 Q1260.8 1567.57 1257.49 1568.27 Q1254.18 1568.97 1250.77 1568.97 Q1242.24 1568.97 1237.24 1564 Q1232.28 1559.04 1232.28 1550.57 Q1232.28 1541.82 1236.99 1536.69 Q1241.73 1531.54 1249.75 1531.54 Q1256.94 1531.54 1261.11 1536.18 Q1265.32 1540.8 1265.32 1548.76 M1259.46 1547.04 Q1259.4 1542.23 1256.75 1539.37 Q1254.14 1536.5 1249.82 1536.5 Q1244.91 1536.5 1241.95 1539.27 Q1239.03 1542.04 1238.58 1547.07 L1259.46 1547.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1281.61 1525.81 L1281.61 1543.66 L1289.7 1543.66 Q1294.18 1543.66 1296.64 1541.34 Q1299.09 1539.02 1299.09 1534.72 Q1299.09 1530.45 1296.64 1528.13 Q1294.18 1525.81 1289.7 1525.81 L1281.61 1525.81 M1275.18 1520.52 L1289.7 1520.52 Q1297.69 1520.52 1301.76 1524.15 Q1305.87 1527.75 1305.87 1534.72 Q1305.87 1541.75 1301.76 1545.35 Q1297.69 1548.95 1289.7 1548.95 L1281.61 1548.95 L1281.61 1568.04 L1275.18 1568.04 L1275.18 1520.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1333.75 1537.87 Q1332.76 1537.3 1331.58 1537.04 Q1330.44 1536.76 1329.04 1536.76 Q1324.07 1536.76 1321.4 1540 Q1318.76 1543.22 1318.76 1549.27 L1318.76 1568.04 L1312.87 1568.04 L1312.87 1532.4 L1318.76 1532.4 L1318.76 1537.93 Q1320.6 1534.69 1323.56 1533.13 Q1326.52 1531.54 1330.76 1531.54 Q1331.36 1531.54 1332.09 1531.63 Q1332.82 1531.7 1333.72 1531.85 L1333.75 1537.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1339.89 1532.4 L1345.75 1532.4 L1345.75 1568.04 L1339.89 1568.04 L1339.89 1532.4 M1339.89 1518.52 L1345.75 1518.52 L1345.75 1525.93 L1339.89 1525.93 L1339.89 1518.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1383.65 1533.76 L1383.65 1539.24 Q1381.17 1537.87 1378.66 1537.2 Q1376.17 1536.5 1373.63 1536.5 Q1367.93 1536.5 1364.78 1540.13 Q1361.63 1543.73 1361.63 1550.25 Q1361.63 1556.78 1364.78 1560.4 Q1367.93 1564 1373.63 1564 Q1376.17 1564 1378.66 1563.33 Q1381.17 1562.63 1383.65 1561.26 L1383.65 1566.68 Q1381.2 1567.82 1378.56 1568.39 Q1375.95 1568.97 1372.99 1568.97 Q1364.94 1568.97 1360.2 1563.91 Q1355.45 1558.85 1355.45 1550.25 Q1355.45 1541.53 1360.23 1536.53 Q1365.03 1531.54 1373.37 1531.54 Q1376.08 1531.54 1378.66 1532.11 Q1381.24 1532.65 1383.65 1533.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1424.33 1548.76 L1424.33 1551.62 L1397.4 1551.62 Q1397.79 1557.67 1401.03 1560.85 Q1404.31 1564 1410.14 1564 Q1413.51 1564 1416.66 1563.17 Q1419.84 1562.35 1422.96 1560.69 L1422.96 1566.23 Q1419.81 1567.57 1416.5 1568.27 Q1413.19 1568.97 1409.79 1568.97 Q1401.26 1568.97 1396.26 1564 Q1391.29 1559.04 1391.29 1550.57 Q1391.29 1541.82 1396 1536.69 Q1400.75 1531.54 1408.77 1531.54 Q1415.96 1531.54 1420.13 1536.18 Q1424.33 1540.8 1424.33 1548.76 M1418.47 1547.04 Q1418.41 1542.23 1415.77 1539.37 Q1413.16 1536.5 1408.83 1536.5 Q1403.93 1536.5 1400.97 1539.27 Q1398.04 1542.04 1397.6 1547.07 L1418.47 1547.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip872)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 205.121,1250.16 2352.76,1250.16 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip872)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 205.121,977.683 2352.76,977.683 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip872)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 205.121,705.207 2352.76,705.207 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip872)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 205.121,432.732 2352.76,432.732 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip872)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 205.121,160.256 2352.76,160.256 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,1423.18 205.121,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,1250.16 224.019,1250.16 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,977.683 224.019,977.683 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,705.207 224.019,705.207 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,432.732 224.019,432.732 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip870)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,160.256 224.019,160.256 \n",
" \"/>\n",
"<path clip-path=\"url(#clip870)\" d=\"M117.825 1263.5 L125.464 1263.5 L125.464 1237.14 L117.154 1238.8 L117.154 1234.54 L125.418 1232.88 L130.093 1232.88 L130.093 1263.5 L137.732 1263.5 L137.732 1267.44 L117.825 1267.44 L117.825 1263.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M157.177 1235.96 Q153.566 1235.96 151.737 1239.52 Q149.931 1243.06 149.931 1250.19 Q149.931 1257.3 151.737 1260.86 Q153.566 1264.41 157.177 1264.41 Q160.811 1264.41 162.616 1260.86 Q164.445 1257.3 164.445 1250.19 Q164.445 1243.06 162.616 1239.52 Q160.811 1235.96 157.177 1235.96 M157.177 1232.25 Q162.987 1232.25 166.042 1236.86 Q169.121 1241.44 169.121 1250.19 Q169.121 1258.92 166.042 1263.53 Q162.987 1268.11 157.177 1268.11 Q151.366 1268.11 148.288 1263.53 Q145.232 1258.92 145.232 1250.19 Q145.232 1241.44 148.288 1236.86 Q151.366 1232.25 157.177 1232.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M121.043 991.027 L137.362 991.027 L137.362 994.963 L115.418 994.963 L115.418 991.027 Q118.08 988.273 122.663 983.643 Q127.269 978.99 128.45 977.648 Q130.695 975.125 131.575 973.389 Q132.478 971.629 132.478 969.94 Q132.478 967.185 130.533 965.449 Q128.612 963.713 125.51 963.713 Q123.311 963.713 120.857 964.477 Q118.427 965.24 115.649 966.791 L115.649 962.069 Q118.473 960.935 120.927 960.356 Q123.38 959.778 125.418 959.778 Q130.788 959.778 133.982 962.463 Q137.177 965.148 137.177 969.639 Q137.177 971.768 136.367 973.69 Q135.579 975.588 133.473 978.18 Q132.894 978.852 129.792 982.069 Q126.691 985.264 121.043 991.027 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M157.177 963.481 Q153.566 963.481 151.737 967.046 Q149.931 970.588 149.931 977.717 Q149.931 984.824 151.737 988.389 Q153.566 991.93 157.177 991.93 Q160.811 991.93 162.616 988.389 Q164.445 984.824 164.445 977.717 Q164.445 970.588 162.616 967.046 Q160.811 963.481 157.177 963.481 M157.177 959.778 Q162.987 959.778 166.042 964.384 Q169.121 968.967 169.121 977.717 Q169.121 986.444 166.042 991.051 Q162.987 995.634 157.177 995.634 Q151.366 995.634 148.288 991.051 Q145.232 986.444 145.232 977.717 Q145.232 968.967 148.288 964.384 Q151.366 959.778 157.177 959.778 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M131.181 703.853 Q134.538 704.571 136.413 706.839 Q138.311 709.108 138.311 712.441 Q138.311 717.557 134.792 720.358 Q131.274 723.158 124.793 723.158 Q122.617 723.158 120.302 722.719 Q118.01 722.302 115.556 721.445 L115.556 716.932 Q117.501 718.066 119.816 718.645 Q122.13 719.223 124.654 719.223 Q129.052 719.223 131.343 717.487 Q133.658 715.751 133.658 712.441 Q133.658 709.385 131.505 707.672 Q129.376 705.936 125.556 705.936 L121.529 705.936 L121.529 702.094 L125.742 702.094 Q129.191 702.094 131.019 700.728 Q132.848 699.339 132.848 696.747 Q132.848 694.085 130.95 692.672 Q129.075 691.237 125.556 691.237 Q123.635 691.237 121.436 691.654 Q119.237 692.071 116.598 692.95 L116.598 688.784 Q119.26 688.043 121.575 687.673 Q123.913 687.302 125.973 687.302 Q131.297 687.302 134.399 689.733 Q137.501 692.14 137.501 696.26 Q137.501 699.131 135.857 701.122 Q134.214 703.089 131.181 703.853 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M157.177 691.006 Q153.566 691.006 151.737 694.571 Q149.931 698.112 149.931 705.242 Q149.931 712.348 151.737 715.913 Q153.566 719.455 157.177 719.455 Q160.811 719.455 162.616 715.913 Q164.445 712.348 164.445 705.242 Q164.445 698.112 162.616 694.571 Q160.811 691.006 157.177 691.006 M157.177 687.302 Q162.987 687.302 166.042 691.909 Q169.121 696.492 169.121 705.242 Q169.121 713.969 166.042 718.575 Q162.987 723.158 157.177 723.158 Q151.366 723.158 148.288 718.575 Q145.232 713.969 145.232 705.242 Q145.232 696.492 148.288 691.909 Q151.366 687.302 157.177 687.302 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M129.862 419.526 L118.056 437.975 L129.862 437.975 L129.862 419.526 M128.635 415.452 L134.515 415.452 L134.515 437.975 L139.445 437.975 L139.445 441.864 L134.515 441.864 L134.515 450.012 L129.862 450.012 L129.862 441.864 L114.26 441.864 L114.26 437.35 L128.635 415.452 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M157.177 418.53 Q153.566 418.53 151.737 422.095 Q149.931 425.637 149.931 432.766 Q149.931 439.873 151.737 443.438 Q153.566 446.979 157.177 446.979 Q160.811 446.979 162.616 443.438 Q164.445 439.873 164.445 432.766 Q164.445 425.637 162.616 422.095 Q160.811 418.53 157.177 418.53 M157.177 414.827 Q162.987 414.827 166.042 419.433 Q169.121 424.016 169.121 432.766 Q169.121 441.493 166.042 446.1 Q162.987 450.683 157.177 450.683 Q151.366 450.683 148.288 446.1 Q145.232 441.493 145.232 432.766 Q145.232 424.016 148.288 419.433 Q151.366 414.827 157.177 414.827 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M117.061 142.976 L135.417 142.976 L135.417 146.911 L121.343 146.911 L121.343 155.384 Q122.362 155.036 123.38 154.874 Q124.399 154.689 125.418 154.689 Q131.205 154.689 134.584 157.86 Q137.964 161.032 137.964 166.448 Q137.964 172.027 134.492 175.129 Q131.019 178.208 124.7 178.208 Q122.524 178.208 120.255 177.837 Q118.01 177.467 115.603 176.726 L115.603 172.027 Q117.686 173.161 119.908 173.717 Q122.13 174.272 124.607 174.272 Q128.612 174.272 130.95 172.166 Q133.288 170.059 133.288 166.448 Q133.288 162.837 130.95 160.731 Q128.612 158.624 124.607 158.624 Q122.732 158.624 120.857 159.041 Q119.006 159.458 117.061 160.337 L117.061 142.976 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M157.177 146.055 Q153.566 146.055 151.737 149.62 Q149.931 153.161 149.931 160.291 Q149.931 167.397 151.737 170.962 Q153.566 174.504 157.177 174.504 Q160.811 174.504 162.616 170.962 Q164.445 167.397 164.445 160.291 Q164.445 153.161 162.616 149.62 Q160.811 146.055 157.177 146.055 M157.177 142.351 Q162.987 142.351 166.042 146.958 Q169.121 151.541 169.121 160.291 Q169.121 169.018 166.042 173.624 Q162.987 178.208 157.177 178.208 Q151.366 178.208 148.288 173.624 Q145.232 169.018 145.232 160.291 Q145.232 151.541 148.288 146.958 Q151.366 142.351 157.177 142.351 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M20.1444 813.128 L26.9239 813.128 Q23.9002 816.374 22.4043 820.066 Q20.9083 823.726 20.9083 827.864 Q20.9083 836.012 25.9054 840.341 Q30.8707 844.67 40.2919 844.67 Q49.6813 844.67 54.6784 840.341 Q59.6436 836.012 59.6436 827.864 Q59.6436 823.726 58.1477 820.066 Q56.6518 816.374 53.6281 813.128 L60.3439 813.128 Q62.6355 816.501 63.7814 820.289 Q64.9272 824.045 64.9272 828.246 Q64.9272 839.036 58.3387 845.243 Q51.7183 851.449 40.2919 851.449 Q28.8336 851.449 22.2451 845.243 Q15.6248 839.036 15.6248 828.246 Q15.6248 823.981 16.7706 820.225 Q17.8846 816.438 20.1444 813.128 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M41.7242 780.662 Q42.4244 778.594 44.7161 776.652 Q47.0077 774.679 51.0181 772.705 L64.0042 766.18 L64.0042 773.087 L51.8138 779.167 Q47.0395 781.522 45.48 783.75 Q43.9204 785.946 43.9204 789.765 L43.9204 796.768 L64.0042 796.768 L64.0042 803.197 L16.4842 803.197 L16.4842 788.683 Q16.4842 780.535 19.8898 776.525 Q23.2955 772.514 30.1704 772.514 Q34.6582 772.514 37.6183 774.615 Q40.5784 776.684 41.7242 780.662 M21.7677 796.768 L38.6368 796.768 L38.6368 788.683 Q38.6368 784.036 36.5043 781.681 Q34.34 779.294 30.1704 779.294 Q26.0009 779.294 23.9002 781.681 Q21.7677 784.036 21.7677 788.683 L21.7677 796.768 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M16.4842 757.905 L16.4842 751.476 L64.0042 751.476 L64.0042 757.905 L16.4842 757.905 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M16.4842 738.681 L16.4842 729.1 L48.8219 716.974 L16.4842 704.783 L16.4842 695.203 L64.0042 695.203 L64.0042 701.473 L22.277 701.473 L54.8694 713.727 L54.8694 720.188 L22.277 732.442 L64.0042 732.442 L64.0042 738.681 L16.4842 738.681 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M700.267 14.0809 L700.267 22.0612 Q695.608 19.8332 691.476 18.7395 Q687.344 17.6457 683.496 17.6457 Q676.812 17.6457 673.166 20.2383 Q669.561 22.8309 669.561 27.611 Q669.561 31.6214 671.951 33.6873 Q674.381 35.7128 681.106 36.9686 L686.048 37.9813 Q695.203 39.7232 699.538 44.1387 Q703.913 48.5136 703.913 55.8863 Q703.913 64.6767 697.998 69.2137 Q692.124 73.7508 680.741 73.7508 Q676.447 73.7508 671.586 72.7785 Q666.766 71.8063 661.581 69.9024 L661.581 61.4765 Q666.563 64.2716 671.343 65.6895 Q676.123 67.1073 680.741 67.1073 Q687.749 67.1073 691.557 64.3527 Q695.365 61.598 695.365 56.4939 Q695.365 52.0379 692.611 49.5264 Q689.896 47.0148 683.658 45.759 L678.675 44.7868 Q669.52 42.9639 665.429 39.075 Q661.338 35.1862 661.338 28.2591 Q661.338 20.2383 666.968 15.6203 Q672.64 11.0023 682.564 11.0023 Q686.818 11.0023 691.233 11.7719 Q695.649 12.5416 700.267 14.0809 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M748.999 28.9478 L748.999 35.9153 Q745.839 34.1734 742.639 33.3227 Q739.48 32.4315 736.239 32.4315 Q728.988 32.4315 724.977 37.0496 Q720.967 41.6271 720.967 49.9314 Q720.967 58.2358 724.977 62.8538 Q728.988 67.4314 736.239 67.4314 Q739.48 67.4314 742.639 66.5807 Q745.839 65.6895 748.999 63.9476 L748.999 70.8341 Q745.88 72.2924 742.518 73.0216 Q739.196 73.7508 735.429 73.7508 Q725.18 73.7508 719.144 67.3098 Q713.108 60.8689 713.108 49.9314 Q713.108 38.832 719.184 32.472 Q725.301 26.1121 735.915 26.1121 Q739.358 26.1121 742.639 26.8413 Q745.92 27.5299 748.999 28.9478 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M782.581 49.7694 Q773.548 49.7694 770.064 51.8354 Q766.58 53.9013 766.58 58.8839 Q766.58 62.8538 769.173 65.2034 Q771.806 67.5124 776.302 67.5124 Q782.5 67.5124 786.227 63.1374 Q789.994 58.7219 789.994 51.4303 L789.994 49.7694 L782.581 49.7694 M797.448 46.6907 L797.448 72.576 L789.994 72.576 L789.994 65.6895 Q787.442 69.8214 783.634 71.8063 Q779.827 73.7508 774.317 73.7508 Q767.35 73.7508 763.218 69.8619 Q759.126 65.9325 759.126 59.3701 Q759.126 51.7138 764.231 47.825 Q769.375 43.9361 779.543 43.9361 L789.994 43.9361 L789.994 43.2069 Q789.994 38.0623 786.592 35.2672 Q783.229 32.4315 777.112 32.4315 Q773.224 32.4315 769.537 33.3632 Q765.851 34.295 762.448 36.1584 L762.448 29.2718 Q766.54 27.692 770.388 26.9223 Q774.236 26.1121 777.882 26.1121 Q787.726 26.1121 792.587 31.2163 Q797.448 36.3204 797.448 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M820.174 14.324 L820.174 27.2059 L835.526 27.2059 L835.526 32.9987 L820.174 32.9987 L820.174 57.6282 Q820.174 63.1779 821.672 64.7578 Q823.212 66.3376 827.87 66.3376 L835.526 66.3376 L835.526 72.576 L827.87 72.576 Q819.242 72.576 815.961 69.3758 Q812.679 66.1351 812.679 57.6282 L812.679 32.9987 L807.211 32.9987 L807.211 27.2059 L812.679 27.2059 L812.679 14.324 L820.174 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M852.702 14.324 L852.702 27.2059 L868.055 27.2059 L868.055 32.9987 L852.702 32.9987 L852.702 57.6282 Q852.702 63.1779 854.201 64.7578 Q855.74 66.3376 860.399 66.3376 L868.055 66.3376 L868.055 72.576 L860.399 72.576 Q851.771 72.576 848.489 69.3758 Q845.208 66.1351 845.208 57.6282 L845.208 32.9987 L839.739 32.9987 L839.739 27.2059 L845.208 27.2059 L845.208 14.324 L852.702 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M916.666 48.0275 L916.666 51.6733 L882.395 51.6733 Q882.882 59.3701 887.013 63.421 Q891.186 67.4314 898.599 67.4314 Q902.893 67.4314 906.903 66.3781 Q910.954 65.3249 914.924 63.2184 L914.924 70.267 Q910.914 71.9684 906.701 72.8596 Q902.488 73.7508 898.153 73.7508 Q887.297 73.7508 880.937 67.4314 Q874.618 61.1119 874.618 50.3365 Q874.618 39.1965 880.613 32.6746 Q886.649 26.1121 896.857 26.1121 Q906.012 26.1121 911.319 32.0264 Q916.666 37.9003 916.666 48.0275 M909.212 45.84 Q909.131 39.7232 905.769 36.0774 Q902.447 32.4315 896.938 32.4315 Q890.7 32.4315 886.932 35.9558 Q883.206 39.4801 882.638 45.8805 L909.212 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M955.19 34.1734 Q953.934 33.4443 952.436 33.1202 Q950.977 32.7556 949.195 32.7556 Q942.875 32.7556 939.473 36.8875 Q936.11 40.9789 936.11 48.6757 L936.11 72.576 L928.616 72.576 L928.616 27.2059 L936.11 27.2059 L936.11 34.2544 Q938.46 30.1225 942.227 28.1376 Q945.995 26.1121 951.382 26.1121 Q952.152 26.1121 953.084 26.2337 Q954.015 26.3147 955.15 26.5172 L955.19 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M997.887 18.8205 L997.887 41.5461 L1008.18 41.5461 Q1013.89 41.5461 1017.01 38.5889 Q1020.13 35.6318 1020.13 30.163 Q1020.13 24.7348 1017.01 21.7777 Q1013.89 18.8205 1008.18 18.8205 L997.887 18.8205 M989.704 12.096 L1008.18 12.096 Q1018.34 12.096 1023.53 16.714 Q1028.75 21.2916 1028.75 30.163 Q1028.75 39.1155 1023.53 43.6931 Q1018.34 48.2706 1008.18 48.2706 L997.887 48.2706 L997.887 72.576 L989.704 72.576 L989.704 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1039.41 9.54393 L1046.86 9.54393 L1046.86 72.576 L1039.41 72.576 L1039.41 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1080.04 32.4315 Q1074.04 32.4315 1070.56 37.1306 Q1067.08 41.7891 1067.08 49.9314 Q1067.08 58.0738 1070.52 62.7728 Q1074 67.4314 1080.04 67.4314 Q1085.99 67.4314 1089.48 62.7323 Q1092.96 58.0333 1092.96 49.9314 Q1092.96 41.8701 1089.48 37.1711 Q1085.99 32.4315 1080.04 32.4315 M1080.04 26.1121 Q1089.76 26.1121 1095.31 32.4315 Q1100.86 38.7509 1100.86 49.9314 Q1100.86 61.0714 1095.31 67.4314 Q1089.76 73.7508 1080.04 73.7508 Q1070.28 73.7508 1064.73 67.4314 Q1059.22 61.0714 1059.22 49.9314 Q1059.22 38.7509 1064.73 32.4315 Q1070.28 26.1121 1080.04 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1120.59 14.324 L1120.59 27.2059 L1135.94 27.2059 L1135.94 32.9987 L1120.59 32.9987 L1120.59 57.6282 Q1120.59 63.1779 1122.09 64.7578 Q1123.63 66.3376 1128.29 66.3376 L1135.94 66.3376 L1135.94 72.576 L1128.29 72.576 Q1119.66 72.576 1116.38 69.3758 Q1113.09 66.1351 1113.09 57.6282 L1113.09 32.9987 L1107.63 32.9987 L1107.63 27.2059 L1113.09 27.2059 L1113.09 14.324 L1120.59 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1217.73 16.7545 L1217.73 25.383 Q1213.6 21.5346 1208.9 19.6307 Q1204.24 17.7268 1198.97 17.7268 Q1188.6 17.7268 1183.09 24.0867 Q1177.58 30.4061 1177.58 42.3968 Q1177.58 54.3469 1183.09 60.7069 Q1188.6 67.0263 1198.97 67.0263 Q1204.24 67.0263 1208.9 65.1223 Q1213.6 63.2184 1217.73 59.3701 L1217.73 67.9175 Q1213.44 70.8341 1208.61 72.2924 Q1203.83 73.7508 1198.49 73.7508 Q1184.75 73.7508 1176.86 65.3654 Q1168.96 56.9395 1168.96 42.3968 Q1168.96 27.8135 1176.86 19.4281 Q1184.75 11.0023 1198.49 11.0023 Q1203.92 11.0023 1208.7 12.4606 Q1213.52 13.8784 1217.73 16.7545 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1259.05 44.2197 Q1261.68 45.1109 1264.15 48.0275 Q1266.66 50.9442 1269.18 56.0483 L1277.48 72.576 L1268.69 72.576 L1260.95 57.061 Q1257.95 50.9847 1255.12 48.9997 Q1252.32 47.0148 1247.46 47.0148 L1238.55 47.0148 L1238.55 72.576 L1230.37 72.576 L1230.37 12.096 L1248.84 12.096 Q1259.21 12.096 1264.31 16.4305 Q1269.42 20.7649 1269.42 29.5149 Q1269.42 35.2267 1266.75 38.994 Q1264.11 42.7613 1259.05 44.2197 M1238.55 18.8205 L1238.55 40.2903 L1248.84 40.2903 Q1254.75 40.2903 1257.75 37.5762 Q1260.79 34.8216 1260.79 29.5149 Q1260.79 24.2082 1257.75 21.5346 Q1254.75 18.8205 1248.84 18.8205 L1238.55 18.8205 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1288.01 12.096 L1296.2 12.096 L1296.2 72.576 L1288.01 72.576 L1288.01 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1312.48 12.096 L1324.67 12.096 L1340.11 53.2532 L1355.62 12.096 L1367.82 12.096 L1367.82 72.576 L1359.83 72.576 L1359.83 19.4686 L1344.24 60.9499 L1336.02 60.9499 L1320.42 19.4686 L1320.42 72.576 L1312.48 72.576 L1312.48 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1404.76 27.2059 L1412.66 27.2059 L1426.84 65.2844 L1441.02 27.2059 L1448.91 27.2059 L1431.9 72.576 L1421.77 72.576 L1404.76 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1488.13 28.5427 L1488.13 35.5912 Q1484.97 33.9709 1481.56 33.1607 Q1478.16 32.3505 1474.52 32.3505 Q1468.97 32.3505 1466.17 34.0519 Q1463.42 35.7533 1463.42 39.156 Q1463.42 41.7486 1465.4 43.2475 Q1467.39 44.7058 1473.38 46.0426 L1475.93 46.6097 Q1483.87 48.3111 1487.2 51.4303 Q1490.56 54.509 1490.56 60.0587 Q1490.56 66.3781 1485.53 70.0644 Q1480.55 73.7508 1471.8 73.7508 Q1468.16 73.7508 1464.19 73.0216 Q1460.26 72.3329 1455.88 70.9151 L1455.88 63.2184 Q1460.01 65.3654 1464.02 66.4591 Q1468.03 67.5124 1471.96 67.5124 Q1477.23 67.5124 1480.07 65.73 Q1482.9 63.9071 1482.9 60.6258 Q1482.9 57.5877 1480.84 55.9673 Q1478.81 54.3469 1471.88 52.8481 L1469.29 52.2405 Q1462.36 50.7821 1459.28 47.7845 Q1456.21 44.7463 1456.21 39.4801 Q1456.21 33.0797 1460.74 29.5959 Q1465.28 26.1121 1473.62 26.1121 Q1477.76 26.1121 1481.4 26.7198 Q1485.05 27.3274 1488.13 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1565.38 14.0809 L1565.38 22.0612 Q1560.72 19.8332 1556.59 18.7395 Q1552.46 17.6457 1548.61 17.6457 Q1541.92 17.6457 1538.28 20.2383 Q1534.67 22.8309 1534.67 27.611 Q1534.67 31.6214 1537.06 33.6873 Q1539.49 35.7128 1546.22 36.9686 L1551.16 37.9813 Q1560.31 39.7232 1564.65 44.1387 Q1569.02 48.5136 1569.02 55.8863 Q1569.02 64.6767 1563.11 69.2137 Q1557.24 73.7508 1545.85 73.7508 Q1541.56 73.7508 1536.7 72.7785 Q1531.88 71.8063 1526.69 69.9024 L1526.69 61.4765 Q1531.67 64.2716 1536.45 65.6895 Q1541.23 67.1073 1545.85 67.1073 Q1552.86 67.1073 1556.67 64.3527 Q1560.48 61.598 1560.48 56.4939 Q1560.48 52.0379 1557.72 49.5264 Q1555.01 47.0148 1548.77 45.759 L1543.79 44.7868 Q1534.63 42.9639 1530.54 39.075 Q1526.45 35.1862 1526.45 28.2591 Q1526.45 20.2383 1532.08 15.6203 Q1537.75 11.0023 1547.68 11.0023 Q1551.93 11.0023 1556.34 11.7719 Q1560.76 12.5416 1565.38 14.0809 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1602.08 49.7694 Q1593.05 49.7694 1589.56 51.8354 Q1586.08 53.9013 1586.08 58.8839 Q1586.08 62.8538 1588.67 65.2034 Q1591.3 67.5124 1595.8 67.5124 Q1602 67.5124 1605.72 63.1374 Q1609.49 58.7219 1609.49 51.4303 L1609.49 49.7694 L1602.08 49.7694 M1616.95 46.6907 L1616.95 72.576 L1609.49 72.576 L1609.49 65.6895 Q1606.94 69.8214 1603.13 71.8063 Q1599.32 73.7508 1593.82 73.7508 Q1586.85 73.7508 1582.72 69.8619 Q1578.62 65.9325 1578.62 59.3701 Q1578.62 51.7138 1583.73 47.825 Q1588.87 43.9361 1599.04 43.9361 L1609.49 43.9361 L1609.49 43.2069 Q1609.49 38.0623 1606.09 35.2672 Q1602.73 32.4315 1596.61 32.4315 Q1592.72 32.4315 1589.04 33.3632 Q1585.35 34.295 1581.95 36.1584 L1581.95 29.2718 Q1586.04 27.692 1589.89 26.9223 Q1593.73 26.1121 1597.38 26.1121 Q1607.22 26.1121 1612.08 31.2163 Q1616.95 36.3204 1616.95 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1632.3 9.54393 L1639.75 9.54393 L1639.75 72.576 L1632.3 72.576 L1632.3 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1694.16 48.0275 L1694.16 51.6733 L1659.89 51.6733 Q1660.37 59.3701 1664.5 63.421 Q1668.68 67.4314 1676.09 67.4314 Q1680.38 67.4314 1684.39 66.3781 Q1688.44 65.3249 1692.41 63.2184 L1692.41 70.267 Q1688.4 71.9684 1684.19 72.8596 Q1679.98 73.7508 1675.64 73.7508 Q1664.79 73.7508 1658.43 67.4314 Q1652.11 61.1119 1652.11 50.3365 Q1652.11 39.1965 1658.1 32.6746 Q1664.14 26.1121 1674.35 26.1121 Q1683.5 26.1121 1688.81 32.0264 Q1694.16 37.9003 1694.16 48.0275 M1686.7 45.84 Q1686.62 39.7232 1683.26 36.0774 Q1679.94 32.4315 1674.43 32.4315 Q1668.19 32.4315 1664.42 35.9558 Q1660.7 39.4801 1660.13 45.8805 L1686.7 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1714.9 18.8205 L1714.9 41.5461 L1725.19 41.5461 Q1730.9 41.5461 1734.02 38.5889 Q1737.14 35.6318 1737.14 30.163 Q1737.14 24.7348 1734.02 21.7777 Q1730.9 18.8205 1725.19 18.8205 L1714.9 18.8205 M1706.71 12.096 L1725.19 12.096 Q1735.35 12.096 1740.54 16.714 Q1745.76 21.2916 1745.76 30.163 Q1745.76 39.1155 1740.54 43.6931 Q1735.35 48.2706 1725.19 48.2706 L1714.9 48.2706 L1714.9 72.576 L1706.71 72.576 L1706.71 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1781.25 34.1734 Q1779.99 33.4443 1778.5 33.1202 Q1777.04 32.7556 1775.26 32.7556 Q1768.94 32.7556 1765.53 36.8875 Q1762.17 40.9789 1762.17 48.6757 L1762.17 72.576 L1754.68 72.576 L1754.68 27.2059 L1762.17 27.2059 L1762.17 34.2544 Q1764.52 30.1225 1768.29 28.1376 Q1772.06 26.1121 1777.44 26.1121 Q1778.21 26.1121 1779.14 26.2337 Q1780.08 26.3147 1781.21 26.5172 L1781.25 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1789.07 27.2059 L1796.52 27.2059 L1796.52 72.576 L1789.07 72.576 L1789.07 27.2059 M1789.07 9.54393 L1796.52 9.54393 L1796.52 18.9825 L1789.07 18.9825 L1789.07 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1844.77 28.9478 L1844.77 35.9153 Q1841.61 34.1734 1838.41 33.3227 Q1835.25 32.4315 1832.01 32.4315 Q1824.76 32.4315 1820.75 37.0496 Q1816.74 41.6271 1816.74 49.9314 Q1816.74 58.2358 1820.75 62.8538 Q1824.76 67.4314 1832.01 67.4314 Q1835.25 67.4314 1838.41 66.5807 Q1841.61 65.6895 1844.77 63.9476 L1844.77 70.8341 Q1841.65 72.2924 1838.29 73.0216 Q1834.97 73.7508 1831.2 73.7508 Q1820.95 73.7508 1814.91 67.3098 Q1808.88 60.8689 1808.88 49.9314 Q1808.88 38.832 1814.95 32.472 Q1821.07 26.1121 1831.68 26.1121 Q1835.13 26.1121 1838.41 26.8413 Q1841.69 27.5299 1844.77 28.9478 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip870)\" d=\"M1896.54 48.0275 L1896.54 51.6733 L1862.27 51.6733 Q1862.75 59.3701 1866.89 63.421 Q1871.06 67.4314 1878.47 67.4314 Q1882.77 67.4314 1886.78 66.3781 Q1890.83 65.3249 1894.8 63.2184 L1894.8 70.267 Q1890.79 71.9684 1886.57 72.8596 Q1882.36 73.7508 1878.03 73.7508 Q1867.17 73.7508 1860.81 67.4314 Q1854.49 61.1119 1854.49 50.3365 Q1854.49 39.1965 1860.49 32.6746 Q1866.52 26.1121 1876.73 26.1121 Q1885.89 26.1121 1891.19 32.0264 Q1896.54 37.9003 1896.54 48.0275 M1889.09 45.84 Q1889 39.7232 1885.64 36.0774 Q1882.32 32.4315 1876.81 32.4315 Q1870.57 32.4315 1866.81 35.9558 Q1863.08 39.4801 1862.51 45.8805 L1889.09 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip872)\" cx=\"265.903\" cy=\"868.692\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.381\" cy=\"934.086\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.381\" cy=\"577.144\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.496\" cy=\"612.565\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.332\" cy=\"536.272\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.439\" cy=\"740.629\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.77\" cy=\"898.665\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.051\" cy=\"784.225\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"270.57\" cy=\"1073.05\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.631\" cy=\"1007.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"270.88\" cy=\"1113.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.434\" cy=\"1007.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.895\" cy=\"931.362\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"280.1\" cy=\"966.784\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"280.287\" cy=\"1026.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"280.046\" cy=\"980.407\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"289.76\" cy=\"893.215\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"283.617\" cy=\"1045.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"284.039\" cy=\"972.233\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"282.287\" cy=\"1026.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"294.266\" cy=\"1152.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"285.162\" cy=\"988.582\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"293.826\" cy=\"1108.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"288.268\" cy=\"1127.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"282.845\" cy=\"1097.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"284.9\" cy=\"1143.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"281.06\" cy=\"1070.32\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"287.524\" cy=\"1119.37\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"283.362\" cy=\"1021.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"288.588\" cy=\"950.435\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"291.511\" cy=\"1176.59\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"296.61\" cy=\"1127.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"297.367\" cy=\"1162.97\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"291.987\" cy=\"1165.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"302.487\" cy=\"1154.79\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.22\" cy=\"1007.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.978\" cy=\"977.683\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.584\" cy=\"950.435\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.746\" cy=\"849.619\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.388\" cy=\"683.409\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.524\" cy=\"571.694\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.661\" cy=\"797.849\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.981\" cy=\"833.271\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.388\" cy=\"849.619\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.553\" cy=\"944.985\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.663\" cy=\"996.756\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"270.049\" cy=\"977.683\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"270.98\" cy=\"1070.32\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"271.54\" cy=\"1130.27\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"270.764\" cy=\"994.031\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.78\" cy=\"985.857\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.747\" cy=\"964.059\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.98\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.893\" cy=\"885.041\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.069\" cy=\"1007.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.058\" cy=\"558.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.227\" cy=\"849.619\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.085\" cy=\"661.611\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.276\" cy=\"887.766\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.111\" cy=\"988.582\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.16\" cy=\"1013.1\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.669\" cy=\"1086.67\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.27\" cy=\"917.738\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.64\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.203\" cy=\"623.465\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.575\" cy=\"882.316\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.756\" cy=\"994.031\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.077\" cy=\"923.187\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.846\" cy=\"1048.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.678\" cy=\"953.16\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.769\" cy=\"863.243\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.375\" cy=\"931.362\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.846\" cy=\"901.389\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"270.209\" cy=\"885.041\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.557\" cy=\"865.968\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.925\" cy=\"939.536\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.071\" cy=\"977.683\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.742\" cy=\"955.885\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.045\" cy=\"944.985\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.669\" cy=\"969.508\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.696\" cy=\"759.702\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.775\" cy=\"871.417\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.592\" cy=\"846.894\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.568\" cy=\"898.665\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.911\" cy=\"871.417\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.065\" cy=\"797.849\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.941\" cy=\"909.564\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.388\" cy=\"917.738\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.048\" cy=\"879.591\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.967\" cy=\"740.629\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.826\" cy=\"906.839\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.655\" cy=\"923.187\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.716\" cy=\"898.665\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.414\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.737\" cy=\"961.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.538\" cy=\"748.803\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.379\" cy=\"939.536\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.511\" cy=\"468.154\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.624\" cy=\"329.191\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.321\" cy=\"618.015\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.145\" cy=\"773.326\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.363\" cy=\"800.574\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"270.969\" cy=\"1015.83\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"270.578\" cy=\"996.756\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.938\" cy=\"974.958\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.779\" cy=\"991.306\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.658\" cy=\"991.306\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.746\" cy=\"966.784\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.675\" cy=\"983.132\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"271.763\" cy=\"994.031\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.217\" cy=\"931.362\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.056\" cy=\"901.389\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.567\" cy=\"1010.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"270.817\" cy=\"1013.1\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269\" cy=\"1018.55\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.661\" cy=\"1024\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.756\" cy=\"944.985\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.197\" cy=\"999.481\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.733\" cy=\"966.784\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.056\" cy=\"996.756\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.33\" cy=\"923.187\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.391\" cy=\"969.508\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.877\" cy=\"964.059\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.184\" cy=\"1051.25\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.002\" cy=\"1010.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.608\" cy=\"939.536\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"274.58\" cy=\"1094.85\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"271.661\" cy=\"1081.22\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"273.17\" cy=\"1032.18\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"285.827\" cy=\"1132.99\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"273.503\" cy=\"999.481\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"292.925\" cy=\"988.582\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"279.196\" cy=\"895.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"273.27\" cy=\"1021.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"287.989\" cy=\"1097.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"278.461\" cy=\"1029.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"273.107\" cy=\"1048.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"273.783\" cy=\"1056.7\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"271.448\" cy=\"1160.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"278.159\" cy=\"1037.63\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"272.384\" cy=\"1141.17\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"302.847\" cy=\"1130.27\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"341.388\" cy=\"1157.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"359.067\" cy=\"1097.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"329.061\" cy=\"1201.11\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"319.943\" cy=\"1146.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"314.835\" cy=\"1097.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"319.699\" cy=\"1124.82\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"318.842\" cy=\"1037.63\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"328.019\" cy=\"1103.02\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"303.484\" cy=\"936.811\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"299.834\" cy=\"988.582\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"291.414\" cy=\"1105.75\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"314.701\" cy=\"994.031\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"297.956\" cy=\"1059.43\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"346.26\" cy=\"1097.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"321.476\" cy=\"1165.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"293.623\" cy=\"397.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"296.339\" cy=\"860.518\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"298.211\" cy=\"887.766\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"294.759\" cy=\"786.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"299.084\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"307.519\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"300.351\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"316.823\" cy=\"904.114\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"332.346\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"311.536\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"306.756\" cy=\"874.142\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"318.145\" cy=\"874.142\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"321.541\" cy=\"915.013\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"293.255\" cy=\"1048.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"318.453\" cy=\"1002.21\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.928\" cy=\"893.215\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.849\" cy=\"879.591\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.683\" cy=\"906.839\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.277\" cy=\"721.556\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.358\" cy=\"890.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.995\" cy=\"852.344\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.272\" cy=\"707.932\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.075\" cy=\"509.025\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.259\" cy=\"438.181\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.328\" cy=\"536.272\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.832\" cy=\"489.952\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.038\" cy=\"637.088\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.651\" cy=\"803.298\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.136\" cy=\"716.106\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.035\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.553\" cy=\"650.712\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.624\" cy=\"710.657\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.665\" cy=\"571.694\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.824\" cy=\"514.474\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.333\" cy=\"691.583\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.732\" cy=\"530.823\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.257\" cy=\"675.235\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.087\" cy=\"729.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.074\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.673\" cy=\"615.29\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.822\" cy=\"697.033\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.617\" cy=\"579.868\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.477\" cy=\"571.694\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.164\" cy=\"626.189\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.544\" cy=\"865.968\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.255\" cy=\"370.062\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.558\" cy=\"201.128\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.217\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.866\" cy=\"906.839\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"270.99\" cy=\"857.793\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"271.498\" cy=\"909.564\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.853\" cy=\"857.793\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"275.681\" cy=\"977.683\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.732\" cy=\"931.362\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"274.317\" cy=\"996.756\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"270.705\" cy=\"912.288\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.959\" cy=\"756.977\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"272.353\" cy=\"876.867\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"270.269\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.798\" cy=\"887.766\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.356\" cy=\"740.629\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.28\" cy=\"936.811\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.361\" cy=\"895.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"273.914\" cy=\"795.124\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"275.044\" cy=\"931.362\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"279.959\" cy=\"773.326\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"279.757\" cy=\"702.482\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"272.94\" cy=\"301.944\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"277.759\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"274.461\" cy=\"498.126\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"275.15\" cy=\"661.611\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"272.55\" cy=\"250.173\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"275.82\" cy=\"664.336\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"277.988\" cy=\"860.518\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"276.302\" cy=\"658.886\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"278.86\" cy=\"386.411\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"273.308\" cy=\"206.577\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"275.959\" cy=\"732.455\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"273.284\" cy=\"868.692\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"277.614\" cy=\"838.72\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"277.415\" cy=\"664.336\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.637\" cy=\"876.867\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.866\" cy=\"887.766\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.339\" cy=\"923.187\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.176\" cy=\"974.958\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.102\" cy=\"917.738\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.664\" cy=\"876.867\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"270.452\" cy=\"1043.08\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"270.116\" cy=\"1018.55\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"273.498\" cy=\"860.518\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"270.236\" cy=\"964.059\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.503\" cy=\"855.069\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"270.103\" cy=\"808.748\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.954\" cy=\"857.793\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"270.635\" cy=\"846.894\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.631\" cy=\"716.106\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"274.161\" cy=\"356.439\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.857\" cy=\"925.912\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.567\" cy=\"953.16\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.109\" cy=\"323.742\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"279.685\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"280.869\" cy=\"541.722\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"280.713\" cy=\"702.482\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"278.059\" cy=\"601.666\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"277.922\" cy=\"348.264\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"277.604\" cy=\"192.953\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"284.552\" cy=\"677.96\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"278.286\" cy=\"528.098\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"283.103\" cy=\"901.389\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"283.652\" cy=\"686.134\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"278.929\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"278.068\" cy=\"337.365\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.824\" cy=\"958.609\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"272.572\" cy=\"947.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.451\" cy=\"835.995\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.369\" cy=\"857.793\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"270.812\" cy=\"563.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.044\" cy=\"639.813\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.946\" cy=\"650.712\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.143\" cy=\"618.015\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.154\" cy=\"620.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.576\" cy=\"729.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"270.55\" cy=\"566.245\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.574\" cy=\"285.595\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.603\" cy=\"558.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.155\" cy=\"269.246\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.101\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"265.965\" cy=\"645.263\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.009\" cy=\"923.187\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.207\" cy=\"974.958\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.641\" cy=\"890.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.804\" cy=\"915.013\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.738\" cy=\"846.894\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.557\" cy=\"746.078\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.555\" cy=\"506.3\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.582\" cy=\"762.427\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.641\" cy=\"871.417\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.626\" cy=\"931.362\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.704\" cy=\"743.354\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.983\" cy=\"784.225\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.971\" cy=\"969.508\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.232\" cy=\"909.564\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.026\" cy=\"732.455\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.765\" cy=\"846.894\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.565\" cy=\"923.187\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.869\" cy=\"803.298\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.036\" cy=\"620.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.015\" cy=\"538.997\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.007\" cy=\"748.803\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.468\" cy=\"612.565\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.882\" cy=\"754.253\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"276.986\" cy=\"901.389\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"273.716\" cy=\"969.508\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"325.776\" cy=\"1083.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"283.759\" cy=\"920.463\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"271.719\" cy=\"994.031\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"271.894\" cy=\"934.086\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"274.167\" cy=\"874.142\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"271.533\" cy=\"1081.22\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"273.007\" cy=\"1037.63\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"271.343\" cy=\"983.132\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"274.914\" cy=\"893.215\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"276.587\" cy=\"950.435\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.576\" cy=\"874.142\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.894\" cy=\"893.215\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"273.756\" cy=\"966.784\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"272.225\" cy=\"1018.55\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"273.527\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"270.128\" cy=\"852.344\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"272.67\" cy=\"895.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"271.248\" cy=\"917.738\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.266\" cy=\"996.756\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.29\" cy=\"906.839\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.794\" cy=\"983.132\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.903\" cy=\"1056.7\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.548\" cy=\"994.031\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.917\" cy=\"917.738\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.61\" cy=\"958.609\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.661\" cy=\"947.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.54\" cy=\"991.306\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.452\" cy=\"1018.55\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.512\" cy=\"961.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.011\" cy=\"1004.93\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.16\" cy=\"1013.1\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.055\" cy=\"631.639\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.328\" cy=\"1073.05\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.338\" cy=\"871.417\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.454\" cy=\"672.51\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.468\" cy=\"1045.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.162\" cy=\"1053.98\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.185\" cy=\"893.215\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.101\" cy=\"855.069\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.419\" cy=\"797.849\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.174\" cy=\"898.665\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.57\" cy=\"865.968\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.409\" cy=\"1015.83\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.148\" cy=\"702.482\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.739\" cy=\"1026.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.186\" cy=\"961.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"470.324\" cy=\"1037.63\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"353.427\" cy=\"931.362\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"384.217\" cy=\"904.114\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"362.8\" cy=\"906.839\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"369.19\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"353.134\" cy=\"980.407\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"349.522\" cy=\"955.885\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"361.914\" cy=\"1064.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"344.877\" cy=\"925.912\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"369.508\" cy=\"773.326\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"349.948\" cy=\"925.912\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"573.694\" cy=\"893.215\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"377.304\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"394.879\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"414.663\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"476.002\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"454.026\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"518.719\" cy=\"1146.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"687.01\" cy=\"1146.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"712.308\" cy=\"1113.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"613.906\" cy=\"1143.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"489.465\" cy=\"1160.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"804.289\" cy=\"1165.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"672.629\" cy=\"1244.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"2291.97\" cy=\"1239.26\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"627.26\" cy=\"1225.64\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"474.971\" cy=\"1214.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"447.768\" cy=\"1187.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"723.143\" cy=\"1282.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"648.607\" cy=\"1326.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"821.268\" cy=\"1236.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"780.353\" cy=\"1321\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"592.174\" cy=\"1244.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"451.395\" cy=\"1209.29\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"424.305\" cy=\"1111.2\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"386.295\" cy=\"890.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"529.417\" cy=\"1258.33\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"462.622\" cy=\"1146.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"569.996\" cy=\"1176.59\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"464.262\" cy=\"1165.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"399.481\" cy=\"1182.04\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"440.471\" cy=\"1291.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"1139.13\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"491.584\" cy=\"1350.97\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"836.123\" cy=\"1370.05\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"589.954\" cy=\"1326.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"484.278\" cy=\"1192.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"830.557\" cy=\"1296.48\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"1211.48\" cy=\"1291.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"1812.49\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"737.52\" cy=\"1198.39\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"537.916\" cy=\"762.427\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"434.365\" cy=\"1053.98\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"594.556\" cy=\"773.326\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"1430.25\" cy=\"1113.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"585.729\" cy=\"1053.98\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"694.134\" cy=\"1034.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"918.325\" cy=\"1078.5\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"1307.51\" cy=\"1331.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"677.592\" cy=\"1326.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"512.481\" cy=\"1318.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"856.493\" cy=\"1239.26\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"1940.32\" cy=\"1282.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"534.755\" cy=\"1293.75\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"518.247\" cy=\"1067.6\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"425.681\" cy=\"1135.72\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"540.127\" cy=\"955.885\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"426.315\" cy=\"1157.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"465.978\" cy=\"1203.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"626.939\" cy=\"1296.48\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"544.659\" cy=\"1244.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"1123.42\" cy=\"1225.64\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"433.527\" cy=\"1222.91\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"478.429\" cy=\"1263.78\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"459.147\" cy=\"1127.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"494.903\" cy=\"1138.44\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"412.507\" cy=\"1083.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"392.854\" cy=\"1132.99\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"582.603\" cy=\"1203.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"519.91\" cy=\"1157.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"594.158\" cy=\"1261.06\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"611.383\" cy=\"1285.58\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"577.244\" cy=\"1293.75\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"479.608\" cy=\"1173.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"767.919\" cy=\"1236.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"487.204\" cy=\"1056.7\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"394.797\" cy=\"1021.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"492.723\" cy=\"1103.02\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"557.3\" cy=\"1228.36\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"508.783\" cy=\"1201.11\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"408.955\" cy=\"1116.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"491.773\" cy=\"1179.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"478.206\" cy=\"1138.44\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"437.146\" cy=\"1168.42\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"418.739\" cy=\"1157.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"389.668\" cy=\"1108.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"381.675\" cy=\"1083.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"453.589\" cy=\"1037.63\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"482.409\" cy=\"1116.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"373.983\" cy=\"1138.44\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"372.08\" cy=\"1176.59\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"452.507\" cy=\"1154.79\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"442.297\" cy=\"1116.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"420.639\" cy=\"977.683\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"375.344\" cy=\"1075.77\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"349.861\" cy=\"1040.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"417.309\" cy=\"991.306\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"398.322\" cy=\"972.233\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"444.28\" cy=\"939.536\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"337.802\" cy=\"980.407\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"351.725\" cy=\"1004.93\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"366.466\" cy=\"1002.21\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"620.458\" cy=\"1002.21\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"563.512\" cy=\"974.958\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"364.792\" cy=\"980.407\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"357.724\" cy=\"988.582\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"347.027\" cy=\"890.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"371.581\" cy=\"710.657\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"449.21\" cy=\"1146.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"411.347\" cy=\"1160.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"376.694\" cy=\"1067.6\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"607.88\" cy=\"1195.66\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"498.791\" cy=\"1124.82\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"592.174\" cy=\"939.536\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"398.387\" cy=\"895.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"395.749\" cy=\"876.867\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"396.272\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"329.941\" cy=\"928.637\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"319.925\" cy=\"961.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"349.418\" cy=\"944.985\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"395.375\" cy=\"1002.21\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"375.88\" cy=\"961.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.195\" cy=\"1108.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.935\" cy=\"1331.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"270.484\" cy=\"1301.93\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.167\" cy=\"1152.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.294\" cy=\"974.958\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.706\" cy=\"928.637\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"272.126\" cy=\"855.069\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.835\" cy=\"893.215\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"272.354\" cy=\"985.857\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"271.871\" cy=\"1024\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"271.205\" cy=\"944.985\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"269.809\" cy=\"1045.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"270.869\" cy=\"1064.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.185\" cy=\"912.288\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.79\" cy=\"961.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"267.143\" cy=\"871.417\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"268.255\" cy=\"923.187\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip872)\" cx=\"266.839\" cy=\"1198.39\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"</svg>\n"
]
},
"execution_count": 24,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# correlation plot \n",
"\n",
"train_plot = scatter(df.CRIM,df.SalePrice, title = \"Scatter Plot CRIM vs SalePrice\", ylabel = \"CRIM\", xlabel = \"SalePrice\",legend = false)"
]
},
{
"cell_type": "code",
"execution_count": 25,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip910\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip910)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip911\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip910)\" d=\"\n",
"M205.121 1423.18 L2352.76 1423.18 L2352.76 123.472 L205.121 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip912\">\n",
" <rect x=\"205\" y=\"123\" width=\"2149\" height=\"1301\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip912)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 231.739,1423.18 231.739,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip912)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 603.086,1423.18 603.086,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip912)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 974.434,1423.18 974.434,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip912)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1345.78,1423.18 1345.78,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip912)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1717.13,1423.18 1717.13,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip912)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2088.48,1423.18 2088.48,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,1423.18 2352.76,1423.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 231.739,1423.18 231.739,1404.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 603.086,1423.18 603.086,1404.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 974.434,1423.18 974.434,1404.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1345.78,1423.18 1345.78,1404.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1717.13,1423.18 1717.13,1404.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2088.48,1423.18 2088.48,1404.28 \n",
" \"/>\n",
"<path clip-path=\"url(#clip910)\" d=\"M231.739 1452.37 Q228.128 1452.37 226.299 1455.94 Q224.494 1459.48 224.494 1466.61 Q224.494 1473.71 226.299 1477.28 Q228.128 1480.82 231.739 1480.82 Q235.373 1480.82 237.179 1477.28 Q239.008 1473.71 239.008 1466.61 Q239.008 1459.48 237.179 1455.94 Q235.373 1452.37 231.739 1452.37 M231.739 1448.67 Q237.549 1448.67 240.605 1453.27 Q243.684 1457.86 243.684 1466.61 Q243.684 1475.33 240.605 1479.94 Q237.549 1484.52 231.739 1484.52 Q225.929 1484.52 222.85 1479.94 Q219.795 1475.33 219.795 1466.61 Q219.795 1457.86 222.85 1453.27 Q225.929 1448.67 231.739 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M593.364 1449.29 L611.721 1449.29 L611.721 1453.23 L597.647 1453.23 L597.647 1461.7 Q598.665 1461.35 599.684 1461.19 Q600.702 1461 601.721 1461 Q607.508 1461 610.887 1464.18 Q614.267 1467.35 614.267 1472.76 Q614.267 1478.34 610.795 1481.44 Q607.323 1484.52 601.003 1484.52 Q598.827 1484.52 596.559 1484.15 Q594.313 1483.78 591.906 1483.04 L591.906 1478.34 Q593.989 1479.48 596.211 1480.03 Q598.434 1480.59 600.91 1480.59 Q604.915 1480.59 607.253 1478.48 Q609.591 1476.38 609.591 1472.76 Q609.591 1469.15 607.253 1467.05 Q604.915 1464.94 600.91 1464.94 Q599.036 1464.94 597.161 1465.36 Q595.309 1465.77 593.364 1466.65 L593.364 1449.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M949.121 1479.92 L956.76 1479.92 L956.76 1453.55 L948.45 1455.22 L948.45 1450.96 L956.714 1449.29 L961.39 1449.29 L961.39 1479.92 L969.029 1479.92 L969.029 1483.85 L949.121 1483.85 L949.121 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M988.473 1452.37 Q984.862 1452.37 983.033 1455.94 Q981.228 1459.48 981.228 1466.61 Q981.228 1473.71 983.033 1477.28 Q984.862 1480.82 988.473 1480.82 Q992.107 1480.82 993.913 1477.28 Q995.741 1473.71 995.741 1466.61 Q995.741 1459.48 993.913 1455.94 Q992.107 1452.37 988.473 1452.37 M988.473 1448.67 Q994.283 1448.67 997.339 1453.27 Q1000.42 1457.86 1000.42 1466.61 Q1000.42 1475.33 997.339 1479.94 Q994.283 1484.52 988.473 1484.52 Q982.663 1484.52 979.584 1479.94 Q976.529 1475.33 976.529 1466.61 Q976.529 1457.86 979.584 1453.27 Q982.663 1448.67 988.473 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1320.97 1479.92 L1328.61 1479.92 L1328.61 1453.55 L1320.29 1455.22 L1320.29 1450.96 L1328.56 1449.29 L1333.23 1449.29 L1333.23 1479.92 L1340.87 1479.92 L1340.87 1483.85 L1320.97 1483.85 L1320.97 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1350.36 1449.29 L1368.72 1449.29 L1368.72 1453.23 L1354.65 1453.23 L1354.65 1461.7 Q1355.67 1461.35 1356.68 1461.19 Q1357.7 1461 1358.72 1461 Q1364.51 1461 1367.89 1464.18 Q1371.27 1467.35 1371.27 1472.76 Q1371.27 1478.34 1367.79 1481.44 Q1364.32 1484.52 1358 1484.52 Q1355.83 1484.52 1353.56 1484.15 Q1351.31 1483.78 1348.91 1483.04 L1348.91 1478.34 Q1350.99 1479.48 1353.21 1480.03 Q1355.43 1480.59 1357.91 1480.59 Q1361.92 1480.59 1364.25 1478.48 Q1366.59 1476.38 1366.59 1472.76 Q1366.59 1469.15 1364.25 1467.05 Q1361.92 1464.94 1357.91 1464.94 Q1356.04 1464.94 1354.16 1465.36 Q1352.31 1465.77 1350.36 1466.65 L1350.36 1449.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1695.9 1479.92 L1712.22 1479.92 L1712.22 1483.85 L1690.28 1483.85 L1690.28 1479.92 Q1692.94 1477.16 1697.52 1472.53 Q1702.13 1467.88 1703.31 1466.54 Q1705.55 1464.01 1706.43 1462.28 Q1707.34 1460.52 1707.34 1458.83 Q1707.34 1456.07 1705.39 1454.34 Q1703.47 1452.6 1700.37 1452.6 Q1698.17 1452.6 1695.72 1453.37 Q1693.29 1454.13 1690.51 1455.68 L1690.51 1450.96 Q1693.33 1449.82 1695.79 1449.25 Q1698.24 1448.67 1700.28 1448.67 Q1705.65 1448.67 1708.84 1451.35 Q1712.04 1454.04 1712.04 1458.53 Q1712.04 1460.66 1711.23 1462.58 Q1710.44 1464.48 1708.33 1467.07 Q1707.75 1467.74 1704.65 1470.96 Q1701.55 1474.15 1695.9 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1732.04 1452.37 Q1728.42 1452.37 1726.6 1455.94 Q1724.79 1459.48 1724.79 1466.61 Q1724.79 1473.71 1726.6 1477.28 Q1728.42 1480.82 1732.04 1480.82 Q1735.67 1480.82 1737.48 1477.28 Q1739.3 1473.71 1739.3 1466.61 Q1739.3 1459.48 1737.48 1455.94 Q1735.67 1452.37 1732.04 1452.37 M1732.04 1448.67 Q1737.85 1448.67 1740.9 1453.27 Q1743.98 1457.86 1743.98 1466.61 Q1743.98 1475.33 1740.9 1479.94 Q1737.85 1484.52 1732.04 1484.52 Q1726.23 1484.52 1723.15 1479.94 Q1720.09 1475.33 1720.09 1466.61 Q1720.09 1457.86 1723.15 1453.27 Q1726.23 1448.67 1732.04 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M2067.75 1479.92 L2084.07 1479.92 L2084.07 1483.85 L2062.12 1483.85 L2062.12 1479.92 Q2064.78 1477.16 2069.37 1472.53 Q2073.97 1467.88 2075.15 1466.54 Q2077.4 1464.01 2078.28 1462.28 Q2079.18 1460.52 2079.18 1458.83 Q2079.18 1456.07 2077.24 1454.34 Q2075.32 1452.6 2072.21 1452.6 Q2070.01 1452.6 2067.56 1453.37 Q2065.13 1454.13 2062.35 1455.68 L2062.35 1450.96 Q2065.18 1449.82 2067.63 1449.25 Q2070.08 1448.67 2072.12 1448.67 Q2077.49 1448.67 2080.69 1451.35 Q2083.88 1454.04 2083.88 1458.53 Q2083.88 1460.66 2083.07 1462.58 Q2082.28 1464.48 2080.18 1467.07 Q2079.6 1467.74 2076.5 1470.96 Q2073.39 1474.15 2067.75 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M2093.93 1449.29 L2112.28 1449.29 L2112.28 1453.23 L2098.21 1453.23 L2098.21 1461.7 Q2099.23 1461.35 2100.25 1461.19 Q2101.26 1461 2102.28 1461 Q2108.07 1461 2111.45 1464.18 Q2114.83 1467.35 2114.83 1472.76 Q2114.83 1478.34 2111.36 1481.44 Q2107.89 1484.52 2101.57 1484.52 Q2099.39 1484.52 2097.12 1484.15 Q2094.88 1483.78 2092.47 1483.04 L2092.47 1478.34 Q2094.55 1479.48 2096.77 1480.03 Q2099 1480.59 2101.47 1480.59 Q2105.48 1480.59 2107.82 1478.48 Q2110.15 1476.38 2110.15 1472.76 Q2110.15 1469.15 2107.82 1467.05 Q2105.48 1464.94 2101.47 1464.94 Q2099.6 1464.94 2097.72 1465.36 Q2095.87 1465.77 2093.93 1466.65 L2093.93 1449.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1164.13 1522.08 L1164.13 1528.35 Q1160.47 1526.6 1157.23 1525.74 Q1153.98 1524.88 1150.96 1524.88 Q1145.7 1524.88 1142.84 1526.92 Q1140.01 1528.96 1140.01 1532.71 Q1140.01 1535.87 1141.88 1537.49 Q1143.79 1539.08 1149.08 1540.07 L1152.96 1540.86 Q1160.15 1542.23 1163.56 1545.7 Q1167 1549.14 1167 1554.93 Q1167 1561.84 1162.35 1565.4 Q1157.74 1568.97 1148.79 1568.97 Q1145.42 1568.97 1141.6 1568.2 Q1137.81 1567.44 1133.74 1565.94 L1133.74 1559.32 Q1137.65 1561.52 1141.41 1562.63 Q1145.16 1563.75 1148.79 1563.75 Q1154.3 1563.75 1157.29 1561.58 Q1160.28 1559.42 1160.28 1555.41 Q1160.28 1551.91 1158.12 1549.93 Q1155.98 1547.96 1151.08 1546.97 L1147.17 1546.21 Q1139.98 1544.78 1136.76 1541.72 Q1133.55 1538.67 1133.55 1533.22 Q1133.55 1526.92 1137.97 1523.29 Q1142.43 1519.66 1150.22 1519.66 Q1153.57 1519.66 1157.04 1520.27 Q1160.5 1520.87 1164.13 1522.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1192.97 1550.12 Q1185.87 1550.12 1183.13 1551.75 Q1180.4 1553.37 1180.4 1557.29 Q1180.4 1560.4 1182.43 1562.25 Q1184.5 1564.07 1188.04 1564.07 Q1192.91 1564.07 1195.83 1560.63 Q1198.79 1557.16 1198.79 1551.43 L1198.79 1550.12 L1192.97 1550.12 M1204.65 1547.71 L1204.65 1568.04 L1198.79 1568.04 L1198.79 1562.63 Q1196.79 1565.88 1193.8 1567.44 Q1190.81 1568.97 1186.48 1568.97 Q1181 1568.97 1177.76 1565.91 Q1174.54 1562.82 1174.54 1557.67 Q1174.54 1551.65 1178.55 1548.6 Q1182.59 1545.54 1190.58 1545.54 L1198.79 1545.54 L1198.79 1544.97 Q1198.79 1540.93 1196.12 1538.73 Q1193.48 1536.5 1188.67 1536.5 Q1185.62 1536.5 1182.72 1537.23 Q1179.82 1537.97 1177.15 1539.43 L1177.15 1534.02 Q1180.37 1532.78 1183.39 1532.17 Q1186.41 1531.54 1189.28 1531.54 Q1197.01 1531.54 1200.83 1535.55 Q1204.65 1539.56 1204.65 1547.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1216.71 1518.52 L1222.57 1518.52 L1222.57 1568.04 L1216.71 1568.04 L1216.71 1518.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1265.32 1548.76 L1265.32 1551.62 L1238.39 1551.62 Q1238.77 1557.67 1242.02 1560.85 Q1245.3 1564 1251.12 1564 Q1254.49 1564 1257.65 1563.17 Q1260.83 1562.35 1263.95 1560.69 L1263.95 1566.23 Q1260.8 1567.57 1257.49 1568.27 Q1254.18 1568.97 1250.77 1568.97 Q1242.24 1568.97 1237.24 1564 Q1232.28 1559.04 1232.28 1550.57 Q1232.28 1541.82 1236.99 1536.69 Q1241.73 1531.54 1249.75 1531.54 Q1256.94 1531.54 1261.11 1536.18 Q1265.32 1540.8 1265.32 1548.76 M1259.46 1547.04 Q1259.4 1542.23 1256.75 1539.37 Q1254.14 1536.5 1249.82 1536.5 Q1244.91 1536.5 1241.95 1539.27 Q1239.03 1542.04 1238.58 1547.07 L1259.46 1547.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1281.61 1525.81 L1281.61 1543.66 L1289.7 1543.66 Q1294.18 1543.66 1296.64 1541.34 Q1299.09 1539.02 1299.09 1534.72 Q1299.09 1530.45 1296.64 1528.13 Q1294.18 1525.81 1289.7 1525.81 L1281.61 1525.81 M1275.18 1520.52 L1289.7 1520.52 Q1297.69 1520.52 1301.76 1524.15 Q1305.87 1527.75 1305.87 1534.72 Q1305.87 1541.75 1301.76 1545.35 Q1297.69 1548.95 1289.7 1548.95 L1281.61 1548.95 L1281.61 1568.04 L1275.18 1568.04 L1275.18 1520.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1333.75 1537.87 Q1332.76 1537.3 1331.58 1537.04 Q1330.44 1536.76 1329.04 1536.76 Q1324.07 1536.76 1321.4 1540 Q1318.76 1543.22 1318.76 1549.27 L1318.76 1568.04 L1312.87 1568.04 L1312.87 1532.4 L1318.76 1532.4 L1318.76 1537.93 Q1320.6 1534.69 1323.56 1533.13 Q1326.52 1531.54 1330.76 1531.54 Q1331.36 1531.54 1332.09 1531.63 Q1332.82 1531.7 1333.72 1531.85 L1333.75 1537.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1339.89 1532.4 L1345.75 1532.4 L1345.75 1568.04 L1339.89 1568.04 L1339.89 1532.4 M1339.89 1518.52 L1345.75 1518.52 L1345.75 1525.93 L1339.89 1525.93 L1339.89 1518.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1383.65 1533.76 L1383.65 1539.24 Q1381.17 1537.87 1378.66 1537.2 Q1376.17 1536.5 1373.63 1536.5 Q1367.93 1536.5 1364.78 1540.13 Q1361.63 1543.73 1361.63 1550.25 Q1361.63 1556.78 1364.78 1560.4 Q1367.93 1564 1373.63 1564 Q1376.17 1564 1378.66 1563.33 Q1381.17 1562.63 1383.65 1561.26 L1383.65 1566.68 Q1381.2 1567.82 1378.56 1568.39 Q1375.95 1568.97 1372.99 1568.97 Q1364.94 1568.97 1360.2 1563.91 Q1355.45 1558.85 1355.45 1550.25 Q1355.45 1541.53 1360.23 1536.53 Q1365.03 1531.54 1373.37 1531.54 Q1376.08 1531.54 1378.66 1532.11 Q1381.24 1532.65 1383.65 1533.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1424.33 1548.76 L1424.33 1551.62 L1397.4 1551.62 Q1397.79 1557.67 1401.03 1560.85 Q1404.31 1564 1410.14 1564 Q1413.51 1564 1416.66 1563.17 Q1419.84 1562.35 1422.96 1560.69 L1422.96 1566.23 Q1419.81 1567.57 1416.5 1568.27 Q1413.19 1568.97 1409.79 1568.97 Q1401.26 1568.97 1396.26 1564 Q1391.29 1559.04 1391.29 1550.57 Q1391.29 1541.82 1396 1536.69 Q1400.75 1531.54 1408.77 1531.54 Q1415.96 1531.54 1420.13 1536.18 Q1424.33 1540.8 1424.33 1548.76 M1418.47 1547.04 Q1418.41 1542.23 1415.77 1539.37 Q1413.16 1536.5 1408.83 1536.5 Q1403.93 1536.5 1400.97 1539.27 Q1398.04 1542.04 1397.6 1547.07 L1418.47 1547.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip912)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 205.121,1250.16 2352.76,1250.16 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip912)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 205.121,977.683 2352.76,977.683 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip912)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 205.121,705.207 2352.76,705.207 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip912)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 205.121,432.732 2352.76,432.732 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip912)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 205.121,160.256 2352.76,160.256 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,1423.18 205.121,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,1250.16 224.019,1250.16 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,977.683 224.019,977.683 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,705.207 224.019,705.207 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,432.732 224.019,432.732 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip910)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,160.256 224.019,160.256 \n",
" \"/>\n",
"<path clip-path=\"url(#clip910)\" d=\"M117.825 1263.5 L125.464 1263.5 L125.464 1237.14 L117.154 1238.8 L117.154 1234.54 L125.418 1232.88 L130.093 1232.88 L130.093 1263.5 L137.732 1263.5 L137.732 1267.44 L117.825 1267.44 L117.825 1263.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M157.177 1235.96 Q153.566 1235.96 151.737 1239.52 Q149.931 1243.06 149.931 1250.19 Q149.931 1257.3 151.737 1260.86 Q153.566 1264.41 157.177 1264.41 Q160.811 1264.41 162.616 1260.86 Q164.445 1257.3 164.445 1250.19 Q164.445 1243.06 162.616 1239.52 Q160.811 1235.96 157.177 1235.96 M157.177 1232.25 Q162.987 1232.25 166.042 1236.86 Q169.121 1241.44 169.121 1250.19 Q169.121 1258.92 166.042 1263.53 Q162.987 1268.11 157.177 1268.11 Q151.366 1268.11 148.288 1263.53 Q145.232 1258.92 145.232 1250.19 Q145.232 1241.44 148.288 1236.86 Q151.366 1232.25 157.177 1232.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M121.043 991.027 L137.362 991.027 L137.362 994.963 L115.418 994.963 L115.418 991.027 Q118.08 988.273 122.663 983.643 Q127.269 978.99 128.45 977.648 Q130.695 975.125 131.575 973.389 Q132.478 971.629 132.478 969.94 Q132.478 967.185 130.533 965.449 Q128.612 963.713 125.51 963.713 Q123.311 963.713 120.857 964.477 Q118.427 965.24 115.649 966.791 L115.649 962.069 Q118.473 960.935 120.927 960.356 Q123.38 959.778 125.418 959.778 Q130.788 959.778 133.982 962.463 Q137.177 965.148 137.177 969.639 Q137.177 971.768 136.367 973.69 Q135.579 975.588 133.473 978.18 Q132.894 978.852 129.792 982.069 Q126.691 985.264 121.043 991.027 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M157.177 963.481 Q153.566 963.481 151.737 967.046 Q149.931 970.588 149.931 977.717 Q149.931 984.824 151.737 988.389 Q153.566 991.93 157.177 991.93 Q160.811 991.93 162.616 988.389 Q164.445 984.824 164.445 977.717 Q164.445 970.588 162.616 967.046 Q160.811 963.481 157.177 963.481 M157.177 959.778 Q162.987 959.778 166.042 964.384 Q169.121 968.967 169.121 977.717 Q169.121 986.444 166.042 991.051 Q162.987 995.634 157.177 995.634 Q151.366 995.634 148.288 991.051 Q145.232 986.444 145.232 977.717 Q145.232 968.967 148.288 964.384 Q151.366 959.778 157.177 959.778 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M131.181 703.853 Q134.538 704.571 136.413 706.839 Q138.311 709.108 138.311 712.441 Q138.311 717.557 134.792 720.358 Q131.274 723.158 124.793 723.158 Q122.617 723.158 120.302 722.719 Q118.01 722.302 115.556 721.445 L115.556 716.932 Q117.501 718.066 119.816 718.645 Q122.13 719.223 124.654 719.223 Q129.052 719.223 131.343 717.487 Q133.658 715.751 133.658 712.441 Q133.658 709.385 131.505 707.672 Q129.376 705.936 125.556 705.936 L121.529 705.936 L121.529 702.094 L125.742 702.094 Q129.191 702.094 131.019 700.728 Q132.848 699.339 132.848 696.747 Q132.848 694.085 130.95 692.672 Q129.075 691.237 125.556 691.237 Q123.635 691.237 121.436 691.654 Q119.237 692.071 116.598 692.95 L116.598 688.784 Q119.26 688.043 121.575 687.673 Q123.913 687.302 125.973 687.302 Q131.297 687.302 134.399 689.733 Q137.501 692.14 137.501 696.26 Q137.501 699.131 135.857 701.122 Q134.214 703.089 131.181 703.853 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M157.177 691.006 Q153.566 691.006 151.737 694.571 Q149.931 698.112 149.931 705.242 Q149.931 712.348 151.737 715.913 Q153.566 719.455 157.177 719.455 Q160.811 719.455 162.616 715.913 Q164.445 712.348 164.445 705.242 Q164.445 698.112 162.616 694.571 Q160.811 691.006 157.177 691.006 M157.177 687.302 Q162.987 687.302 166.042 691.909 Q169.121 696.492 169.121 705.242 Q169.121 713.969 166.042 718.575 Q162.987 723.158 157.177 723.158 Q151.366 723.158 148.288 718.575 Q145.232 713.969 145.232 705.242 Q145.232 696.492 148.288 691.909 Q151.366 687.302 157.177 687.302 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M129.862 419.526 L118.056 437.975 L129.862 437.975 L129.862 419.526 M128.635 415.452 L134.515 415.452 L134.515 437.975 L139.445 437.975 L139.445 441.864 L134.515 441.864 L134.515 450.012 L129.862 450.012 L129.862 441.864 L114.26 441.864 L114.26 437.35 L128.635 415.452 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M157.177 418.53 Q153.566 418.53 151.737 422.095 Q149.931 425.637 149.931 432.766 Q149.931 439.873 151.737 443.438 Q153.566 446.979 157.177 446.979 Q160.811 446.979 162.616 443.438 Q164.445 439.873 164.445 432.766 Q164.445 425.637 162.616 422.095 Q160.811 418.53 157.177 418.53 M157.177 414.827 Q162.987 414.827 166.042 419.433 Q169.121 424.016 169.121 432.766 Q169.121 441.493 166.042 446.1 Q162.987 450.683 157.177 450.683 Q151.366 450.683 148.288 446.1 Q145.232 441.493 145.232 432.766 Q145.232 424.016 148.288 419.433 Q151.366 414.827 157.177 414.827 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M117.061 142.976 L135.417 142.976 L135.417 146.911 L121.343 146.911 L121.343 155.384 Q122.362 155.036 123.38 154.874 Q124.399 154.689 125.418 154.689 Q131.205 154.689 134.584 157.86 Q137.964 161.032 137.964 166.448 Q137.964 172.027 134.492 175.129 Q131.019 178.208 124.7 178.208 Q122.524 178.208 120.255 177.837 Q118.01 177.467 115.603 176.726 L115.603 172.027 Q117.686 173.161 119.908 173.717 Q122.13 174.272 124.607 174.272 Q128.612 174.272 130.95 172.166 Q133.288 170.059 133.288 166.448 Q133.288 162.837 130.95 160.731 Q128.612 158.624 124.607 158.624 Q122.732 158.624 120.857 159.041 Q119.006 159.458 117.061 160.337 L117.061 142.976 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M157.177 146.055 Q153.566 146.055 151.737 149.62 Q149.931 153.161 149.931 160.291 Q149.931 167.397 151.737 170.962 Q153.566 174.504 157.177 174.504 Q160.811 174.504 162.616 170.962 Q164.445 167.397 164.445 160.291 Q164.445 153.161 162.616 149.62 Q160.811 146.055 157.177 146.055 M157.177 142.351 Q162.987 142.351 166.042 146.958 Q169.121 151.541 169.121 160.291 Q169.121 169.018 166.042 173.624 Q162.987 178.208 157.177 178.208 Q151.366 178.208 148.288 173.624 Q145.232 169.018 145.232 160.291 Q145.232 151.541 148.288 146.958 Q151.366 142.351 157.177 142.351 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M16.4842 871.947 L16.4842 865.517 L64.0042 865.517 L64.0042 871.947 L16.4842 871.947 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M16.4842 852.722 L16.4842 844.065 L56.238 822.994 L16.4842 822.994 L16.4842 816.756 L64.0042 816.756 L64.0042 825.413 L24.2503 846.484 L64.0042 846.484 L64.0042 852.722 L16.4842 852.722 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M21.7677 797.532 L58.7206 797.532 L58.7206 789.765 Q58.7206 779.93 54.2646 775.379 Q49.8086 770.796 40.1964 770.796 Q30.6479 770.796 26.2237 775.379 Q21.7677 779.93 21.7677 789.765 L21.7677 797.532 M16.4842 803.961 L16.4842 790.752 Q16.4842 776.939 22.2451 770.477 Q27.9743 764.016 40.1964 764.016 Q52.4822 764.016 58.2432 770.509 Q64.0042 777.002 64.0042 790.752 L64.0042 803.961 L16.4842 803.961 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M16.4842 754.499 L16.4842 748.038 L45.3526 748.038 Q52.9915 748.038 56.3653 745.269 Q59.7073 742.5 59.7073 736.293 Q59.7073 730.119 56.3653 727.35 Q52.9915 724.581 45.3526 724.581 L16.4842 724.581 L16.4842 718.119 L46.1484 718.119 Q55.4423 718.119 60.1847 722.735 Q64.9272 727.318 64.9272 736.293 Q64.9272 745.301 60.1847 749.916 Q55.4423 754.499 46.1484 754.499 L16.4842 754.499 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M18.0438 677.57 L24.314 677.57 Q22.5634 681.23 21.704 684.477 Q20.8447 687.723 20.8447 690.747 Q20.8447 695.999 22.8817 698.863 Q24.9187 701.696 28.6745 701.696 Q31.8255 701.696 33.4488 699.818 Q35.0402 697.908 36.0269 692.625 L36.8226 688.742 Q38.1912 681.548 41.6605 678.143 Q45.098 674.705 50.8908 674.705 Q57.7976 674.705 61.3624 679.352 Q64.9272 683.967 64.9272 692.911 Q64.9272 696.285 64.1633 700.104 Q63.3994 703.892 61.9035 707.966 L55.2831 707.966 Q57.4793 704.051 58.5933 700.295 Q59.7073 696.54 59.7073 692.911 Q59.7073 687.405 57.543 684.413 Q55.3786 681.421 51.3682 681.421 Q47.8671 681.421 45.8937 683.585 Q43.9204 685.718 42.9337 690.62 L42.1698 694.534 Q40.7375 701.728 37.682 704.942 Q34.6264 708.157 29.1837 708.157 Q22.8817 708.157 19.2532 703.733 Q15.6248 699.277 15.6248 691.479 Q15.6248 688.137 16.2295 684.668 Q16.8343 681.198 18.0438 677.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M674.179 14.0809 L674.179 22.0612 Q669.52 19.8332 665.388 18.7395 Q661.257 17.6457 657.408 17.6457 Q650.724 17.6457 647.078 20.2383 Q643.473 22.8309 643.473 27.611 Q643.473 31.6214 645.863 33.6873 Q648.294 35.7128 655.018 36.9686 L659.96 37.9813 Q669.115 39.7232 673.45 44.1387 Q677.825 48.5136 677.825 55.8863 Q677.825 64.6767 671.91 69.2137 Q666.037 73.7508 654.654 73.7508 Q650.36 73.7508 645.499 72.7785 Q640.678 71.8063 635.493 69.9024 L635.493 61.4765 Q640.475 64.2716 645.255 65.6895 Q650.036 67.1073 654.654 67.1073 Q661.662 67.1073 665.47 64.3527 Q669.277 61.598 669.277 56.4939 Q669.277 52.0379 666.523 49.5264 Q663.809 47.0148 657.57 45.759 L652.588 44.7868 Q643.433 42.9639 639.341 39.075 Q635.25 35.1862 635.25 28.2591 Q635.25 20.2383 640.881 15.6203 Q646.552 11.0023 656.476 11.0023 Q660.73 11.0023 665.145 11.7719 Q669.561 12.5416 674.179 14.0809 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M722.911 28.9478 L722.911 35.9153 Q719.752 34.1734 716.551 33.3227 Q713.392 32.4315 710.151 32.4315 Q702.9 32.4315 698.889 37.0496 Q694.879 41.6271 694.879 49.9314 Q694.879 58.2358 698.889 62.8538 Q702.9 67.4314 710.151 67.4314 Q713.392 67.4314 716.551 66.5807 Q719.752 65.6895 722.911 63.9476 L722.911 70.8341 Q719.792 72.2924 716.43 73.0216 Q713.108 73.7508 709.341 73.7508 Q699.092 73.7508 693.056 67.3098 Q687.02 60.8689 687.02 49.9314 Q687.02 38.832 693.097 32.472 Q699.214 26.1121 709.827 26.1121 Q713.27 26.1121 716.551 26.8413 Q719.833 27.5299 722.911 28.9478 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M756.493 49.7694 Q747.46 49.7694 743.976 51.8354 Q740.492 53.9013 740.492 58.8839 Q740.492 62.8538 743.085 65.2034 Q745.718 67.5124 750.214 67.5124 Q756.412 67.5124 760.139 63.1374 Q763.906 58.7219 763.906 51.4303 L763.906 49.7694 L756.493 49.7694 M771.36 46.6907 L771.36 72.576 L763.906 72.576 L763.906 65.6895 Q761.354 69.8214 757.547 71.8063 Q753.739 73.7508 748.229 73.7508 Q741.262 73.7508 737.13 69.8619 Q733.039 65.9325 733.039 59.3701 Q733.039 51.7138 738.143 47.825 Q743.287 43.9361 753.455 43.9361 L763.906 43.9361 L763.906 43.2069 Q763.906 38.0623 760.504 35.2672 Q757.141 32.4315 751.025 32.4315 Q747.136 32.4315 743.449 33.3632 Q739.763 34.295 736.36 36.1584 L736.36 29.2718 Q740.452 27.692 744.3 26.9223 Q748.148 26.1121 751.794 26.1121 Q761.638 26.1121 766.499 31.2163 Q771.36 36.3204 771.36 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M794.086 14.324 L794.086 27.2059 L809.439 27.2059 L809.439 32.9987 L794.086 32.9987 L794.086 57.6282 Q794.086 63.1779 795.585 64.7578 Q797.124 66.3376 801.782 66.3376 L809.439 66.3376 L809.439 72.576 L801.782 72.576 Q793.154 72.576 789.873 69.3758 Q786.592 66.1351 786.592 57.6282 L786.592 32.9987 L781.123 32.9987 L781.123 27.2059 L786.592 27.2059 L786.592 14.324 L794.086 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M826.614 14.324 L826.614 27.2059 L841.967 27.2059 L841.967 32.9987 L826.614 32.9987 L826.614 57.6282 Q826.614 63.1779 828.113 64.7578 Q829.653 66.3376 834.311 66.3376 L841.967 66.3376 L841.967 72.576 L834.311 72.576 Q825.683 72.576 822.402 69.3758 Q819.12 66.1351 819.12 57.6282 L819.12 32.9987 L813.652 32.9987 L813.652 27.2059 L819.12 27.2059 L819.12 14.324 L826.614 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M890.578 48.0275 L890.578 51.6733 L856.308 51.6733 Q856.794 59.3701 860.926 63.421 Q865.098 67.4314 872.511 67.4314 Q876.805 67.4314 880.816 66.3781 Q884.866 65.3249 888.836 63.2184 L888.836 70.267 Q884.826 71.9684 880.613 72.8596 Q876.4 73.7508 872.066 73.7508 Q861.209 73.7508 854.849 67.4314 Q848.53 61.1119 848.53 50.3365 Q848.53 39.1965 854.525 32.6746 Q860.561 26.1121 870.769 26.1121 Q879.924 26.1121 885.231 32.0264 Q890.578 37.9003 890.578 48.0275 M883.125 45.84 Q883.044 39.7232 879.681 36.0774 Q876.36 32.4315 870.85 32.4315 Q864.612 32.4315 860.845 35.9558 Q857.118 39.4801 856.551 45.8805 L883.125 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M929.102 34.1734 Q927.847 33.4443 926.348 33.1202 Q924.889 32.7556 923.107 32.7556 Q916.788 32.7556 913.385 36.8875 Q910.023 40.9789 910.023 48.6757 L910.023 72.576 L902.528 72.576 L902.528 27.2059 L910.023 27.2059 L910.023 34.2544 Q912.372 30.1225 916.139 28.1376 Q919.907 26.1121 925.295 26.1121 Q926.064 26.1121 926.996 26.2337 Q927.928 26.3147 929.062 26.5172 L929.102 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M971.799 18.8205 L971.799 41.5461 L982.088 41.5461 Q987.8 41.5461 990.919 38.5889 Q994.038 35.6318 994.038 30.163 Q994.038 24.7348 990.919 21.7777 Q987.8 18.8205 982.088 18.8205 L971.799 18.8205 M963.616 12.096 L982.088 12.096 Q992.256 12.096 997.441 16.714 Q1002.67 21.2916 1002.67 30.163 Q1002.67 39.1155 997.441 43.6931 Q992.256 48.2706 982.088 48.2706 L971.799 48.2706 L971.799 72.576 L963.616 72.576 L963.616 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1013.32 9.54393 L1020.77 9.54393 L1020.77 72.576 L1013.32 72.576 L1013.32 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1053.95 32.4315 Q1047.96 32.4315 1044.47 37.1306 Q1040.99 41.7891 1040.99 49.9314 Q1040.99 58.0738 1044.43 62.7728 Q1047.92 67.4314 1053.95 67.4314 Q1059.91 67.4314 1063.39 62.7323 Q1066.87 58.0333 1066.87 49.9314 Q1066.87 41.8701 1063.39 37.1711 Q1059.91 32.4315 1053.95 32.4315 M1053.95 26.1121 Q1063.67 26.1121 1069.22 32.4315 Q1074.77 38.7509 1074.77 49.9314 Q1074.77 61.0714 1069.22 67.4314 Q1063.67 73.7508 1053.95 73.7508 Q1044.19 73.7508 1038.64 67.4314 Q1033.13 61.0714 1033.13 49.9314 Q1033.13 38.7509 1038.64 32.4315 Q1044.19 26.1121 1053.95 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1094.5 14.324 L1094.5 27.2059 L1109.85 27.2059 L1109.85 32.9987 L1094.5 32.9987 L1094.5 57.6282 Q1094.5 63.1779 1096 64.7578 Q1097.54 66.3376 1102.2 66.3376 L1109.85 66.3376 L1109.85 72.576 L1102.2 72.576 Q1093.57 72.576 1090.29 69.3758 Q1087.01 66.1351 1087.01 57.6282 L1087.01 32.9987 L1081.54 32.9987 L1081.54 27.2059 L1087.01 27.2059 L1087.01 14.324 L1094.5 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1146.35 12.096 L1154.54 12.096 L1154.54 72.576 L1146.35 72.576 L1146.35 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1170.82 12.096 L1181.84 12.096 L1208.66 62.6918 L1208.66 12.096 L1216.6 12.096 L1216.6 72.576 L1205.58 72.576 L1178.76 21.9802 L1178.76 72.576 L1170.82 72.576 L1170.82 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1241.06 18.8205 L1241.06 65.8515 L1250.95 65.8515 Q1263.46 65.8515 1269.26 60.1802 Q1275.09 54.509 1275.09 42.2752 Q1275.09 30.1225 1269.26 24.4918 Q1263.46 18.8205 1250.95 18.8205 L1241.06 18.8205 M1232.88 12.096 L1249.69 12.096 Q1267.27 12.096 1275.5 19.4281 Q1283.72 26.7198 1283.72 42.2752 Q1283.72 57.9117 1275.45 65.2439 Q1267.19 72.576 1249.69 72.576 L1232.88 72.576 L1232.88 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1295.83 12.096 L1304.05 12.096 L1304.05 48.8377 Q1304.05 58.5599 1307.58 62.8538 Q1311.1 67.1073 1319 67.1073 Q1326.86 67.1073 1330.38 62.8538 Q1333.91 58.5599 1333.91 48.8377 L1333.91 12.096 L1342.13 12.096 L1342.13 49.8504 Q1342.13 61.6791 1336.26 67.7149 Q1330.43 73.7508 1319 73.7508 Q1307.54 73.7508 1301.66 67.7149 Q1295.83 61.6791 1295.83 49.8504 L1295.83 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1393.74 14.0809 L1393.74 22.0612 Q1389.08 19.8332 1384.95 18.7395 Q1380.82 17.6457 1376.97 17.6457 Q1370.29 17.6457 1366.64 20.2383 Q1363.04 22.8309 1363.04 27.611 Q1363.04 31.6214 1365.43 33.6873 Q1367.86 35.7128 1374.58 36.9686 L1379.52 37.9813 Q1388.68 39.7232 1393.01 44.1387 Q1397.39 48.5136 1397.39 55.8863 Q1397.39 64.6767 1391.47 69.2137 Q1385.6 73.7508 1374.22 73.7508 Q1369.92 73.7508 1365.06 72.7785 Q1360.24 71.8063 1355.05 69.9024 L1355.05 61.4765 Q1360.04 64.2716 1364.82 65.6895 Q1369.6 67.1073 1374.22 67.1073 Q1381.22 67.1073 1385.03 64.3527 Q1388.84 61.598 1388.84 56.4939 Q1388.84 52.0379 1386.08 49.5264 Q1383.37 47.0148 1377.13 45.759 L1372.15 44.7868 Q1362.99 42.9639 1358.9 39.075 Q1354.81 35.1862 1354.81 28.2591 Q1354.81 20.2383 1360.44 15.6203 Q1366.11 11.0023 1376.04 11.0023 Q1380.29 11.0023 1384.71 11.7719 Q1389.12 12.5416 1393.74 14.0809 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1430.85 27.2059 L1438.75 27.2059 L1452.92 65.2844 L1467.1 27.2059 L1475 27.2059 L1457.99 72.576 L1447.86 72.576 L1430.85 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1514.21 28.5427 L1514.21 35.5912 Q1511.06 33.9709 1507.65 33.1607 Q1504.25 32.3505 1500.6 32.3505 Q1495.05 32.3505 1492.26 34.0519 Q1489.5 35.7533 1489.5 39.156 Q1489.5 41.7486 1491.49 43.2475 Q1493.47 44.7058 1499.47 46.0426 L1502.02 46.6097 Q1509.96 48.3111 1513.28 51.4303 Q1516.65 54.509 1516.65 60.0587 Q1516.65 66.3781 1511.62 70.0644 Q1506.64 73.7508 1497.89 73.7508 Q1494.24 73.7508 1490.27 73.0216 Q1486.34 72.3329 1481.97 70.9151 L1481.97 63.2184 Q1486.1 65.3654 1490.11 66.4591 Q1494.12 67.5124 1498.05 67.5124 Q1503.32 67.5124 1506.15 65.73 Q1508.99 63.9071 1508.99 60.6258 Q1508.99 57.5877 1506.92 55.9673 Q1504.9 54.3469 1497.97 52.8481 L1495.38 52.2405 Q1488.45 50.7821 1485.37 47.7845 Q1482.29 44.7463 1482.29 39.4801 Q1482.29 33.0797 1486.83 29.5959 Q1491.37 26.1121 1499.71 26.1121 Q1503.84 26.1121 1507.49 26.7198 Q1511.14 27.3274 1514.21 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1591.47 14.0809 L1591.47 22.0612 Q1586.81 19.8332 1582.68 18.7395 Q1578.54 17.6457 1574.69 17.6457 Q1568.01 17.6457 1564.37 20.2383 Q1560.76 22.8309 1560.76 27.611 Q1560.76 31.6214 1563.15 33.6873 Q1565.58 35.7128 1572.3 36.9686 L1577.25 37.9813 Q1586.4 39.7232 1590.74 44.1387 Q1595.11 48.5136 1595.11 55.8863 Q1595.11 64.6767 1589.2 69.2137 Q1583.32 73.7508 1571.94 73.7508 Q1567.65 73.7508 1562.79 72.7785 Q1557.96 71.8063 1552.78 69.9024 L1552.78 61.4765 Q1557.76 64.2716 1562.54 65.6895 Q1567.32 67.1073 1571.94 67.1073 Q1578.95 67.1073 1582.76 64.3527 Q1586.56 61.598 1586.56 56.4939 Q1586.56 52.0379 1583.81 49.5264 Q1581.1 47.0148 1574.86 45.759 L1569.87 44.7868 Q1560.72 42.9639 1556.63 39.075 Q1552.54 35.1862 1552.54 28.2591 Q1552.54 20.2383 1558.17 15.6203 Q1563.84 11.0023 1573.76 11.0023 Q1578.02 11.0023 1582.43 11.7719 Q1586.85 12.5416 1591.47 14.0809 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1628.17 49.7694 Q1619.13 49.7694 1615.65 51.8354 Q1612.17 53.9013 1612.17 58.8839 Q1612.17 62.8538 1614.76 65.2034 Q1617.39 67.5124 1621.89 67.5124 Q1628.09 67.5124 1631.81 63.1374 Q1635.58 58.7219 1635.58 51.4303 L1635.58 49.7694 L1628.17 49.7694 M1643.03 46.6907 L1643.03 72.576 L1635.58 72.576 L1635.58 65.6895 Q1633.03 69.8214 1629.22 71.8063 Q1625.41 73.7508 1619.9 73.7508 Q1612.94 73.7508 1608.8 69.8619 Q1604.71 65.9325 1604.71 59.3701 Q1604.71 51.7138 1609.82 47.825 Q1614.96 43.9361 1625.13 43.9361 L1635.58 43.9361 L1635.58 43.2069 Q1635.58 38.0623 1632.18 35.2672 Q1628.82 32.4315 1622.7 32.4315 Q1618.81 32.4315 1615.12 33.3632 Q1611.44 34.295 1608.03 36.1584 L1608.03 29.2718 Q1612.13 27.692 1615.97 26.9223 Q1619.82 26.1121 1623.47 26.1121 Q1633.31 26.1121 1638.17 31.2163 Q1643.03 36.3204 1643.03 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1658.39 9.54393 L1665.84 9.54393 L1665.84 72.576 L1658.39 72.576 L1658.39 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1720.24 48.0275 L1720.24 51.6733 L1685.97 51.6733 Q1686.46 59.3701 1690.59 63.421 Q1694.76 67.4314 1702.18 67.4314 Q1706.47 67.4314 1710.48 66.3781 Q1714.53 65.3249 1718.5 63.2184 L1718.5 70.267 Q1714.49 71.9684 1710.28 72.8596 Q1706.07 73.7508 1701.73 73.7508 Q1690.87 73.7508 1684.51 67.4314 Q1678.2 61.1119 1678.2 50.3365 Q1678.2 39.1965 1684.19 32.6746 Q1690.23 26.1121 1700.44 26.1121 Q1709.59 26.1121 1714.9 32.0264 Q1720.24 37.9003 1720.24 48.0275 M1712.79 45.84 Q1712.71 39.7232 1709.35 36.0774 Q1706.03 32.4315 1700.52 32.4315 Q1694.28 32.4315 1690.51 35.9558 Q1686.78 39.4801 1686.22 45.8805 L1712.79 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1740.98 18.8205 L1740.98 41.5461 L1751.27 41.5461 Q1756.99 41.5461 1760.1 38.5889 Q1763.22 35.6318 1763.22 30.163 Q1763.22 24.7348 1760.1 21.7777 Q1756.99 18.8205 1751.27 18.8205 L1740.98 18.8205 M1732.8 12.096 L1751.27 12.096 Q1761.44 12.096 1766.63 16.714 Q1771.85 21.2916 1771.85 30.163 Q1771.85 39.1155 1766.63 43.6931 Q1761.44 48.2706 1751.27 48.2706 L1740.98 48.2706 L1740.98 72.576 L1732.8 72.576 L1732.8 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1807.34 34.1734 Q1806.08 33.4443 1804.58 33.1202 Q1803.13 32.7556 1801.34 32.7556 Q1795.02 32.7556 1791.62 36.8875 Q1788.26 40.9789 1788.26 48.6757 L1788.26 72.576 L1780.76 72.576 L1780.76 27.2059 L1788.26 27.2059 L1788.26 34.2544 Q1790.61 30.1225 1794.38 28.1376 Q1798.14 26.1121 1803.53 26.1121 Q1804.3 26.1121 1805.23 26.2337 Q1806.16 26.3147 1807.3 26.5172 L1807.34 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1815.16 27.2059 L1822.61 27.2059 L1822.61 72.576 L1815.16 72.576 L1815.16 27.2059 M1815.16 9.54393 L1822.61 9.54393 L1822.61 18.9825 L1815.16 18.9825 L1815.16 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1870.86 28.9478 L1870.86 35.9153 Q1867.7 34.1734 1864.5 33.3227 Q1861.34 32.4315 1858.1 32.4315 Q1850.85 32.4315 1846.83 37.0496 Q1842.82 41.6271 1842.82 49.9314 Q1842.82 58.2358 1846.83 62.8538 Q1850.85 67.4314 1858.1 67.4314 Q1861.34 67.4314 1864.5 66.5807 Q1867.7 65.6895 1870.86 63.9476 L1870.86 70.8341 Q1867.74 72.2924 1864.38 73.0216 Q1861.05 73.7508 1857.29 73.7508 Q1847.04 73.7508 1841 67.3098 Q1834.97 60.8689 1834.97 49.9314 Q1834.97 38.832 1841.04 32.472 Q1847.16 26.1121 1857.77 26.1121 Q1861.22 26.1121 1864.5 26.8413 Q1867.78 27.5299 1870.86 28.9478 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip910)\" d=\"M1922.63 48.0275 L1922.63 51.6733 L1888.36 51.6733 Q1888.84 59.3701 1892.97 63.421 Q1897.15 67.4314 1904.56 67.4314 Q1908.85 67.4314 1912.86 66.3781 Q1916.92 65.3249 1920.89 63.2184 L1920.89 70.267 Q1916.87 71.9684 1912.66 72.8596 Q1908.45 73.7508 1904.11 73.7508 Q1893.26 73.7508 1886.9 67.4314 Q1880.58 61.1119 1880.58 50.3365 Q1880.58 39.1965 1886.57 32.6746 Q1892.61 26.1121 1902.82 26.1121 Q1911.97 26.1121 1917.28 32.0264 Q1922.63 37.9003 1922.63 48.0275 M1915.17 45.84 Q1915.09 39.7232 1911.73 36.0774 Q1908.41 32.4315 1902.9 32.4315 Q1896.66 32.4315 1892.89 35.9558 Q1889.17 39.4801 1888.6 45.8805 L1915.17 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip912)\" cx=\"403.302\" cy=\"868.692\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"756.824\" cy=\"934.086\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"756.824\" cy=\"577.144\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"393.647\" cy=\"612.565\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"393.647\" cy=\"536.272\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"393.647\" cy=\"740.629\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"816.24\" cy=\"898.665\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"816.24\" cy=\"784.225\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"816.24\" cy=\"1073.05\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"816.24\" cy=\"1007.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"816.24\" cy=\"1113.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"816.24\" cy=\"1007.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"816.24\" cy=\"931.362\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"836.292\" cy=\"966.784\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"836.292\" cy=\"1026.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"836.292\" cy=\"980.407\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"836.292\" cy=\"893.215\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"836.292\" cy=\"1045.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"836.292\" cy=\"972.233\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"836.292\" cy=\"1026.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"836.292\" cy=\"1152.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"836.292\" cy=\"988.582\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"836.292\" cy=\"1108.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"836.292\" cy=\"1127.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"836.292\" cy=\"1097.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"836.292\" cy=\"1143.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"836.292\" cy=\"1070.32\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"836.292\" cy=\"1119.37\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"836.292\" cy=\"1021.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"836.292\" cy=\"950.435\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"836.292\" cy=\"1176.59\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"836.292\" cy=\"1127.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"836.292\" cy=\"1162.97\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"836.292\" cy=\"1165.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"836.292\" cy=\"1154.79\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"674.385\" cy=\"1007.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"674.385\" cy=\"977.683\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"674.385\" cy=\"950.435\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"674.385\" cy=\"849.619\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"450.834\" cy=\"683.409\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"450.834\" cy=\"571.694\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"744.941\" cy=\"797.849\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"744.941\" cy=\"833.271\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"744.941\" cy=\"849.619\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"744.941\" cy=\"944.985\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"744.941\" cy=\"996.756\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"744.941\" cy=\"977.683\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"744.941\" cy=\"1070.32\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"744.941\" cy=\"1130.27\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"744.941\" cy=\"994.031\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"650.619\" cy=\"985.857\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"650.619\" cy=\"964.059\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"650.619\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"650.619\" cy=\"885.041\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"528.817\" cy=\"1007.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"322.348\" cy=\"558.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"286.699\" cy=\"849.619\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"329.775\" cy=\"661.611\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"612.741\" cy=\"887.766\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"612.741\" cy=\"988.582\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"612.741\" cy=\"1013.1\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"612.741\" cy=\"1086.67\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"612.741\" cy=\"917.738\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"612.741\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"334.231\" cy=\"623.465\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"482.027\" cy=\"882.316\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"482.027\" cy=\"994.031\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"682.555\" cy=\"923.187\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"682.555\" cy=\"1048.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"682.555\" cy=\"953.16\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1034.59\" cy=\"863.243\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1034.59\" cy=\"931.362\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1034.59\" cy=\"901.389\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1034.59\" cy=\"885.041\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1184.62\" cy=\"865.968\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1184.62\" cy=\"939.536\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1184.62\" cy=\"977.683\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1184.62\" cy=\"955.885\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1184.62\" cy=\"944.985\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1184.62\" cy=\"969.508\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"592.689\" cy=\"759.702\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"592.689\" cy=\"871.417\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"592.689\" cy=\"846.894\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"592.689\" cy=\"898.665\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"565.209\" cy=\"871.417\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"565.209\" cy=\"797.849\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"565.209\" cy=\"909.564\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"565.209\" cy=\"917.738\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"484.998\" cy=\"879.591\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"484.998\" cy=\"740.629\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"484.998\" cy=\"906.839\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"484.998\" cy=\"923.187\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1348.75\" cy=\"898.665\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1348.75\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1348.75\" cy=\"961.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"446.378\" cy=\"748.803\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"446.378\" cy=\"939.536\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"446.378\" cy=\"468.154\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"446.378\" cy=\"329.191\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"446.378\" cy=\"618.015\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"867.486\" cy=\"773.326\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"867.486\" cy=\"800.574\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"867.486\" cy=\"1015.83\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"867.486\" cy=\"996.756\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"867.486\" cy=\"974.958\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"867.486\" cy=\"991.306\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"867.486\" cy=\"991.306\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"867.486\" cy=\"966.784\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"867.486\" cy=\"983.132\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"867.486\" cy=\"994.031\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"867.486\" cy=\"931.362\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"975.176\" cy=\"901.389\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"975.176\" cy=\"1010.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"975.176\" cy=\"1013.1\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"975.176\" cy=\"1018.55\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"975.176\" cy=\"1024\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"975.176\" cy=\"944.985\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"975.176\" cy=\"999.481\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"975.176\" cy=\"966.784\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"975.176\" cy=\"996.756\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"2136.75\" cy=\"923.187\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"2136.75\" cy=\"969.508\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"2136.75\" cy=\"964.059\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"2136.75\" cy=\"1051.25\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"2136.75\" cy=\"1010.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"2136.75\" cy=\"939.536\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"2136.75\" cy=\"1094.85\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1857.5\" cy=\"1081.22\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1857.5\" cy=\"1032.18\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1857.5\" cy=\"1132.99\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1857.5\" cy=\"999.481\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1857.5\" cy=\"988.582\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1857.5\" cy=\"895.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1857.5\" cy=\"1021.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1857.5\" cy=\"1097.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1857.5\" cy=\"1029.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1857.5\" cy=\"1048.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1857.5\" cy=\"1056.7\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1857.5\" cy=\"1160.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1857.5\" cy=\"1037.63\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1857.5\" cy=\"1141.17\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1857.5\" cy=\"1130.27\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"1157.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"1097.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"1201.11\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"1146.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"1097.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"1124.82\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"1037.63\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"1103.02\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"936.811\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"988.582\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"1105.75\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"994.031\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"1059.43\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"1097.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"1165.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"397.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"860.518\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"887.766\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"786.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"904.114\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"874.142\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"874.142\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"915.013\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"1048.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1685.94\" cy=\"1002.21\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"532.53\" cy=\"893.215\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"532.53\" cy=\"879.591\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"532.53\" cy=\"906.839\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"532.53\" cy=\"721.556\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"532.53\" cy=\"890.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"532.53\" cy=\"852.344\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"532.53\" cy=\"707.932\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"414.442\" cy=\"509.025\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"414.442\" cy=\"438.181\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"414.442\" cy=\"536.272\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"414.442\" cy=\"489.952\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"414.442\" cy=\"637.088\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"414.442\" cy=\"803.298\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"414.442\" cy=\"716.106\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"414.442\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"487.226\" cy=\"650.712\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"487.226\" cy=\"710.657\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"487.226\" cy=\"571.694\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"487.226\" cy=\"514.474\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"487.226\" cy=\"691.583\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"487.226\" cy=\"530.823\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"449.349\" cy=\"675.235\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"449.349\" cy=\"729.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"265.903\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"344.629\" cy=\"615.29\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"344.629\" cy=\"697.033\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"344.629\" cy=\"579.868\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"340.915\" cy=\"571.694\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"340.915\" cy=\"626.189\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"382.506\" cy=\"865.968\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"382.506\" cy=\"370.062\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"430.781\" cy=\"201.128\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"430.781\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1018.25\" cy=\"906.839\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1018.25\" cy=\"857.793\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1018.25\" cy=\"909.564\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1018.25\" cy=\"857.793\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1018.25\" cy=\"977.683\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1018.25\" cy=\"931.362\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1018.25\" cy=\"996.756\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1018.25\" cy=\"912.288\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1018.25\" cy=\"756.977\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1018.25\" cy=\"876.867\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1018.25\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1263.34\" cy=\"887.766\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1263.34\" cy=\"740.629\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1263.34\" cy=\"936.811\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1263.34\" cy=\"895.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"692.21\" cy=\"795.124\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"692.21\" cy=\"931.362\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"692.21\" cy=\"773.326\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"692.21\" cy=\"702.482\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"692.21\" cy=\"301.944\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"692.21\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"692.21\" cy=\"498.126\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"692.21\" cy=\"661.611\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"692.21\" cy=\"250.173\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"692.21\" cy=\"664.336\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"692.21\" cy=\"860.518\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"692.21\" cy=\"658.886\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"692.21\" cy=\"386.411\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"692.21\" cy=\"206.577\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"692.21\" cy=\"732.455\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"692.21\" cy=\"868.692\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"692.21\" cy=\"838.72\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"692.21\" cy=\"664.336\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"597.888\" cy=\"876.867\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"597.888\" cy=\"887.766\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"597.888\" cy=\"923.187\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"597.888\" cy=\"974.958\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"597.888\" cy=\"917.738\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"597.888\" cy=\"876.867\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"666.958\" cy=\"1043.08\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"666.958\" cy=\"1018.55\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"666.958\" cy=\"860.518\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"666.958\" cy=\"964.059\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"666.958\" cy=\"855.069\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"666.958\" cy=\"808.748\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"666.958\" cy=\"857.793\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"666.958\" cy=\"846.894\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"666.958\" cy=\"716.106\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"666.958\" cy=\"356.439\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"502.08\" cy=\"925.912\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"502.08\" cy=\"953.16\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"510.25\" cy=\"323.742\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"526.589\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"526.589\" cy=\"541.722\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"526.589\" cy=\"702.482\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"526.589\" cy=\"601.666\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"526.589\" cy=\"348.264\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"526.589\" cy=\"192.953\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"526.589\" cy=\"677.96\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"526.589\" cy=\"528.098\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"526.589\" cy=\"901.389\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"526.589\" cy=\"686.134\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"526.589\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"526.589\" cy=\"337.365\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"748.655\" cy=\"958.609\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"748.655\" cy=\"947.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"748.655\" cy=\"835.995\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"748.655\" cy=\"857.793\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"748.655\" cy=\"563.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"707.806\" cy=\"639.813\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"707.806\" cy=\"650.712\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"707.806\" cy=\"618.015\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"707.806\" cy=\"620.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"707.806\" cy=\"729.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"479.056\" cy=\"566.245\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"479.056\" cy=\"285.595\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"479.056\" cy=\"558.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"479.056\" cy=\"269.246\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"321.605\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"452.319\" cy=\"645.263\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"398.845\" cy=\"923.187\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"362.453\" cy=\"974.958\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"626.853\" cy=\"890.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"626.853\" cy=\"915.013\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"626.853\" cy=\"846.894\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"599.373\" cy=\"746.078\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"599.373\" cy=\"506.3\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"599.373\" cy=\"762.427\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1265.57\" cy=\"871.417\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1265.57\" cy=\"931.362\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1265.57\" cy=\"743.354\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1265.57\" cy=\"784.225\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1265.57\" cy=\"969.508\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"398.103\" cy=\"909.564\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"398.103\" cy=\"732.455\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"398.103\" cy=\"846.894\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"684.04\" cy=\"923.187\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"684.04\" cy=\"803.298\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"684.04\" cy=\"620.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"393.647\" cy=\"538.997\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"393.647\" cy=\"748.803\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"393.647\" cy=\"612.565\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"393.647\" cy=\"754.253\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"967.007\" cy=\"901.389\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"967.007\" cy=\"969.508\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"967.007\" cy=\"1083.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"967.007\" cy=\"920.463\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"967.007\" cy=\"994.031\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"967.007\" cy=\"934.086\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"967.007\" cy=\"874.142\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"967.007\" cy=\"1081.22\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"967.007\" cy=\"1037.63\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"967.007\" cy=\"983.132\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"967.007\" cy=\"893.215\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"967.007\" cy=\"950.435\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"779.848\" cy=\"874.142\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"779.848\" cy=\"893.215\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"779.848\" cy=\"966.784\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"779.848\" cy=\"1018.55\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"779.848\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"779.848\" cy=\"852.344\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"779.848\" cy=\"895.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"779.848\" cy=\"917.738\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"472.372\" cy=\"996.756\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"472.372\" cy=\"906.839\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"472.372\" cy=\"983.132\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"681.812\" cy=\"1056.7\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"681.812\" cy=\"994.031\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"617.198\" cy=\"917.738\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"617.198\" cy=\"958.609\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"617.198\" cy=\"947.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"617.198\" cy=\"991.306\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"617.198\" cy=\"1018.55\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"617.198\" cy=\"961.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"617.198\" cy=\"1004.93\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"617.198\" cy=\"1013.1\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"344.629\" cy=\"631.639\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"372.108\" cy=\"1073.05\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"512.478\" cy=\"871.417\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"512.478\" cy=\"672.51\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"557.782\" cy=\"1045.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"557.782\" cy=\"1053.98\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"539.957\" cy=\"893.215\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"381.021\" cy=\"855.069\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"324.576\" cy=\"797.849\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"324.576\" cy=\"898.665\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"357.255\" cy=\"865.968\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"357.255\" cy=\"1015.83\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"381.763\" cy=\"702.482\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"373.594\" cy=\"1026.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"373.594\" cy=\"961.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1037.63\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"931.362\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"904.114\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"906.839\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"980.407\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"955.885\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1064.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"925.912\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"773.326\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"925.912\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"893.215\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1146.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1146.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1113.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1143.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1160.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1165.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1244.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1239.26\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1225.64\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1214.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1187.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1282.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1326.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1236.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1321\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1244.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1209.29\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1111.2\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"890.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1258.33\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1146.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1176.59\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1165.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1182.04\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1291.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1350.97\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1370.05\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1326.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1192.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1296.48\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1291.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1198.39\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"762.427\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1053.98\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"773.326\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1113.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1053.98\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1034.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1078.5\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1331.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1326.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1318.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1239.26\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1282.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1293.75\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1067.6\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1135.72\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"955.885\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1157.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1203.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1296.48\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1244.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1225.64\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1222.91\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1263.78\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1127.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1138.44\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1083.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1132.99\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1203.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1157.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1261.06\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1285.58\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1293.75\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1173.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1236.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1056.7\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1021.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1103.02\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1228.36\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1201.11\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1116.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1179.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1138.44\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1168.42\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1157.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1108.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1083.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1037.63\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1116.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1138.44\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1176.59\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1154.79\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1116.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"977.683\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1075.77\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1040.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"991.306\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"972.233\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"939.536\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"980.407\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1004.93\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1002.21\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1002.21\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"974.958\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"980.407\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"988.582\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"890.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"710.657\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1146.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1160.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1067.6\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1195.66\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1124.82\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"939.536\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"895.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"876.867\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"928.637\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"961.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"944.985\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"1002.21\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1576.02\" cy=\"961.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"2291.97\" cy=\"1108.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"2291.97\" cy=\"1331.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"2291.97\" cy=\"1301.93\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"2291.97\" cy=\"1152.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"2291.97\" cy=\"974.958\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"951.41\" cy=\"928.637\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"951.41\" cy=\"855.069\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"951.41\" cy=\"893.215\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"951.41\" cy=\"985.857\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"951.41\" cy=\"1024\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"951.41\" cy=\"944.985\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"951.41\" cy=\"1045.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"951.41\" cy=\"1064.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1117.77\" cy=\"912.288\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1117.77\" cy=\"961.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1117.77\" cy=\"871.417\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1117.77\" cy=\"923.187\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip912)\" cx=\"1117.77\" cy=\"1198.39\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"</svg>\n"
]
},
"execution_count": 25,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"train_plot = scatter(df.INDUS,df.SalePrice, title = \"Scatter Plot INDUS vs SalePrice\", ylabel = \"INDUS\", xlabel = \"SalePrice\",legend = false)"
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip950\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip950)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip951\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip950)\" d=\"\n",
"M205.121 1423.18 L2352.76 1423.18 L2352.76 123.472 L205.121 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip952\">\n",
" <rect x=\"205\" y=\"123\" width=\"2149\" height=\"1301\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 316.168,1423.18 316.168,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 702.823,1423.18 702.823,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1089.48,1423.18 1089.48,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1476.13,1423.18 1476.13,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1862.79,1423.18 1862.79,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2249.44,1423.18 2249.44,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,1423.18 2352.76,1423.18 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 316.168,1423.18 316.168,1404.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 702.823,1423.18 702.823,1404.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1089.48,1423.18 1089.48,1404.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1476.13,1423.18 1476.13,1404.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1862.79,1423.18 1862.79,1404.28 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2249.44,1423.18 2249.44,1404.28 \n",
" \"/>\n",
"<path clip-path=\"url(#clip950)\" d=\"M279.861 1479.92 L296.18 1479.92 L296.18 1483.85 L274.236 1483.85 L274.236 1479.92 Q276.898 1477.16 281.481 1472.53 Q286.087 1467.88 287.268 1466.54 Q289.513 1464.01 290.393 1462.28 Q291.296 1460.52 291.296 1458.83 Q291.296 1456.07 289.351 1454.34 Q287.43 1452.6 284.328 1452.6 Q282.129 1452.6 279.675 1453.37 Q277.245 1454.13 274.467 1455.68 L274.467 1450.96 Q277.291 1449.82 279.745 1449.25 Q282.198 1448.67 284.236 1448.67 Q289.606 1448.67 292.8 1451.35 Q295.995 1454.04 295.995 1458.53 Q295.995 1460.66 295.185 1462.58 Q294.397 1464.48 292.291 1467.07 Q291.712 1467.74 288.61 1470.96 Q285.509 1474.15 279.861 1479.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M315.995 1452.37 Q312.384 1452.37 310.555 1455.94 Q308.749 1459.48 308.749 1466.61 Q308.749 1473.71 310.555 1477.28 Q312.384 1480.82 315.995 1480.82 Q319.629 1480.82 321.434 1477.28 Q323.263 1473.71 323.263 1466.61 Q323.263 1459.48 321.434 1455.94 Q319.629 1452.37 315.995 1452.37 M315.995 1448.67 Q321.805 1448.67 324.86 1453.27 Q327.939 1457.86 327.939 1466.61 Q327.939 1475.33 324.86 1479.94 Q321.805 1484.52 315.995 1484.52 Q310.184 1484.52 307.106 1479.94 Q304.05 1475.33 304.05 1466.61 Q304.05 1457.86 307.106 1453.27 Q310.184 1448.67 315.995 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M346.156 1452.37 Q342.545 1452.37 340.717 1455.94 Q338.911 1459.48 338.911 1466.61 Q338.911 1473.71 340.717 1477.28 Q342.545 1480.82 346.156 1480.82 Q349.791 1480.82 351.596 1477.28 Q353.425 1473.71 353.425 1466.61 Q353.425 1459.48 351.596 1455.94 Q349.791 1452.37 346.156 1452.37 M346.156 1448.67 Q351.967 1448.67 355.022 1453.27 Q358.101 1457.86 358.101 1466.61 Q358.101 1475.33 355.022 1479.94 Q351.967 1484.52 346.156 1484.52 Q340.346 1484.52 337.268 1479.94 Q334.212 1475.33 334.212 1466.61 Q334.212 1457.86 337.268 1453.27 Q340.346 1448.67 346.156 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M676.585 1465.22 Q679.941 1465.94 681.816 1468.2 Q683.714 1470.47 683.714 1473.81 Q683.714 1478.92 680.196 1481.72 Q676.677 1484.52 670.196 1484.52 Q668.02 1484.52 665.705 1484.08 Q663.413 1483.67 660.96 1482.81 L660.96 1478.3 Q662.904 1479.43 665.219 1480.01 Q667.534 1480.59 670.057 1480.59 Q674.455 1480.59 676.747 1478.85 Q679.061 1477.12 679.061 1473.81 Q679.061 1470.75 676.909 1469.04 Q674.779 1467.3 670.96 1467.3 L666.932 1467.3 L666.932 1463.46 L671.145 1463.46 Q674.594 1463.46 676.423 1462.09 Q678.251 1460.7 678.251 1458.11 Q678.251 1455.45 676.353 1454.04 Q674.478 1452.6 670.96 1452.6 Q669.038 1452.6 666.839 1453.02 Q664.64 1453.44 662.001 1454.31 L662.001 1450.15 Q664.663 1449.41 666.978 1449.04 Q669.316 1448.67 671.376 1448.67 Q676.7 1448.67 679.802 1451.1 Q682.904 1453.5 682.904 1457.63 Q682.904 1460.5 681.261 1462.49 Q679.617 1464.45 676.585 1465.22 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M702.58 1452.37 Q698.969 1452.37 697.14 1455.94 Q695.335 1459.48 695.335 1466.61 Q695.335 1473.71 697.14 1477.28 Q698.969 1480.82 702.58 1480.82 Q706.214 1480.82 708.02 1477.28 Q709.848 1473.71 709.848 1466.61 Q709.848 1459.48 708.02 1455.94 Q706.214 1452.37 702.58 1452.37 M702.58 1448.67 Q708.39 1448.67 711.446 1453.27 Q714.524 1457.86 714.524 1466.61 Q714.524 1475.33 711.446 1479.94 Q708.39 1484.52 702.58 1484.52 Q696.77 1484.52 693.691 1479.94 Q690.635 1475.33 690.635 1466.61 Q690.635 1457.86 693.691 1453.27 Q696.77 1448.67 702.58 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M732.742 1452.37 Q729.131 1452.37 727.302 1455.94 Q725.496 1459.48 725.496 1466.61 Q725.496 1473.71 727.302 1477.28 Q729.131 1480.82 732.742 1480.82 Q736.376 1480.82 738.182 1477.28 Q740.01 1473.71 740.01 1466.61 Q740.01 1459.48 738.182 1455.94 Q736.376 1452.37 732.742 1452.37 M732.742 1448.67 Q738.552 1448.67 741.607 1453.27 Q744.686 1457.86 744.686 1466.61 Q744.686 1475.33 741.607 1479.94 Q738.552 1484.52 732.742 1484.52 Q726.932 1484.52 723.853 1479.94 Q720.797 1475.33 720.797 1466.61 Q720.797 1457.86 723.853 1453.27 Q726.932 1448.67 732.742 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1062.57 1453.37 L1050.76 1471.81 L1062.57 1471.81 L1062.57 1453.37 M1061.34 1449.29 L1067.22 1449.29 L1067.22 1471.81 L1072.15 1471.81 L1072.15 1475.7 L1067.22 1475.7 L1067.22 1483.85 L1062.57 1483.85 L1062.57 1475.7 L1046.97 1475.7 L1046.97 1471.19 L1061.34 1449.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1089.88 1452.37 Q1086.27 1452.37 1084.44 1455.94 Q1082.64 1459.48 1082.64 1466.61 Q1082.64 1473.71 1084.44 1477.28 Q1086.27 1480.82 1089.88 1480.82 Q1093.52 1480.82 1095.32 1477.28 Q1097.15 1473.71 1097.15 1466.61 Q1097.15 1459.48 1095.32 1455.94 Q1093.52 1452.37 1089.88 1452.37 M1089.88 1448.67 Q1095.69 1448.67 1098.75 1453.27 Q1101.83 1457.86 1101.83 1466.61 Q1101.83 1475.33 1098.75 1479.94 Q1095.69 1484.52 1089.88 1484.52 Q1084.07 1484.52 1080.99 1479.94 Q1077.94 1475.33 1077.94 1466.61 Q1077.94 1457.86 1080.99 1453.27 Q1084.07 1448.67 1089.88 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1120.04 1452.37 Q1116.43 1452.37 1114.6 1455.94 Q1112.8 1459.48 1112.8 1466.61 Q1112.8 1473.71 1114.6 1477.28 Q1116.43 1480.82 1120.04 1480.82 Q1123.68 1480.82 1125.48 1477.28 Q1127.31 1473.71 1127.31 1466.61 Q1127.31 1459.48 1125.48 1455.94 Q1123.68 1452.37 1120.04 1452.37 M1120.04 1448.67 Q1125.85 1448.67 1128.91 1453.27 Q1131.99 1457.86 1131.99 1466.61 Q1131.99 1475.33 1128.91 1479.94 Q1125.85 1484.52 1120.04 1484.52 Q1114.23 1484.52 1111.16 1479.94 Q1108.1 1475.33 1108.1 1466.61 Q1108.1 1457.86 1111.16 1453.27 Q1114.23 1448.67 1120.04 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1435.75 1449.29 L1454.11 1449.29 L1454.11 1453.23 L1440.03 1453.23 L1440.03 1461.7 Q1441.05 1461.35 1442.07 1461.19 Q1443.09 1461 1444.11 1461 Q1449.89 1461 1453.27 1464.18 Q1456.65 1467.35 1456.65 1472.76 Q1456.65 1478.34 1453.18 1481.44 Q1449.71 1484.52 1443.39 1484.52 Q1441.21 1484.52 1438.95 1484.15 Q1436.7 1483.78 1434.29 1483.04 L1434.29 1478.34 Q1436.38 1479.48 1438.6 1480.03 Q1440.82 1480.59 1443.3 1480.59 Q1447.3 1480.59 1449.64 1478.48 Q1451.98 1476.38 1451.98 1472.76 Q1451.98 1469.15 1449.64 1467.05 Q1447.3 1464.94 1443.3 1464.94 Q1441.42 1464.94 1439.55 1465.36 Q1437.7 1465.77 1435.75 1466.65 L1435.75 1449.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1475.87 1452.37 Q1472.26 1452.37 1470.43 1455.94 Q1468.62 1459.48 1468.62 1466.61 Q1468.62 1473.71 1470.43 1477.28 Q1472.26 1480.82 1475.87 1480.82 Q1479.5 1480.82 1481.31 1477.28 Q1483.13 1473.71 1483.13 1466.61 Q1483.13 1459.48 1481.31 1455.94 Q1479.5 1452.37 1475.87 1452.37 M1475.87 1448.67 Q1481.68 1448.67 1484.73 1453.27 Q1487.81 1457.86 1487.81 1466.61 Q1487.81 1475.33 1484.73 1479.94 Q1481.68 1484.52 1475.87 1484.52 Q1470.06 1484.52 1466.98 1479.94 Q1463.92 1475.33 1463.92 1466.61 Q1463.92 1457.86 1466.98 1453.27 Q1470.06 1448.67 1475.87 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1506.03 1452.37 Q1502.42 1452.37 1500.59 1455.94 Q1498.78 1459.48 1498.78 1466.61 Q1498.78 1473.71 1500.59 1477.28 Q1502.42 1480.82 1506.03 1480.82 Q1509.66 1480.82 1511.47 1477.28 Q1513.3 1473.71 1513.3 1466.61 Q1513.3 1459.48 1511.47 1455.94 Q1509.66 1452.37 1506.03 1452.37 M1506.03 1448.67 Q1511.84 1448.67 1514.89 1453.27 Q1517.97 1457.86 1517.97 1466.61 Q1517.97 1475.33 1514.89 1479.94 Q1511.84 1484.52 1506.03 1484.52 Q1500.22 1484.52 1497.14 1479.94 Q1494.08 1475.33 1494.08 1466.61 Q1494.08 1457.86 1497.14 1453.27 Q1500.22 1448.67 1506.03 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1833.11 1464.71 Q1829.96 1464.71 1828.11 1466.86 Q1826.28 1469.01 1826.28 1472.76 Q1826.28 1476.49 1828.11 1478.67 Q1829.96 1480.82 1833.11 1480.82 Q1836.26 1480.82 1838.09 1478.67 Q1839.94 1476.49 1839.94 1472.76 Q1839.94 1469.01 1838.09 1466.86 Q1836.26 1464.71 1833.11 1464.71 M1842.39 1450.06 L1842.39 1454.31 Q1840.63 1453.48 1838.83 1453.04 Q1837.05 1452.6 1835.29 1452.6 Q1830.66 1452.6 1828.2 1455.73 Q1825.77 1458.85 1825.43 1465.17 Q1826.79 1463.16 1828.85 1462.09 Q1830.91 1461 1833.39 1461 Q1838.6 1461 1841.61 1464.18 Q1844.64 1467.32 1844.64 1472.76 Q1844.64 1478.09 1841.49 1481.31 Q1838.34 1484.52 1833.11 1484.52 Q1827.12 1484.52 1823.94 1479.94 Q1820.77 1475.33 1820.77 1466.61 Q1820.77 1458.41 1824.66 1453.55 Q1828.55 1448.67 1835.1 1448.67 Q1836.86 1448.67 1838.64 1449.01 Q1840.45 1449.36 1842.39 1450.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1862.69 1452.37 Q1859.08 1452.37 1857.25 1455.94 Q1855.45 1459.48 1855.45 1466.61 Q1855.45 1473.71 1857.25 1477.28 Q1859.08 1480.82 1862.69 1480.82 Q1866.33 1480.82 1868.13 1477.28 Q1869.96 1473.71 1869.96 1466.61 Q1869.96 1459.48 1868.13 1455.94 Q1866.33 1452.37 1862.69 1452.37 M1862.69 1448.67 Q1868.5 1448.67 1871.56 1453.27 Q1874.64 1457.86 1874.64 1466.61 Q1874.64 1475.33 1871.56 1479.94 Q1868.5 1484.52 1862.69 1484.52 Q1856.88 1484.52 1853.81 1479.94 Q1850.75 1475.33 1850.75 1466.61 Q1850.75 1457.86 1853.81 1453.27 Q1856.88 1448.67 1862.69 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1892.86 1452.37 Q1889.25 1452.37 1887.42 1455.94 Q1885.61 1459.48 1885.61 1466.61 Q1885.61 1473.71 1887.42 1477.28 Q1889.25 1480.82 1892.86 1480.82 Q1896.49 1480.82 1898.3 1477.28 Q1900.12 1473.71 1900.12 1466.61 Q1900.12 1459.48 1898.3 1455.94 Q1896.49 1452.37 1892.86 1452.37 M1892.86 1448.67 Q1898.67 1448.67 1901.72 1453.27 Q1904.8 1457.86 1904.8 1466.61 Q1904.8 1475.33 1901.72 1479.94 Q1898.67 1484.52 1892.86 1484.52 Q1887.05 1484.52 1883.97 1479.94 Q1880.91 1475.33 1880.91 1466.61 Q1880.91 1457.86 1883.97 1453.27 Q1887.05 1448.67 1892.86 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M2207.72 1449.29 L2229.94 1449.29 L2229.94 1451.28 L2217.39 1483.85 L2212.51 1483.85 L2224.31 1453.23 L2207.72 1453.23 L2207.72 1449.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M2249.06 1452.37 Q2245.45 1452.37 2243.62 1455.94 Q2241.81 1459.48 2241.81 1466.61 Q2241.81 1473.71 2243.62 1477.28 Q2245.45 1480.82 2249.06 1480.82 Q2252.69 1480.82 2254.5 1477.28 Q2256.33 1473.71 2256.33 1466.61 Q2256.33 1459.48 2254.5 1455.94 Q2252.69 1452.37 2249.06 1452.37 M2249.06 1448.67 Q2254.87 1448.67 2257.93 1453.27 Q2261 1457.86 2261 1466.61 Q2261 1475.33 2257.93 1479.94 Q2254.87 1484.52 2249.06 1484.52 Q2243.25 1484.52 2240.17 1479.94 Q2237.12 1475.33 2237.12 1466.61 Q2237.12 1457.86 2240.17 1453.27 Q2243.25 1448.67 2249.06 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M2279.22 1452.37 Q2275.61 1452.37 2273.78 1455.94 Q2271.98 1459.48 2271.98 1466.61 Q2271.98 1473.71 2273.78 1477.28 Q2275.61 1480.82 2279.22 1480.82 Q2282.86 1480.82 2284.66 1477.28 Q2286.49 1473.71 2286.49 1466.61 Q2286.49 1459.48 2284.66 1455.94 Q2282.86 1452.37 2279.22 1452.37 M2279.22 1448.67 Q2285.03 1448.67 2288.09 1453.27 Q2291.17 1457.86 2291.17 1466.61 Q2291.17 1475.33 2288.09 1479.94 Q2285.03 1484.52 2279.22 1484.52 Q2273.41 1484.52 2270.33 1479.94 Q2267.28 1475.33 2267.28 1466.61 Q2267.28 1457.86 2270.33 1453.27 Q2273.41 1448.67 2279.22 1448.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1164.13 1522.08 L1164.13 1528.35 Q1160.47 1526.6 1157.23 1525.74 Q1153.98 1524.88 1150.96 1524.88 Q1145.7 1524.88 1142.84 1526.92 Q1140.01 1528.96 1140.01 1532.71 Q1140.01 1535.87 1141.88 1537.49 Q1143.79 1539.08 1149.08 1540.07 L1152.96 1540.86 Q1160.15 1542.23 1163.56 1545.7 Q1167 1549.14 1167 1554.93 Q1167 1561.84 1162.35 1565.4 Q1157.74 1568.97 1148.79 1568.97 Q1145.42 1568.97 1141.6 1568.2 Q1137.81 1567.44 1133.74 1565.94 L1133.74 1559.32 Q1137.65 1561.52 1141.41 1562.63 Q1145.16 1563.75 1148.79 1563.75 Q1154.3 1563.75 1157.29 1561.58 Q1160.28 1559.42 1160.28 1555.41 Q1160.28 1551.91 1158.12 1549.93 Q1155.98 1547.96 1151.08 1546.97 L1147.17 1546.21 Q1139.98 1544.78 1136.76 1541.72 Q1133.55 1538.67 1133.55 1533.22 Q1133.55 1526.92 1137.97 1523.29 Q1142.43 1519.66 1150.22 1519.66 Q1153.57 1519.66 1157.04 1520.27 Q1160.5 1520.87 1164.13 1522.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1192.97 1550.12 Q1185.87 1550.12 1183.13 1551.75 Q1180.4 1553.37 1180.4 1557.29 Q1180.4 1560.4 1182.43 1562.25 Q1184.5 1564.07 1188.04 1564.07 Q1192.91 1564.07 1195.83 1560.63 Q1198.79 1557.16 1198.79 1551.43 L1198.79 1550.12 L1192.97 1550.12 M1204.65 1547.71 L1204.65 1568.04 L1198.79 1568.04 L1198.79 1562.63 Q1196.79 1565.88 1193.8 1567.44 Q1190.81 1568.97 1186.48 1568.97 Q1181 1568.97 1177.76 1565.91 Q1174.54 1562.82 1174.54 1557.67 Q1174.54 1551.65 1178.55 1548.6 Q1182.59 1545.54 1190.58 1545.54 L1198.79 1545.54 L1198.79 1544.97 Q1198.79 1540.93 1196.12 1538.73 Q1193.48 1536.5 1188.67 1536.5 Q1185.62 1536.5 1182.72 1537.23 Q1179.82 1537.97 1177.15 1539.43 L1177.15 1534.02 Q1180.37 1532.78 1183.39 1532.17 Q1186.41 1531.54 1189.28 1531.54 Q1197.01 1531.54 1200.83 1535.55 Q1204.65 1539.56 1204.65 1547.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1216.71 1518.52 L1222.57 1518.52 L1222.57 1568.04 L1216.71 1568.04 L1216.71 1518.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1265.32 1548.76 L1265.32 1551.62 L1238.39 1551.62 Q1238.77 1557.67 1242.02 1560.85 Q1245.3 1564 1251.12 1564 Q1254.49 1564 1257.65 1563.17 Q1260.83 1562.35 1263.95 1560.69 L1263.95 1566.23 Q1260.8 1567.57 1257.49 1568.27 Q1254.18 1568.97 1250.77 1568.97 Q1242.24 1568.97 1237.24 1564 Q1232.28 1559.04 1232.28 1550.57 Q1232.28 1541.82 1236.99 1536.69 Q1241.73 1531.54 1249.75 1531.54 Q1256.94 1531.54 1261.11 1536.18 Q1265.32 1540.8 1265.32 1548.76 M1259.46 1547.04 Q1259.4 1542.23 1256.75 1539.37 Q1254.14 1536.5 1249.82 1536.5 Q1244.91 1536.5 1241.95 1539.27 Q1239.03 1542.04 1238.58 1547.07 L1259.46 1547.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1281.61 1525.81 L1281.61 1543.66 L1289.7 1543.66 Q1294.18 1543.66 1296.64 1541.34 Q1299.09 1539.02 1299.09 1534.72 Q1299.09 1530.45 1296.64 1528.13 Q1294.18 1525.81 1289.7 1525.81 L1281.61 1525.81 M1275.18 1520.52 L1289.7 1520.52 Q1297.69 1520.52 1301.76 1524.15 Q1305.87 1527.75 1305.87 1534.72 Q1305.87 1541.75 1301.76 1545.35 Q1297.69 1548.95 1289.7 1548.95 L1281.61 1548.95 L1281.61 1568.04 L1275.18 1568.04 L1275.18 1520.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1333.75 1537.87 Q1332.76 1537.3 1331.58 1537.04 Q1330.44 1536.76 1329.04 1536.76 Q1324.07 1536.76 1321.4 1540 Q1318.76 1543.22 1318.76 1549.27 L1318.76 1568.04 L1312.87 1568.04 L1312.87 1532.4 L1318.76 1532.4 L1318.76 1537.93 Q1320.6 1534.69 1323.56 1533.13 Q1326.52 1531.54 1330.76 1531.54 Q1331.36 1531.54 1332.09 1531.63 Q1332.82 1531.7 1333.72 1531.85 L1333.75 1537.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1339.89 1532.4 L1345.75 1532.4 L1345.75 1568.04 L1339.89 1568.04 L1339.89 1532.4 M1339.89 1518.52 L1345.75 1518.52 L1345.75 1525.93 L1339.89 1525.93 L1339.89 1518.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1383.65 1533.76 L1383.65 1539.24 Q1381.17 1537.87 1378.66 1537.2 Q1376.17 1536.5 1373.63 1536.5 Q1367.93 1536.5 1364.78 1540.13 Q1361.63 1543.73 1361.63 1550.25 Q1361.63 1556.78 1364.78 1560.4 Q1367.93 1564 1373.63 1564 Q1376.17 1564 1378.66 1563.33 Q1381.17 1562.63 1383.65 1561.26 L1383.65 1566.68 Q1381.2 1567.82 1378.56 1568.39 Q1375.95 1568.97 1372.99 1568.97 Q1364.94 1568.97 1360.2 1563.91 Q1355.45 1558.85 1355.45 1550.25 Q1355.45 1541.53 1360.23 1536.53 Q1365.03 1531.54 1373.37 1531.54 Q1376.08 1531.54 1378.66 1532.11 Q1381.24 1532.65 1383.65 1533.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1424.33 1548.76 L1424.33 1551.62 L1397.4 1551.62 Q1397.79 1557.67 1401.03 1560.85 Q1404.31 1564 1410.14 1564 Q1413.51 1564 1416.66 1563.17 Q1419.84 1562.35 1422.96 1560.69 L1422.96 1566.23 Q1419.81 1567.57 1416.5 1568.27 Q1413.19 1568.97 1409.79 1568.97 Q1401.26 1568.97 1396.26 1564 Q1391.29 1559.04 1391.29 1550.57 Q1391.29 1541.82 1396 1536.69 Q1400.75 1531.54 1408.77 1531.54 Q1415.96 1531.54 1420.13 1536.18 Q1424.33 1540.8 1424.33 1548.76 M1418.47 1547.04 Q1418.41 1542.23 1415.77 1539.37 Q1413.16 1536.5 1408.83 1536.5 Q1403.93 1536.5 1400.97 1539.27 Q1398.04 1542.04 1397.6 1547.07 L1418.47 1547.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 205.121,1250.16 2352.76,1250.16 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 205.121,977.683 2352.76,977.683 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 205.121,705.207 2352.76,705.207 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 205.121,432.732 2352.76,432.732 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip952)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 205.121,160.256 2352.76,160.256 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,1423.18 205.121,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,1250.16 224.019,1250.16 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,977.683 224.019,977.683 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,705.207 224.019,705.207 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,432.732 224.019,432.732 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip950)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 205.121,160.256 224.019,160.256 \n",
" \"/>\n",
"<path clip-path=\"url(#clip950)\" d=\"M117.825 1263.5 L125.464 1263.5 L125.464 1237.14 L117.154 1238.8 L117.154 1234.54 L125.418 1232.88 L130.093 1232.88 L130.093 1263.5 L137.732 1263.5 L137.732 1267.44 L117.825 1267.44 L117.825 1263.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M157.177 1235.96 Q153.566 1235.96 151.737 1239.52 Q149.931 1243.06 149.931 1250.19 Q149.931 1257.3 151.737 1260.86 Q153.566 1264.41 157.177 1264.41 Q160.811 1264.41 162.616 1260.86 Q164.445 1257.3 164.445 1250.19 Q164.445 1243.06 162.616 1239.52 Q160.811 1235.96 157.177 1235.96 M157.177 1232.25 Q162.987 1232.25 166.042 1236.86 Q169.121 1241.44 169.121 1250.19 Q169.121 1258.92 166.042 1263.53 Q162.987 1268.11 157.177 1268.11 Q151.366 1268.11 148.288 1263.53 Q145.232 1258.92 145.232 1250.19 Q145.232 1241.44 148.288 1236.86 Q151.366 1232.25 157.177 1232.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M121.043 991.027 L137.362 991.027 L137.362 994.963 L115.418 994.963 L115.418 991.027 Q118.08 988.273 122.663 983.643 Q127.269 978.99 128.45 977.648 Q130.695 975.125 131.575 973.389 Q132.478 971.629 132.478 969.94 Q132.478 967.185 130.533 965.449 Q128.612 963.713 125.51 963.713 Q123.311 963.713 120.857 964.477 Q118.427 965.24 115.649 966.791 L115.649 962.069 Q118.473 960.935 120.927 960.356 Q123.38 959.778 125.418 959.778 Q130.788 959.778 133.982 962.463 Q137.177 965.148 137.177 969.639 Q137.177 971.768 136.367 973.69 Q135.579 975.588 133.473 978.18 Q132.894 978.852 129.792 982.069 Q126.691 985.264 121.043 991.027 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M157.177 963.481 Q153.566 963.481 151.737 967.046 Q149.931 970.588 149.931 977.717 Q149.931 984.824 151.737 988.389 Q153.566 991.93 157.177 991.93 Q160.811 991.93 162.616 988.389 Q164.445 984.824 164.445 977.717 Q164.445 970.588 162.616 967.046 Q160.811 963.481 157.177 963.481 M157.177 959.778 Q162.987 959.778 166.042 964.384 Q169.121 968.967 169.121 977.717 Q169.121 986.444 166.042 991.051 Q162.987 995.634 157.177 995.634 Q151.366 995.634 148.288 991.051 Q145.232 986.444 145.232 977.717 Q145.232 968.967 148.288 964.384 Q151.366 959.778 157.177 959.778 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M131.181 703.853 Q134.538 704.571 136.413 706.839 Q138.311 709.108 138.311 712.441 Q138.311 717.557 134.792 720.358 Q131.274 723.158 124.793 723.158 Q122.617 723.158 120.302 722.719 Q118.01 722.302 115.556 721.445 L115.556 716.932 Q117.501 718.066 119.816 718.645 Q122.13 719.223 124.654 719.223 Q129.052 719.223 131.343 717.487 Q133.658 715.751 133.658 712.441 Q133.658 709.385 131.505 707.672 Q129.376 705.936 125.556 705.936 L121.529 705.936 L121.529 702.094 L125.742 702.094 Q129.191 702.094 131.019 700.728 Q132.848 699.339 132.848 696.747 Q132.848 694.085 130.95 692.672 Q129.075 691.237 125.556 691.237 Q123.635 691.237 121.436 691.654 Q119.237 692.071 116.598 692.95 L116.598 688.784 Q119.26 688.043 121.575 687.673 Q123.913 687.302 125.973 687.302 Q131.297 687.302 134.399 689.733 Q137.501 692.14 137.501 696.26 Q137.501 699.131 135.857 701.122 Q134.214 703.089 131.181 703.853 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M157.177 691.006 Q153.566 691.006 151.737 694.571 Q149.931 698.112 149.931 705.242 Q149.931 712.348 151.737 715.913 Q153.566 719.455 157.177 719.455 Q160.811 719.455 162.616 715.913 Q164.445 712.348 164.445 705.242 Q164.445 698.112 162.616 694.571 Q160.811 691.006 157.177 691.006 M157.177 687.302 Q162.987 687.302 166.042 691.909 Q169.121 696.492 169.121 705.242 Q169.121 713.969 166.042 718.575 Q162.987 723.158 157.177 723.158 Q151.366 723.158 148.288 718.575 Q145.232 713.969 145.232 705.242 Q145.232 696.492 148.288 691.909 Q151.366 687.302 157.177 687.302 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M129.862 419.526 L118.056 437.975 L129.862 437.975 L129.862 419.526 M128.635 415.452 L134.515 415.452 L134.515 437.975 L139.445 437.975 L139.445 441.864 L134.515 441.864 L134.515 450.012 L129.862 450.012 L129.862 441.864 L114.26 441.864 L114.26 437.35 L128.635 415.452 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M157.177 418.53 Q153.566 418.53 151.737 422.095 Q149.931 425.637 149.931 432.766 Q149.931 439.873 151.737 443.438 Q153.566 446.979 157.177 446.979 Q160.811 446.979 162.616 443.438 Q164.445 439.873 164.445 432.766 Q164.445 425.637 162.616 422.095 Q160.811 418.53 157.177 418.53 M157.177 414.827 Q162.987 414.827 166.042 419.433 Q169.121 424.016 169.121 432.766 Q169.121 441.493 166.042 446.1 Q162.987 450.683 157.177 450.683 Q151.366 450.683 148.288 446.1 Q145.232 441.493 145.232 432.766 Q145.232 424.016 148.288 419.433 Q151.366 414.827 157.177 414.827 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M117.061 142.976 L135.417 142.976 L135.417 146.911 L121.343 146.911 L121.343 155.384 Q122.362 155.036 123.38 154.874 Q124.399 154.689 125.418 154.689 Q131.205 154.689 134.584 157.86 Q137.964 161.032 137.964 166.448 Q137.964 172.027 134.492 175.129 Q131.019 178.208 124.7 178.208 Q122.524 178.208 120.255 177.837 Q118.01 177.467 115.603 176.726 L115.603 172.027 Q117.686 173.161 119.908 173.717 Q122.13 174.272 124.607 174.272 Q128.612 174.272 130.95 172.166 Q133.288 170.059 133.288 166.448 Q133.288 162.837 130.95 160.731 Q128.612 158.624 124.607 158.624 Q122.732 158.624 120.857 159.041 Q119.006 159.458 117.061 160.337 L117.061 142.976 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M157.177 146.055 Q153.566 146.055 151.737 149.62 Q149.931 153.161 149.931 160.291 Q149.931 167.397 151.737 170.962 Q153.566 174.504 157.177 174.504 Q160.811 174.504 162.616 170.962 Q164.445 167.397 164.445 160.291 Q164.445 153.161 162.616 149.62 Q160.811 146.055 157.177 146.055 M157.177 142.351 Q162.987 142.351 166.042 146.958 Q169.121 151.541 169.121 160.291 Q169.121 169.018 166.042 173.624 Q162.987 178.208 157.177 178.208 Q151.366 178.208 148.288 173.624 Q145.232 169.018 145.232 160.291 Q145.232 151.541 148.288 146.958 Q151.366 142.351 157.177 142.351 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M16.4842 834.405 L16.4842 794.206 L21.895 794.206 L21.895 811.075 L64.0042 811.075 L64.0042 817.536 L21.895 817.536 L21.895 834.405 L16.4842 834.405 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M22.818 777.177 L46.4666 785.898 L46.4666 768.424 L22.818 777.177 M16.4842 780.806 L16.4842 773.517 L64.0042 755.407 L64.0042 762.091 L51.8138 766.419 L51.8138 787.84 L64.0042 792.168 L64.0042 798.948 L16.4842 780.806 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M16.4842 750.76 L16.4842 743.853 L34.149 732.044 L16.4842 720.172 L16.4842 713.266 L39.3052 728.543 L64.0042 712.247 L64.0042 719.154 L43.793 732.522 L64.0042 745.985 L64.0042 752.924 L38.6368 735.959 L16.4842 750.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M727.165 14.0809 L727.165 22.0612 Q722.506 19.8332 718.374 18.7395 Q714.242 17.6457 710.394 17.6457 Q703.71 17.6457 700.064 20.2383 Q696.459 22.8309 696.459 27.611 Q696.459 31.6214 698.849 33.6873 Q701.279 35.7128 708.004 36.9686 L712.946 37.9813 Q722.101 39.7232 726.436 44.1387 Q730.811 48.5136 730.811 55.8863 Q730.811 64.6767 724.896 69.2137 Q719.022 73.7508 707.639 73.7508 Q703.345 73.7508 698.484 72.7785 Q693.664 71.8063 688.479 69.9024 L688.479 61.4765 Q693.461 64.2716 698.241 65.6895 Q703.021 67.1073 707.639 67.1073 Q714.647 67.1073 718.455 64.3527 Q722.263 61.598 722.263 56.4939 Q722.263 52.0379 719.509 49.5264 Q716.794 47.0148 710.556 45.759 L705.573 44.7868 Q696.418 42.9639 692.327 39.075 Q688.236 35.1862 688.236 28.2591 Q688.236 20.2383 693.866 15.6203 Q699.538 11.0023 709.462 11.0023 Q713.716 11.0023 718.131 11.7719 Q722.547 12.5416 727.165 14.0809 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M775.897 28.9478 L775.897 35.9153 Q772.737 34.1734 769.537 33.3227 Q766.378 32.4315 763.137 32.4315 Q755.886 32.4315 751.875 37.0496 Q747.865 41.6271 747.865 49.9314 Q747.865 58.2358 751.875 62.8538 Q755.886 67.4314 763.137 67.4314 Q766.378 67.4314 769.537 66.5807 Q772.737 65.6895 775.897 63.9476 L775.897 70.8341 Q772.778 72.2924 769.416 73.0216 Q766.094 73.7508 762.327 73.7508 Q752.078 73.7508 746.042 67.3098 Q740.006 60.8689 740.006 49.9314 Q740.006 38.832 746.082 32.472 Q752.199 26.1121 762.813 26.1121 Q766.256 26.1121 769.537 26.8413 Q772.818 27.5299 775.897 28.9478 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M809.479 49.7694 Q800.446 49.7694 796.962 51.8354 Q793.478 53.9013 793.478 58.8839 Q793.478 62.8538 796.071 65.2034 Q798.704 67.5124 803.2 67.5124 Q809.398 67.5124 813.125 63.1374 Q816.892 58.7219 816.892 51.4303 L816.892 49.7694 L809.479 49.7694 M824.346 46.6907 L824.346 72.576 L816.892 72.576 L816.892 65.6895 Q814.34 69.8214 810.532 71.8063 Q806.725 73.7508 801.215 73.7508 Q794.248 73.7508 790.116 69.8619 Q786.024 65.9325 786.024 59.3701 Q786.024 51.7138 791.129 47.825 Q796.273 43.9361 806.441 43.9361 L816.892 43.9361 L816.892 43.2069 Q816.892 38.0623 813.49 35.2672 Q810.127 32.4315 804.01 32.4315 Q800.122 32.4315 796.435 33.3632 Q792.749 34.295 789.346 36.1584 L789.346 29.2718 Q793.438 27.692 797.286 26.9223 Q801.134 26.1121 804.78 26.1121 Q814.624 26.1121 819.485 31.2163 Q824.346 36.3204 824.346 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M847.072 14.324 L847.072 27.2059 L862.424 27.2059 L862.424 32.9987 L847.072 32.9987 L847.072 57.6282 Q847.072 63.1779 848.57 64.7578 Q850.11 66.3376 854.768 66.3376 L862.424 66.3376 L862.424 72.576 L854.768 72.576 Q846.14 72.576 842.859 69.3758 Q839.577 66.1351 839.577 57.6282 L839.577 32.9987 L834.109 32.9987 L834.109 27.2059 L839.577 27.2059 L839.577 14.324 L847.072 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M879.6 14.324 L879.6 27.2059 L894.953 27.2059 L894.953 32.9987 L879.6 32.9987 L879.6 57.6282 Q879.6 63.1779 881.099 64.7578 Q882.638 66.3376 887.297 66.3376 L894.953 66.3376 L894.953 72.576 L887.297 72.576 Q878.669 72.576 875.387 69.3758 Q872.106 66.1351 872.106 57.6282 L872.106 32.9987 L866.637 32.9987 L866.637 27.2059 L872.106 27.2059 L872.106 14.324 L879.6 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M943.564 48.0275 L943.564 51.6733 L909.293 51.6733 Q909.78 59.3701 913.911 63.421 Q918.084 67.4314 925.497 67.4314 Q929.791 67.4314 933.801 66.3781 Q937.852 65.3249 941.822 63.2184 L941.822 70.267 Q937.812 71.9684 933.599 72.8596 Q929.386 73.7508 925.051 73.7508 Q914.195 73.7508 907.835 67.4314 Q901.516 61.1119 901.516 50.3365 Q901.516 39.1965 907.511 32.6746 Q913.547 26.1121 923.755 26.1121 Q932.91 26.1121 938.217 32.0264 Q943.564 37.9003 943.564 48.0275 M936.11 45.84 Q936.029 39.7232 932.667 36.0774 Q929.345 32.4315 923.836 32.4315 Q917.598 32.4315 913.83 35.9558 Q910.104 39.4801 909.536 45.8805 L936.11 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M982.088 34.1734 Q980.832 33.4443 979.334 33.1202 Q977.875 32.7556 976.093 32.7556 Q969.773 32.7556 966.371 36.8875 Q963.008 40.9789 963.008 48.6757 L963.008 72.576 L955.514 72.576 L955.514 27.2059 L963.008 27.2059 L963.008 34.2544 Q965.358 30.1225 969.125 28.1376 Q972.893 26.1121 978.28 26.1121 Q979.05 26.1121 979.982 26.2337 Q980.913 26.3147 982.048 26.5172 L982.088 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1024.78 18.8205 L1024.78 41.5461 L1035.07 41.5461 Q1040.79 41.5461 1043.9 38.5889 Q1047.02 35.6318 1047.02 30.163 Q1047.02 24.7348 1043.9 21.7777 Q1040.79 18.8205 1035.07 18.8205 L1024.78 18.8205 M1016.6 12.096 L1035.07 12.096 Q1045.24 12.096 1050.43 16.714 Q1055.65 21.2916 1055.65 30.163 Q1055.65 39.1155 1050.43 43.6931 Q1045.24 48.2706 1035.07 48.2706 L1024.78 48.2706 L1024.78 72.576 L1016.6 72.576 L1016.6 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1066.31 9.54393 L1073.76 9.54393 L1073.76 72.576 L1066.31 72.576 L1066.31 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1106.94 32.4315 Q1100.94 32.4315 1097.46 37.1306 Q1093.97 41.7891 1093.97 49.9314 Q1093.97 58.0738 1097.42 62.7728 Q1100.9 67.4314 1106.94 67.4314 Q1112.89 67.4314 1116.38 62.7323 Q1119.86 58.0333 1119.86 49.9314 Q1119.86 41.8701 1116.38 37.1711 Q1112.89 32.4315 1106.94 32.4315 M1106.94 26.1121 Q1116.66 26.1121 1122.21 32.4315 Q1127.76 38.7509 1127.76 49.9314 Q1127.76 61.0714 1122.21 67.4314 Q1116.66 73.7508 1106.94 73.7508 Q1097.17 73.7508 1091.62 67.4314 Q1086.12 61.0714 1086.12 49.9314 Q1086.12 38.7509 1091.62 32.4315 Q1097.17 26.1121 1106.94 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1147.49 14.324 L1147.49 27.2059 L1162.84 27.2059 L1162.84 32.9987 L1147.49 32.9987 L1147.49 57.6282 Q1147.49 63.1779 1148.99 64.7578 Q1150.52 66.3376 1155.18 66.3376 L1162.84 66.3376 L1162.84 72.576 L1155.18 72.576 Q1146.55 72.576 1143.27 69.3758 Q1139.99 66.1351 1139.99 57.6282 L1139.99 32.9987 L1134.52 32.9987 L1134.52 27.2059 L1139.99 27.2059 L1139.99 14.324 L1147.49 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1190.95 12.096 L1242.12 12.096 L1242.12 18.9825 L1220.65 18.9825 L1220.65 72.576 L1212.42 72.576 L1212.42 18.9825 L1190.95 18.9825 L1190.95 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1263.79 20.1573 L1252.69 50.2555 L1274.93 50.2555 L1263.79 20.1573 M1259.17 12.096 L1268.45 12.096 L1291.5 72.576 L1282.99 72.576 L1277.48 57.061 L1250.22 57.061 L1244.71 72.576 L1236.08 72.576 L1259.17 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1297.41 12.096 L1306.2 12.096 L1321.23 34.5785 L1336.34 12.096 L1345.13 12.096 L1325.69 41.141 L1346.43 72.576 L1337.64 72.576 L1320.62 46.8528 L1303.49 72.576 L1294.66 72.576 L1316.25 40.2903 L1297.41 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1377.86 27.2059 L1385.76 27.2059 L1399.94 65.2844 L1414.12 27.2059 L1422.02 27.2059 L1405 72.576 L1394.88 72.576 L1377.86 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1461.23 28.5427 L1461.23 35.5912 Q1458.07 33.9709 1454.67 33.1607 Q1451.26 32.3505 1447.62 32.3505 Q1442.07 32.3505 1439.27 34.0519 Q1436.52 35.7533 1436.52 39.156 Q1436.52 41.7486 1438.5 43.2475 Q1440.49 44.7058 1446.48 46.0426 L1449.04 46.6097 Q1456.98 48.3111 1460.3 51.4303 Q1463.66 54.509 1463.66 60.0587 Q1463.66 66.3781 1458.64 70.0644 Q1453.65 73.7508 1444.9 73.7508 Q1441.26 73.7508 1437.29 73.0216 Q1433.36 72.3329 1428.98 70.9151 L1428.98 63.2184 Q1433.12 65.3654 1437.13 66.4591 Q1441.14 67.5124 1445.07 67.5124 Q1450.33 67.5124 1453.17 65.73 Q1456 63.9071 1456 60.6258 Q1456 57.5877 1453.94 55.9673 Q1451.91 54.3469 1444.99 52.8481 L1442.39 52.2405 Q1435.47 50.7821 1432.39 47.7845 Q1429.31 44.7463 1429.31 39.4801 Q1429.31 33.0797 1433.85 29.5959 Q1438.38 26.1121 1446.73 26.1121 Q1450.86 26.1121 1454.5 26.7198 Q1458.15 27.3274 1461.23 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1538.48 14.0809 L1538.48 22.0612 Q1533.82 19.8332 1529.69 18.7395 Q1525.56 17.6457 1521.71 17.6457 Q1515.03 17.6457 1511.38 20.2383 Q1507.77 22.8309 1507.77 27.611 Q1507.77 31.6214 1510.16 33.6873 Q1512.59 35.7128 1519.32 36.9686 L1524.26 37.9813 Q1533.42 39.7232 1537.75 44.1387 Q1542.13 48.5136 1542.13 55.8863 Q1542.13 64.6767 1536.21 69.2137 Q1530.34 73.7508 1518.95 73.7508 Q1514.66 73.7508 1509.8 72.7785 Q1504.98 71.8063 1499.79 69.9024 L1499.79 61.4765 Q1504.78 64.2716 1509.56 65.6895 Q1514.34 67.1073 1518.95 67.1073 Q1525.96 67.1073 1529.77 64.3527 Q1533.58 61.598 1533.58 56.4939 Q1533.58 52.0379 1530.82 49.5264 Q1528.11 47.0148 1521.87 45.759 L1516.89 44.7868 Q1507.73 42.9639 1503.64 39.075 Q1499.55 35.1862 1499.55 28.2591 Q1499.55 20.2383 1505.18 15.6203 Q1510.85 11.0023 1520.78 11.0023 Q1525.03 11.0023 1529.45 11.7719 Q1533.86 12.5416 1538.48 14.0809 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1575.18 49.7694 Q1566.15 49.7694 1562.66 51.8354 Q1559.18 53.9013 1559.18 58.8839 Q1559.18 62.8538 1561.77 65.2034 Q1564.41 67.5124 1568.9 67.5124 Q1575.1 67.5124 1578.83 63.1374 Q1582.59 58.7219 1582.59 51.4303 L1582.59 49.7694 L1575.18 49.7694 M1590.05 46.6907 L1590.05 72.576 L1582.59 72.576 L1582.59 65.6895 Q1580.04 69.8214 1576.23 71.8063 Q1572.43 73.7508 1566.92 73.7508 Q1559.95 73.7508 1555.82 69.8619 Q1551.73 65.9325 1551.73 59.3701 Q1551.73 51.7138 1556.83 47.825 Q1561.98 43.9361 1572.14 43.9361 L1582.59 43.9361 L1582.59 43.2069 Q1582.59 38.0623 1579.19 35.2672 Q1575.83 32.4315 1569.71 32.4315 Q1565.82 32.4315 1562.14 33.3632 Q1558.45 34.295 1555.05 36.1584 L1555.05 29.2718 Q1559.14 27.692 1562.99 26.9223 Q1566.84 26.1121 1570.48 26.1121 Q1580.33 26.1121 1585.19 31.2163 Q1590.05 36.3204 1590.05 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1605.4 9.54393 L1612.85 9.54393 L1612.85 72.576 L1605.4 72.576 L1605.4 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1667.26 48.0275 L1667.26 51.6733 L1632.99 51.6733 Q1633.47 59.3701 1637.61 63.421 Q1641.78 67.4314 1649.19 67.4314 Q1653.49 67.4314 1657.5 66.3781 Q1661.55 65.3249 1665.52 63.2184 L1665.52 70.267 Q1661.51 71.9684 1657.29 72.8596 Q1653.08 73.7508 1648.75 73.7508 Q1637.89 73.7508 1631.53 67.4314 Q1625.21 61.1119 1625.21 50.3365 Q1625.21 39.1965 1631.21 32.6746 Q1637.24 26.1121 1647.45 26.1121 Q1656.6 26.1121 1661.91 32.0264 Q1667.26 37.9003 1667.26 48.0275 M1659.8 45.84 Q1659.72 39.7232 1656.36 36.0774 Q1653.04 32.4315 1647.53 32.4315 Q1641.29 32.4315 1637.52 35.9558 Q1633.8 39.4801 1633.23 45.8805 L1659.8 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1688 18.8205 L1688 41.5461 L1698.29 41.5461 Q1704 41.5461 1707.12 38.5889 Q1710.24 35.6318 1710.24 30.163 Q1710.24 24.7348 1707.12 21.7777 Q1704 18.8205 1698.29 18.8205 L1688 18.8205 M1679.82 12.096 L1698.29 12.096 Q1708.46 12.096 1713.64 16.714 Q1718.87 21.2916 1718.87 30.163 Q1718.87 39.1155 1713.64 43.6931 Q1708.46 48.2706 1698.29 48.2706 L1688 48.2706 L1688 72.576 L1679.82 72.576 L1679.82 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1754.35 34.1734 Q1753.1 33.4443 1751.6 33.1202 Q1750.14 32.7556 1748.36 32.7556 Q1742.04 32.7556 1738.64 36.8875 Q1735.27 40.9789 1735.27 48.6757 L1735.27 72.576 L1727.78 72.576 L1727.78 27.2059 L1735.27 27.2059 L1735.27 34.2544 Q1737.62 30.1225 1741.39 28.1376 Q1745.16 26.1121 1750.54 26.1121 Q1751.31 26.1121 1752.25 26.2337 Q1753.18 26.3147 1754.31 26.5172 L1754.35 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1762.17 27.2059 L1769.62 27.2059 L1769.62 72.576 L1762.17 72.576 L1762.17 27.2059 M1762.17 9.54393 L1769.62 9.54393 L1769.62 18.9825 L1762.17 18.9825 L1762.17 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1817.87 28.9478 L1817.87 35.9153 Q1814.71 34.1734 1811.51 33.3227 Q1808.35 32.4315 1805.11 32.4315 Q1797.86 32.4315 1793.85 37.0496 Q1789.84 41.6271 1789.84 49.9314 Q1789.84 58.2358 1793.85 62.8538 Q1797.86 67.4314 1805.11 67.4314 Q1808.35 67.4314 1811.51 66.5807 Q1814.71 65.6895 1817.87 63.9476 L1817.87 70.8341 Q1814.75 72.2924 1811.39 73.0216 Q1808.07 73.7508 1804.3 73.7508 Q1794.05 73.7508 1788.02 67.3098 Q1781.98 60.8689 1781.98 49.9314 Q1781.98 38.832 1788.06 32.472 Q1794.17 26.1121 1804.79 26.1121 Q1808.23 26.1121 1811.51 26.8413 Q1814.79 27.5299 1817.87 28.9478 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip950)\" d=\"M1869.64 48.0275 L1869.64 51.6733 L1835.37 51.6733 Q1835.86 59.3701 1839.99 63.421 Q1844.16 67.4314 1851.57 67.4314 Q1855.87 67.4314 1859.88 66.3781 Q1863.93 65.3249 1867.9 63.2184 L1867.9 70.267 Q1863.89 71.9684 1859.68 72.8596 Q1855.46 73.7508 1851.13 73.7508 Q1840.27 73.7508 1833.91 67.4314 Q1827.59 61.1119 1827.59 50.3365 Q1827.59 39.1965 1833.59 32.6746 Q1839.62 26.1121 1849.83 26.1121 Q1858.99 26.1121 1864.29 32.0264 Q1869.64 37.9003 1869.64 48.0275 M1862.19 45.84 Q1862.11 39.7232 1858.74 36.0774 Q1855.42 32.4315 1849.91 32.4315 Q1843.67 32.4315 1839.91 35.9558 Q1836.18 39.4801 1835.61 45.8805 L1862.19 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip952)\" cx=\"687.357\" cy=\"868.692\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"478.563\" cy=\"934.086\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"478.563\" cy=\"577.144\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"401.232\" cy=\"612.565\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"401.232\" cy=\"536.272\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"401.232\" cy=\"740.629\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"745.355\" cy=\"898.665\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"745.355\" cy=\"784.225\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"745.355\" cy=\"1073.05\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"745.355\" cy=\"1007.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"745.355\" cy=\"1113.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"745.355\" cy=\"1007.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"745.355\" cy=\"931.362\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"966.784\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"1026.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"980.407\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"893.215\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"1045.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"972.233\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"1026.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"1152.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"988.582\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"1108.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"1127.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"1097.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"1143.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"1070.32\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"1119.37\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"1021.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"950.435\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"1176.59\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"1127.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"1162.97\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"1165.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"1154.79\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"621.625\" cy=\"1007.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"621.625\" cy=\"977.683\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"621.625\" cy=\"950.435\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"621.625\" cy=\"849.619\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"517.229\" cy=\"683.409\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"517.229\" cy=\"571.694\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"443.764\" cy=\"797.849\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"443.764\" cy=\"833.271\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"443.764\" cy=\"849.619\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"443.764\" cy=\"944.985\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"443.764\" cy=\"996.756\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"443.764\" cy=\"977.683\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"443.764\" cy=\"1070.32\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"443.764\" cy=\"1130.27\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"443.764\" cy=\"994.031\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"482.43\" cy=\"985.857\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"482.43\" cy=\"964.059\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"482.43\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"482.43\" cy=\"885.041\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1356.27\" cy=\"1007.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"416.698\" cy=\"558.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"753.088\" cy=\"849.619\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"532.695\" cy=\"661.611\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"640.958\" cy=\"887.766\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"640.958\" cy=\"988.582\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"640.958\" cy=\"1013.1\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"640.958\" cy=\"1086.67\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"640.958\" cy=\"917.738\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"640.958\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"378.033\" cy=\"623.465\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"845.885\" cy=\"882.316\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"845.885\" cy=\"994.031\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"876.818\" cy=\"923.187\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"876.818\" cy=\"1048.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"876.818\" cy=\"953.16\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"722.156\" cy=\"863.243\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"722.156\" cy=\"931.362\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"722.156\" cy=\"901.389\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"722.156\" cy=\"885.041\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1081.74\" cy=\"865.968\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1081.74\" cy=\"939.536\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1081.74\" cy=\"977.683\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1081.74\" cy=\"955.885\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1081.74\" cy=\"944.985\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1081.74\" cy=\"969.508\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"629.359\" cy=\"759.702\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"629.359\" cy=\"871.417\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"629.359\" cy=\"846.894\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"629.359\" cy=\"898.665\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"497.896\" cy=\"871.417\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"497.896\" cy=\"797.849\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"497.896\" cy=\"909.564\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"497.896\" cy=\"917.738\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"586.827\" cy=\"879.591\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"586.827\" cy=\"740.629\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"586.827\" cy=\"906.839\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"586.827\" cy=\"923.187\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"586.827\" cy=\"898.665\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"586.827\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"586.827\" cy=\"961.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"610.026\" cy=\"748.803\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"610.026\" cy=\"939.536\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"610.026\" cy=\"468.154\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"610.026\" cy=\"329.191\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"610.026\" cy=\"618.015\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1027.61\" cy=\"773.326\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1027.61\" cy=\"800.574\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1027.61\" cy=\"1015.83\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1027.61\" cy=\"996.756\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1027.61\" cy=\"974.958\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1027.61\" cy=\"991.306\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1027.61\" cy=\"991.306\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1027.61\" cy=\"966.784\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1027.61\" cy=\"983.132\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1027.61\" cy=\"994.031\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1027.61\" cy=\"931.362\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1213.21\" cy=\"901.389\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1213.21\" cy=\"1010.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1213.21\" cy=\"1013.1\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1213.21\" cy=\"1018.55\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1213.21\" cy=\"1024\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1213.21\" cy=\"944.985\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1213.21\" cy=\"999.481\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1213.21\" cy=\"966.784\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1213.21\" cy=\"996.756\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"269.77\" cy=\"923.187\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"269.77\" cy=\"969.508\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"269.77\" cy=\"964.059\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"269.77\" cy=\"1051.25\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"269.77\" cy=\"1010.38\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"269.77\" cy=\"939.536\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"269.77\" cy=\"1094.85\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1232.54\" cy=\"1081.22\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1232.54\" cy=\"1032.18\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1232.54\" cy=\"1132.99\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1232.54\" cy=\"999.481\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1232.54\" cy=\"988.582\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1232.54\" cy=\"895.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1232.54\" cy=\"1021.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1232.54\" cy=\"1097.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1232.54\" cy=\"1029.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1232.54\" cy=\"1048.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1232.54\" cy=\"1056.7\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1232.54\" cy=\"1160.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1232.54\" cy=\"1037.63\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1232.54\" cy=\"1141.17\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1232.54\" cy=\"1130.27\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"1157.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"1097.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"1201.11\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"1146.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"1097.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"1124.82\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"1037.63\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"1103.02\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"936.811\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"988.582\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"1105.75\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"994.031\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"1059.43\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"1097.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"1165.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"397.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"860.518\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"887.766\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"786.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"904.114\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"874.142\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"874.142\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"915.013\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"1048.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1101.08\" cy=\"1002.21\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"687.357\" cy=\"893.215\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"687.357\" cy=\"879.591\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"687.357\" cy=\"906.839\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"687.357\" cy=\"721.556\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"687.357\" cy=\"890.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"687.357\" cy=\"852.344\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"687.357\" cy=\"707.932\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"289.102\" cy=\"509.025\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"289.102\" cy=\"438.181\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"289.102\" cy=\"536.272\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"289.102\" cy=\"489.952\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"289.102\" cy=\"637.088\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"289.102\" cy=\"803.298\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"289.102\" cy=\"716.106\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"289.102\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1081.74\" cy=\"650.712\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1081.74\" cy=\"710.657\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1081.74\" cy=\"571.694\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1081.74\" cy=\"514.474\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1081.74\" cy=\"691.583\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1081.74\" cy=\"530.823\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"567.494\" cy=\"675.235\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"567.494\" cy=\"729.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"528.828\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"814.953\" cy=\"615.29\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"814.953\" cy=\"697.033\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"814.953\" cy=\"579.868\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1097.21\" cy=\"571.694\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1097.21\" cy=\"626.189\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"888.417\" cy=\"865.968\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"888.417\" cy=\"370.062\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"408.965\" cy=\"201.128\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"408.965\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"613.892\" cy=\"906.839\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"613.892\" cy=\"857.793\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"613.892\" cy=\"909.564\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"613.892\" cy=\"857.793\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"613.892\" cy=\"977.683\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"613.892\" cy=\"931.362\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"613.892\" cy=\"996.756\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"613.892\" cy=\"912.288\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"613.892\" cy=\"756.977\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"613.892\" cy=\"876.867\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"613.892\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"610.026\" cy=\"887.766\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"610.026\" cy=\"740.629\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"610.026\" cy=\"936.811\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"610.026\" cy=\"895.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"795.124\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"931.362\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"773.326\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"702.482\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"301.944\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"498.126\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"661.611\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"250.173\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"664.336\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"860.518\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"658.886\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"386.411\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"206.577\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"732.455\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"868.692\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"838.72\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"729.889\" cy=\"664.336\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"702.823\" cy=\"876.867\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"702.823\" cy=\"887.766\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"702.823\" cy=\"923.187\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"702.823\" cy=\"974.958\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"702.823\" cy=\"917.738\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"702.823\" cy=\"876.867\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"818.819\" cy=\"1043.08\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"818.819\" cy=\"1018.55\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"818.819\" cy=\"860.518\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"818.819\" cy=\"964.059\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"818.819\" cy=\"855.069\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"818.819\" cy=\"808.748\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"818.819\" cy=\"857.793\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"818.819\" cy=\"846.894\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"818.819\" cy=\"716.106\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"818.819\" cy=\"356.439\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"760.821\" cy=\"925.912\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"760.821\" cy=\"953.16\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"486.296\" cy=\"323.742\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"563.627\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"563.627\" cy=\"541.722\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"563.627\" cy=\"702.482\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"563.627\" cy=\"601.666\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"563.627\" cy=\"348.264\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"563.627\" cy=\"192.953\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"563.627\" cy=\"677.96\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"563.627\" cy=\"528.098\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"563.627\" cy=\"901.389\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"563.627\" cy=\"686.134\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"563.627\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"563.627\" cy=\"337.365\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"405.099\" cy=\"958.609\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"405.099\" cy=\"947.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"405.099\" cy=\"835.995\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"405.099\" cy=\"857.793\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"405.099\" cy=\"563.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"524.962\" cy=\"639.813\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"524.962\" cy=\"650.712\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"524.962\" cy=\"618.015\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"524.962\" cy=\"620.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"524.962\" cy=\"729.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"378.033\" cy=\"566.245\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"378.033\" cy=\"285.595\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"378.033\" cy=\"558.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"378.033\" cy=\"269.246\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"308.435\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"644.825\" cy=\"645.263\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"702.823\" cy=\"923.187\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"474.697\" cy=\"974.958\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"675.757\" cy=\"890.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"675.757\" cy=\"915.013\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"675.757\" cy=\"846.894\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"490.163\" cy=\"746.078\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"490.163\" cy=\"506.3\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"490.163\" cy=\"762.427\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"660.291\" cy=\"871.417\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"660.291\" cy=\"931.362\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"660.291\" cy=\"743.354\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"660.291\" cy=\"784.225\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"660.291\" cy=\"969.508\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"927.083\" cy=\"909.564\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"927.083\" cy=\"732.455\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"927.083\" cy=\"846.894\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"814.953\" cy=\"923.187\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"814.953\" cy=\"803.298\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"814.953\" cy=\"620.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"401.232\" cy=\"538.997\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"401.232\" cy=\"748.803\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"401.232\" cy=\"612.565\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"401.232\" cy=\"754.253\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"718.289\" cy=\"901.389\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"718.289\" cy=\"969.508\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"718.289\" cy=\"1083.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"718.289\" cy=\"920.463\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"718.289\" cy=\"994.031\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"718.289\" cy=\"934.086\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"718.289\" cy=\"874.142\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"718.289\" cy=\"1081.22\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"718.289\" cy=\"1037.63\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"718.289\" cy=\"983.132\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"718.289\" cy=\"893.215\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"718.289\" cy=\"950.435\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"652.558\" cy=\"874.142\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"652.558\" cy=\"893.215\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"652.558\" cy=\"966.784\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"652.558\" cy=\"1018.55\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"652.558\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"652.558\" cy=\"852.344\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"652.558\" cy=\"895.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"652.558\" cy=\"917.738\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1205.47\" cy=\"996.756\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1205.47\" cy=\"906.839\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1205.47\" cy=\"983.132\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"718.289\" cy=\"1056.7\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"718.289\" cy=\"994.031\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"408.965\" cy=\"917.738\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"408.965\" cy=\"958.609\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"408.965\" cy=\"947.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"408.965\" cy=\"991.306\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"408.965\" cy=\"1018.55\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"408.965\" cy=\"961.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"408.965\" cy=\"1004.93\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"408.965\" cy=\"1013.1\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"640.958\" cy=\"631.639\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1174.54\" cy=\"1073.05\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"973.481\" cy=\"871.417\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"973.481\" cy=\"672.51\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"903.883\" cy=\"1045.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"903.883\" cy=\"1053.98\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"900.017\" cy=\"893.215\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"625.492\" cy=\"855.069\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"838.152\" cy=\"797.849\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"838.152\" cy=\"898.665\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1132.01\" cy=\"865.968\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1132.01\" cy=\"1015.83\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"265.903\" cy=\"702.482\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"834.286\" cy=\"1026.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"834.286\" cy=\"961.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1037.63\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"931.362\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"904.114\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"906.839\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"980.407\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"955.885\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1064.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"925.912\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"773.326\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"925.912\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"893.215\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"160.256\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1146.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1146.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1113.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1143.89\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1160.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1165.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1244.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1239.26\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1225.64\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1214.74\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1187.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1282.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1326.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1236.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1321\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1244.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1209.29\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1111.2\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"890.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1258.33\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1146.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1176.59\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1165.69\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1182.04\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1291.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1350.97\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1370.05\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1326.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1192.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1296.48\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1291.03\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1386.4\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1198.39\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"762.427\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1053.98\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"773.326\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1113.92\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1053.98\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1034.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1078.5\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1331.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1326.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1318.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1239.26\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1282.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1293.75\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1067.6\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1135.72\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"955.885\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1157.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1203.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1296.48\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1244.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1225.64\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1222.91\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1263.78\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1127.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1138.44\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1083.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1132.99\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1203.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1157.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1261.06\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1285.58\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1293.75\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1173.86\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1236.53\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1056.7\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1021.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1103.02\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1228.36\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1201.11\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1116.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1179.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1138.44\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1168.42\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1157.52\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1108.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1083.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1037.63\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1116.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1138.44\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1176.59\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1154.79\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1116.65\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"977.683\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1075.77\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1040.35\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"991.306\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"972.233\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"939.536\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"980.407\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1004.93\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1002.21\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1002.21\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"974.958\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"980.407\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"988.582\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"890.49\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"710.657\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1146.62\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1160.24\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1067.6\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1195.66\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1124.82\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"939.536\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"895.94\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"876.867\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"841.445\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"928.637\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"961.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"944.985\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"1002.21\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2117.98\" cy=\"961.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2291.97\" cy=\"1108.47\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2291.97\" cy=\"1331.9\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2291.97\" cy=\"1301.93\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2291.97\" cy=\"1152.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"2291.97\" cy=\"974.958\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1054.68\" cy=\"928.637\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1054.68\" cy=\"855.069\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1054.68\" cy=\"893.215\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1054.68\" cy=\"985.857\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1054.68\" cy=\"1024\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1054.68\" cy=\"944.985\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1054.68\" cy=\"1045.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"1054.68\" cy=\"1064.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"598.426\" cy=\"912.288\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"598.426\" cy=\"961.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"598.426\" cy=\"871.417\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"598.426\" cy=\"923.187\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"<circle clip-path=\"url(#clip952)\" cx=\"598.426\" cy=\"1198.39\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
"</svg>\n"
]
},
"execution_count": 26,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"train_plot = scatter(df.TAX,df.SalePrice, title = \"Scatter Plot TAX vs SalePrice\", ylabel = \"TAX\", xlabel = \"SalePrice\",legend = false)"
]
},
{
"cell_type": "code",
"execution_count": 29,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div class=\"data-frame\"><p>5 rows × 14 columns (omitted printing of 5 columns)</p><table class=\"data-frame\"><thead><tr><th></th><th>CRIM</th><th>ZN</th><th>INDUS</th><th>CHAS</th><th>NOX</th><th>RM</th><th>AGE</th><th>DIS</th><th>RAD</th></tr><tr><th></th><th title=\"Float64\">Float64</th><th title=\"Float64\">Float64</th><th title=\"Float64\">Float64</th><th title=\"Float64\">Float64</th><th title=\"Float64\">Float64</th><th title=\"Float64\">Float64</th><th title=\"Float64\">Float64</th><th title=\"Float64\">Float64</th><th title=\"Float64\">Float64</th></tr></thead><tbody><tr><th>1</th><td>0.02731</td><td>0.0</td><td>7.07</td><td>0.0</td><td>0.469</td><td>6.421</td><td>78.9</td><td>4.9671</td><td>2.0</td></tr><tr><th>2</th><td>0.02729</td><td>0.0</td><td>7.07</td><td>0.0</td><td>0.469</td><td>7.185</td><td>61.1</td><td>4.9671</td><td>2.0</td></tr><tr><th>3</th><td>0.03237</td><td>0.0</td><td>2.18</td><td>0.0</td><td>0.458</td><td>6.998</td><td>45.8</td><td>6.0622</td><td>3.0</td></tr><tr><th>4</th><td>0.06905</td><td>0.0</td><td>2.18</td><td>0.0</td><td>0.458</td><td>7.147</td><td>54.2</td><td>6.0622</td><td>3.0</td></tr><tr><th>5</th><td>0.08829</td><td>12.5</td><td>7.87</td><td>0.0</td><td>0.524</td><td>6.012</td><td>66.6</td><td>5.5605</td><td>5.0</td></tr></tbody></table></div>"
],
"text/latex": [
"\\begin{tabular}{r|cccccccccc}\n",
"\t& CRIM & ZN & INDUS & CHAS & NOX & RM & AGE & DIS & RAD & \\\\\n",
"\t\\hline\n",
"\t& Float64 & Float64 & Float64 & Float64 & Float64 & Float64 & Float64 & Float64 & Float64 & \\\\\n",
"\t\\hline\n",
"\t1 & 0.02731 & 0.0 & 7.07 & 0.0 & 0.469 & 6.421 & 78.9 & 4.9671 & 2.0 & $\\dots$ \\\\\n",
"\t2 & 0.02729 & 0.0 & 7.07 & 0.0 & 0.469 & 7.185 & 61.1 & 4.9671 & 2.0 & $\\dots$ \\\\\n",
"\t3 & 0.03237 & 0.0 & 2.18 & 0.0 & 0.458 & 6.998 & 45.8 & 6.0622 & 3.0 & $\\dots$ \\\\\n",
"\t4 & 0.06905 & 0.0 & 2.18 & 0.0 & 0.458 & 7.147 & 54.2 & 6.0622 & 3.0 & $\\dots$ \\\\\n",
"\t5 & 0.08829 & 12.5 & 7.87 & 0.0 & 0.524 & 6.012 & 66.6 & 5.5605 & 5.0 & $\\dots$ \\\\\n",
"\\end{tabular}\n"
],
"text/plain": [
"\u001b[1m5×14 DataFrame\u001b[0m\n",
"\u001b[1m Row \u001b[0m│\u001b[1m CRIM \u001b[0m\u001b[1m ZN \u001b[0m\u001b[1m INDUS \u001b[0m\u001b[1m CHAS \u001b[0m\u001b[1m NOX \u001b[0m\u001b[1m RM \u001b[0m\u001b[1m AGE \u001b[0m\u001b[1m DIS \u001b[0m\u001b[1m\u001b[0m ⋯\n",
"\u001b[1m \u001b[0m│\u001b[90m Float64 \u001b[0m\u001b[90m Float64 \u001b[0m\u001b[90m Float64 \u001b[0m\u001b[90m Float64 \u001b[0m\u001b[90m Float64 \u001b[0m\u001b[90m Float64 \u001b[0m\u001b[90m Float64 \u001b[0m\u001b[90m Float64 \u001b[0m\u001b[90m\u001b[0m ⋯\n",
"─────┼──────────────────────────────────────────────────────────────────────────\n",
" 1 │ 0.02731 0.0 7.07 0.0 0.469 6.421 78.9 4.9671 ⋯\n",
" 2 │ 0.02729 0.0 7.07 0.0 0.469 7.185 61.1 4.9671\n",
" 3 │ 0.03237 0.0 2.18 0.0 0.458 6.998 45.8 6.0622\n",
" 4 │ 0.06905 0.0 2.18 0.0 0.458 7.147 54.2 6.0622\n",
" 5 │ 0.08829 12.5 7.87 0.0 0.524 6.012 66.6 5.5605 ⋯\n",
"\u001b[36m 6 columns omitted\u001b[0m"
]
},
"execution_count": 29,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# Train test split for diving our data \n",
"\n",
"using Lathe.preprocess: TrainTestSplit\n",
"train, test = TrainTestSplit(df,.75) \n",
"first(train, 5)"
]
},
{
"cell_type": "code",
"execution_count": 31,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"(388, 14)\n"
]
}
],
"source": [
"# taking a look at the size of training data \n",
"\n",
"println(size(train))"
]
},
{
"cell_type": "code",
"execution_count": 32,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"(118, 14)\n"
]
}
],
"source": [
"# taking a look at the size of testing data \n",
"\n",
"println(size(test))"
]
},
{
"cell_type": "code",
"execution_count": 37,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"StatsModels.TableRegressionModel{LinearModel{GLM.LmResp{Vector{Float64}}, GLM.DensePredChol{Float64, LinearAlgebra.CholeskyPivoted{Float64, Matrix{Float64}}}}, Matrix{Float64}}\n",
"\n",
"SalePrice ~ 1 + CRIM + ZN + INDUS + CHAS + NOX + RM + AGE + DIS + RAD + TAX + PTRATIO + B + LSTAT\n",
"\n",
"Coefficients:\n",
"────────────────────────────────────────────────────────────────────────────────\n",
" Coef. Std. Error t Pr(>|t|) Lower 95% Upper 95%\n",
"────────────────────────────────────────────────────────────────────────────────\n",
"(Intercept) 32.2344 6.18734 5.21 <1e-06 20.068 44.4007\n",
"CRIM -0.096813 0.0353805 -2.74 0.0065 -0.166383 -0.0272434\n",
"ZN 0.0559225 0.0155536 3.60 0.0004 0.0253389 0.086506\n",
"INDUS 0.037159 0.0711401 0.52 0.6017 -0.102726 0.177044\n",
"CHAS 2.63139 1.02384 2.57 0.0106 0.618184 4.6446\n",
"NOX -12.7104 4.50354 -2.82 0.0050 -21.5658 -3.85495\n",
"RM 3.86041 0.495463 7.79 <1e-13 2.88616 4.83465\n",
"AGE -0.0029226 0.0157267 -0.19 0.8527 -0.0338464 0.0280012\n",
"DIS -1.41053 0.235675 -5.99 <1e-08 -1.87395 -0.947119\n",
"RAD 0.285815 0.075898 3.77 0.0002 0.136575 0.435056\n",
"TAX -0.0119566 0.00427923 -2.79 0.0055 -0.0203709 -0.00354219\n",
"PTRATIO -0.919455 0.154836 -5.94 <1e-08 -1.22391 -0.614998\n",
"B 0.0114862 0.00308641 3.72 0.0002 0.00541735 0.0175551\n",
"LSTAT -0.580496 0.0639863 -9.07 <1e-17 -0.706314 -0.454678\n",
"────────────────────────────────────────────────────────────────────────────────"
]
},
"execution_count": 37,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# building linear regression model with all the features and one target variable \n",
"\n",
"fm = @formula(SalePrice ~ CRIM + ZN + INDUS + CHAS + NOX + RM + AGE + DIS + RAD + TAX + PTRATIO + B + LSTAT) \n",
"linearregressor = lm(fm, train)"
]
},
{
"cell_type": "code",
"execution_count": 47,
"metadata": {
"scrolled": true
},
"outputs": [
{
"data": {
"text/plain": [
"118-element Vector{Union{Missing, Float64}}:\n",
" 30.257569399329533\n",
" 25.102897520234006\n",
" 10.213362687396213\n",
" 18.30609647011218\n",
" 15.918702530891178\n",
" 18.285305920340207\n",
" 11.723530559085212\n",
" 17.367774990939857\n",
" 15.245581037686078\n",
" 19.327415627467538\n",
" 7.4161933158744695\n",
" 23.451131696858674\n",
" 22.92595266546901\n",
" ⋮\n",
" 18.773461129422785\n",
" 22.759388697901052\n",
" 19.0436268251718\n",
" 20.536792254149326\n",
" 19.82291469224453\n",
" 25.6867877444079\n",
" 15.067772405729784\n",
" 19.393643735031073\n",
" 22.371533915466763\n",
" 19.451521650198\n",
" 2.897763250285564\n",
" 21.227743510092843"
]
},
"execution_count": 47,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# making predictions \n",
"\n",
"y_predicted = predict(linearregressor, test) "
]
},
{
"cell_type": "code",
"execution_count": 83,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"R2 Score0.7483442644093596\n",
"MAE 3.269229661186728\n",
"RMSE:- 4.548533879113553\n"
]
}
],
"source": [
"# Evaluating our model using MAE \n",
"\n",
"println(\"R2 Score\", r2(linearregressor)) \n",
"println(\"MAE \", Metrics.mae(y_predicted, test.SalePrice)) \n",
"MSE = Metrics.mse(y_predicted, test.SalePrice) \n",
"println(\"RMSE:- \", sqrt(MSE)) \n",
"\n",
"\n",
"# here our model is performing bad because linear regression does not works well on non-linear data and with some other assumptions which are:- \n",
"# Linear relationship.\n",
"# Multivariate normality.\n",
"# No or little multicollinearity.\n",
"# No auto-correlation.\n",
"# Homoscedasticity\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Julia 1.6.2",
"language": "julia",
"name": "julia-1.6"
},
"language_info": {
"file_extension": ".jl",
"mimetype": "application/julia",
"name": "julia",
"version": "1.6.2"
}
},
"nbformat": 4,
"nbformat_minor": 4
}