{
 "cells": [
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {},
   "outputs": [],
   "source": [
    "# Amira Abdel-Rahman\n",
    "# (c) Massachusetts Institute of Technology 2020\n",
    "\n",
    "# tested using julia 1.5.2 and windows Nvidia geforce gtx 1070 Ti"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Include Dependencies"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {},
   "outputs": [],
   "source": [
    "using LinearAlgebra\n",
    "import JSON\n",
    "using StaticArrays, BenchmarkTools\n",
    "using Base.Threads\n",
    "using CUDA\n",
    "import Base: +, * , -, ^\n",
    "using Plots\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 608,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "axialStrain (generic function with 1 method)"
      ]
     },
     "execution_count": 608,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "include(\"./julia/include/vector.jl\") #utils for vectors and quaternions\n",
    "include(\"./julia/include/material.jl\") #utils for node and edge material\n",
    "include(\"./julia/include/export.jl\") #export simulation data to json\n",
    "include(\"./julia/include/run.jl\") #turn setup to cuda arrays and run simulation\n",
    "include(\"./julia/include/updateEdges.jl\") #edges properties update\n",
    "include(\"./julia/include/externalForces.jl\") #external forces applied to the system\n",
    "include(\"./julia/include/forces.jl\") #force integration\n",
    "include(\"./julia/include/updateNodes.jl\") #nodes properties update"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Create Geometry"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 749,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "axialStrain (generic function with 1 method)"
      ]
     },
     "execution_count": 749,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "name= \"tutorial\"\n",
    "# alternativly you can get a saved setup from an external julia file\n",
    "# include(\"./julia/examples/thermalTest.jl\") #template for multimaterial hierarchical voxels with different thermal coefficient of thermal expansion \n",
    "# include(\"./julia/examples/poissonTest.jl\") #template for hierarchical voxels with global poisson ratio\n",
    "# include(\"./julia/examples/latticeTest.jl\") #template for lattice voxel (small scale)\n",
    "# include(\"./julia/examples/latticeTest2.jl\") #template for lattice voxel (big scale with real params)\n",
    "# include(\"./julia/examples/rhinoTest.jl\") #template for importing geometry from rhino\n",
    "# include(\"./julia/examples/rhinoTestChiral.jl\") #template for importing chiral array\n",
    "# include(\"./julia/examples/rover.jl\") #template for importing chiral array\n",
    "# include(\"./julia/examples/wing.jl\") #template for importing chiral array\n",
    "# include(\"./julia/examples/walkingRobot.jl\") #template for importing chiral array\n",
    "include(\"./julia/examples/nonLinearTest.jl\") #template for hierarchical voxels with global poisson ratio\n",
    "\n",
    "\n",
    "\n",
    "## rerun these just for sanity check for dynamic loads\n",
    "include(\"./julia/include/run.jl\") #turn setup to cuda arrays and run simulation\n",
    "include(\"./julia/include/updateEdges.jl\") #edges properties update\n",
    "include(\"./julia/include/forces.jl\") #force integration\n",
    "include(\"./julia/include/updateNodes.jl\") #nodes properties update"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 750,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "Loaded rhino3dm.\n",
      "Success!\n"
     ]
    },
    {
     "data": {
      "text/plain": [
       "Process(`\u001b[4mnode\u001b[24m \u001b[4mapp1.js\u001b[24m \u001b[4mtutorial\u001b[24m`, ProcessExited(0))"
      ]
     },
     "execution_count": 750,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "#export prev. settings to json\n",
    "fileName=\"./json/$(name)Init.json\"\n",
    "setup1=Dict()\n",
    "setup1[\"setup\"]=setup\n",
    "stringdata = JSON.json(setup1)\n",
    "open(fileName, \"w\") do f\n",
    "        write(f, stringdata)\n",
    "end\n",
    "#run node.js to draw the gerometry using rhino3dm\n",
    "mycommand = `node app1.js $(name)`\n",
    "run(mycommand)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 759,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "externalForce (generic function with 1 method)"
      ]
     },
     "execution_count": 759,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "function externalForce(currentTimeStep,N_position,N_force)\n",
    "    return N_force\n",
    "end"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Run Simulation"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 767,
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "dt: 1.4235251564292887e-5, s: 0.001, mass: 8.0e-6, momentInertiaInverse: 1.8749999999999997e11\n",
      "first timestep took 0.0005638 seconds\n",
      "ran 215 nodes and 374 edges for 5000 time steps took 3.921461 seconds\n"
     ]
    }
   ],
   "source": [
    "# set name for simulation\n",
    "# name= \"tutorial\"\n",
    "# name=\"couponHex\"\n",
    "name=\"coupon\"\n",
    "\n",
    "\n",
    "folderPath=\"./json/tutorial/\" # make sure this folder exists\n",
    "setupSim=getSetup(name);\n",
    "runMetavoxelGPULive!(setupSim,folderPath)"
   ]
  },
  {
   "cell_type": "markdown",
   "metadata": {},
   "source": [
    "# Plot"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 761,
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "\"tutorial\""
      ]
     },
     "execution_count": 761,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "include(\"./julia/include/plotViz.jl\") #plotting\n",
    "name= \"tutorial\""
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 762,
   "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=\"clip380\">\n",
       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip380)\" 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=\"clip381\">\n",
       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip380)\" d=\"\n",
       "M171.181 1486.45 L2352.76 1486.45 L2352.76 123.472 L171.181 123.472  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip382\">\n",
       "    <rect x=\"171\" y=\"123\" width=\"2183\" height=\"1364\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<polyline clip-path=\"url(#clip382)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  223.307,1486.45 223.307,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip382)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  704.169,1486.45 704.169,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip382)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1185.03,1486.45 1185.03,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip382)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1665.89,1486.45 1665.89,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip382)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  2146.75,1486.45 2146.75,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  171.181,1486.45 2352.76,1486.45 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  223.307,1486.45 223.307,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  704.169,1486.45 704.169,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1185.03,1486.45 1185.03,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1665.89,1486.45 1665.89,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  2146.75,1486.45 2146.75,1470.09 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip380)\" d=\"M 0 0 M223.307 1515.64 Q219.696 1515.64 217.867 1519.2 Q216.062 1522.75 216.062 1529.87 Q216.062 1536.98 217.867 1540.55 Q219.696 1544.09 223.307 1544.09 Q226.941 1544.09 228.747 1540.55 Q230.575 1536.98 230.575 1529.87 Q230.575 1522.75 228.747 1519.2 Q226.941 1515.64 223.307 1515.64 M223.307 1511.93 Q229.117 1511.93 232.173 1516.54 Q235.251 1521.12 235.251 1529.87 Q235.251 1538.6 232.173 1543.21 Q229.117 1547.79 223.307 1547.79 Q217.497 1547.79 214.418 1543.21 Q211.363 1538.6 211.363 1529.87 Q211.363 1521.12 214.418 1516.54 Q217.497 1511.93 223.307 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M680.94 1512.56 L699.296 1512.56 L699.296 1516.5 L685.222 1516.5 L685.222 1524.97 Q686.241 1524.62 687.259 1524.46 Q688.278 1524.27 689.296 1524.27 Q695.083 1524.27 698.463 1527.44 Q701.842 1530.62 701.842 1536.03 Q701.842 1541.61 698.37 1544.71 Q694.898 1547.79 688.579 1547.79 Q686.403 1547.79 684.134 1547.42 Q681.889 1547.05 679.481 1546.31 L679.481 1541.61 Q681.565 1542.74 683.787 1543.3 Q686.009 1543.86 688.486 1543.86 Q692.491 1543.86 694.829 1541.75 Q697.167 1539.64 697.167 1536.03 Q697.167 1532.42 694.829 1530.31 Q692.491 1528.21 688.486 1528.21 Q686.611 1528.21 684.736 1528.62 Q682.884 1529.04 680.94 1529.92 L680.94 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M716.912 1515.64 Q713.301 1515.64 711.472 1519.2 Q709.667 1522.75 709.667 1529.87 Q709.667 1536.98 711.472 1540.55 Q713.301 1544.09 716.912 1544.09 Q720.546 1544.09 722.352 1540.55 Q724.18 1536.98 724.18 1529.87 Q724.18 1522.75 722.352 1519.2 Q720.546 1515.64 716.912 1515.64 M716.912 1511.93 Q722.722 1511.93 725.778 1516.54 Q728.856 1521.12 728.856 1529.87 Q728.856 1538.6 725.778 1543.21 Q722.722 1547.79 716.912 1547.79 Q711.102 1547.79 708.023 1543.21 Q704.967 1538.6 704.967 1529.87 Q704.967 1521.12 708.023 1516.54 Q711.102 1511.93 716.912 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M1148.4 1543.18 L1156.04 1543.18 L1156.04 1516.82 L1147.73 1518.49 L1147.73 1514.23 L1155.99 1512.56 L1160.67 1512.56 L1160.67 1543.18 L1168.31 1543.18 L1168.31 1547.12 L1148.4 1547.12 L1148.4 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M1183.38 1515.64 Q1179.76 1515.64 1177.94 1519.2 Q1176.13 1522.75 1176.13 1529.87 Q1176.13 1536.98 1177.94 1540.55 Q1179.76 1544.09 1183.38 1544.09 Q1187.01 1544.09 1188.82 1540.55 Q1190.64 1536.98 1190.64 1529.87 Q1190.64 1522.75 1188.82 1519.2 Q1187.01 1515.64 1183.38 1515.64 M1183.38 1511.93 Q1189.19 1511.93 1192.24 1516.54 Q1195.32 1521.12 1195.32 1529.87 Q1195.32 1538.6 1192.24 1543.21 Q1189.19 1547.79 1183.38 1547.79 Q1177.57 1547.79 1174.49 1543.21 Q1171.43 1538.6 1171.43 1529.87 Q1171.43 1521.12 1174.49 1516.54 Q1177.57 1511.93 1183.38 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M1210.39 1515.64 Q1206.78 1515.64 1204.95 1519.2 Q1203.14 1522.75 1203.14 1529.87 Q1203.14 1536.98 1204.95 1540.55 Q1206.78 1544.09 1210.39 1544.09 Q1214.02 1544.09 1215.83 1540.55 Q1217.66 1536.98 1217.66 1529.87 Q1217.66 1522.75 1215.83 1519.2 Q1214.02 1515.64 1210.39 1515.64 M1210.39 1511.93 Q1216.2 1511.93 1219.26 1516.54 Q1222.33 1521.12 1222.33 1529.87 Q1222.33 1538.6 1219.26 1543.21 Q1216.2 1547.79 1210.39 1547.79 Q1204.58 1547.79 1201.5 1543.21 Q1198.45 1538.6 1198.45 1529.87 Q1198.45 1521.12 1201.5 1516.54 Q1204.58 1511.93 1210.39 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M1629.76 1543.18 L1637.4 1543.18 L1637.4 1516.82 L1629.09 1518.49 L1629.09 1514.23 L1637.35 1512.56 L1642.03 1512.56 L1642.03 1543.18 L1649.67 1543.18 L1649.67 1547.12 L1629.76 1547.12 L1629.76 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M1654.78 1512.56 L1673.14 1512.56 L1673.14 1516.5 L1659.06 1516.5 L1659.06 1524.97 Q1660.08 1524.62 1661.1 1524.46 Q1662.12 1524.27 1663.14 1524.27 Q1668.93 1524.27 1672.3 1527.44 Q1675.68 1530.62 1675.68 1536.03 Q1675.68 1541.61 1672.21 1544.71 Q1668.74 1547.79 1662.42 1547.79 Q1660.24 1547.79 1657.98 1547.42 Q1655.73 1547.05 1653.32 1546.31 L1653.32 1541.61 Q1655.41 1542.74 1657.63 1543.3 Q1659.85 1543.86 1662.33 1543.86 Q1666.33 1543.86 1668.67 1541.75 Q1671.01 1539.64 1671.01 1536.03 Q1671.01 1532.42 1668.67 1530.31 Q1666.33 1528.21 1662.33 1528.21 Q1660.45 1528.21 1658.58 1528.62 Q1656.73 1529.04 1654.78 1529.92 L1654.78 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M1690.75 1515.64 Q1687.14 1515.64 1685.31 1519.2 Q1683.51 1522.75 1683.51 1529.87 Q1683.51 1536.98 1685.31 1540.55 Q1687.14 1544.09 1690.75 1544.09 Q1694.39 1544.09 1696.19 1540.55 Q1698.02 1536.98 1698.02 1529.87 Q1698.02 1522.75 1696.19 1519.2 Q1694.39 1515.64 1690.75 1515.64 M1690.75 1511.93 Q1696.56 1511.93 1699.62 1516.54 Q1702.7 1521.12 1702.7 1529.87 Q1702.7 1538.6 1699.62 1543.21 Q1696.56 1547.79 1690.75 1547.79 Q1684.94 1547.79 1681.86 1543.21 Q1678.81 1538.6 1678.81 1529.87 Q1678.81 1521.12 1681.86 1516.54 Q1684.94 1511.93 1690.75 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M2114.39 1543.18 L2130.71 1543.18 L2130.71 1547.12 L2108.77 1547.12 L2108.77 1543.18 Q2111.43 1540.43 2116.01 1535.8 Q2120.62 1531.15 2121.8 1529.81 Q2124.05 1527.28 2124.93 1525.55 Q2125.83 1523.79 2125.83 1522.1 Q2125.83 1519.34 2123.88 1517.61 Q2121.96 1515.87 2118.86 1515.87 Q2116.66 1515.87 2114.21 1516.63 Q2111.78 1517.4 2109 1518.95 L2109 1514.23 Q2111.82 1513.09 2114.28 1512.51 Q2116.73 1511.93 2118.77 1511.93 Q2124.14 1511.93 2127.33 1514.62 Q2130.53 1517.31 2130.53 1521.8 Q2130.53 1523.93 2129.72 1525.85 Q2128.93 1527.74 2126.82 1530.34 Q2126.25 1531.01 2123.14 1534.23 Q2120.04 1537.42 2114.39 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M2145.78 1515.64 Q2142.17 1515.64 2140.34 1519.2 Q2138.54 1522.75 2138.54 1529.87 Q2138.54 1536.98 2140.34 1540.55 Q2142.17 1544.09 2145.78 1544.09 Q2149.42 1544.09 2151.22 1540.55 Q2153.05 1536.98 2153.05 1529.87 Q2153.05 1522.75 2151.22 1519.2 Q2149.42 1515.64 2145.78 1515.64 M2145.78 1511.93 Q2151.59 1511.93 2154.65 1516.54 Q2157.73 1521.12 2157.73 1529.87 Q2157.73 1538.6 2154.65 1543.21 Q2151.59 1547.79 2145.78 1547.79 Q2139.97 1547.79 2136.89 1543.21 Q2133.84 1538.6 2133.84 1529.87 Q2133.84 1521.12 2136.89 1516.54 Q2139.97 1511.93 2145.78 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M2172.8 1515.64 Q2169.19 1515.64 2167.36 1519.2 Q2165.55 1522.75 2165.55 1529.87 Q2165.55 1536.98 2167.36 1540.55 Q2169.19 1544.09 2172.8 1544.09 Q2176.43 1544.09 2178.24 1540.55 Q2180.06 1536.98 2180.06 1529.87 Q2180.06 1522.75 2178.24 1519.2 Q2176.43 1515.64 2172.8 1515.64 M2172.8 1511.93 Q2178.61 1511.93 2181.66 1516.54 Q2184.74 1521.12 2184.74 1529.87 Q2184.74 1538.6 2181.66 1543.21 Q2178.61 1547.79 2172.8 1547.79 Q2166.99 1547.79 2163.91 1543.21 Q2160.85 1538.6 2160.85 1529.87 Q2160.85 1521.12 2163.91 1516.54 Q2166.99 1511.93 2172.8 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip382)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  171.181,1324.38 2352.76,1324.38 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip382)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  171.181,1064.67 2352.76,1064.67 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip382)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  171.181,804.96 2352.76,804.96 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip382)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  171.181,545.25 2352.76,545.25 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip382)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  171.181,285.539 2352.76,285.539 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  171.181,1486.45 171.181,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  171.181,1324.38 197.36,1324.38 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  171.181,1064.67 197.36,1064.67 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  171.181,804.96 197.36,804.96 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  171.181,545.25 197.36,545.25 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip380)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  171.181,285.539 197.36,285.539 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip380)\" d=\"M 0 0 M50.9921 1324.83 L80.6679 1324.83 L80.6679 1328.77 L50.9921 1328.77 L50.9921 1324.83 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M98.5845 1311.17 L86.779 1329.62 L98.5845 1329.62 L98.5845 1311.17 M97.3576 1307.1 L103.237 1307.1 L103.237 1329.62 L108.168 1329.62 L108.168 1333.51 L103.237 1333.51 L103.237 1341.66 L98.5845 1341.66 L98.5845 1333.51 L82.9827 1333.51 L82.9827 1329 L97.3576 1307.1 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M123.237 1310.18 Q119.626 1310.18 117.797 1313.74 Q115.992 1317.29 115.992 1324.42 Q115.992 1331.52 117.797 1335.09 Q119.626 1338.63 123.237 1338.63 Q126.871 1338.63 128.677 1335.09 Q130.506 1331.52 130.506 1324.42 Q130.506 1317.29 128.677 1313.74 Q126.871 1310.18 123.237 1310.18 M123.237 1306.48 Q129.047 1306.48 132.103 1311.08 Q135.181 1315.67 135.181 1324.42 Q135.181 1333.14 132.103 1337.75 Q129.047 1342.33 123.237 1342.33 Q117.427 1342.33 114.348 1337.75 Q111.293 1333.14 111.293 1324.42 Q111.293 1315.67 114.348 1311.08 Q117.427 1306.48 123.237 1306.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M53.0754 1065.12 L82.7512 1065.12 L82.7512 1069.06 L53.0754 1069.06 L53.0754 1065.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M91.8484 1078.02 L108.168 1078.02 L108.168 1081.95 L86.2234 1081.95 L86.2234 1078.02 Q88.8854 1075.26 93.4688 1070.63 Q98.0752 1065.98 99.2558 1064.64 Q101.501 1062.11 102.381 1060.38 Q103.284 1058.62 103.284 1056.93 Q103.284 1054.17 101.339 1052.44 Q99.4178 1050.7 96.316 1050.7 Q94.1169 1050.7 91.6632 1051.46 Q89.2327 1052.23 86.4549 1053.78 L86.4549 1049.06 Q89.279 1047.92 91.7326 1047.34 Q94.1863 1046.77 96.2234 1046.77 Q101.594 1046.77 104.788 1049.45 Q107.983 1052.14 107.983 1056.63 Q107.983 1058.76 107.172 1060.68 Q106.385 1062.58 104.279 1065.17 Q103.7 1065.84 100.598 1069.06 Q97.4965 1072.25 91.8484 1078.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M123.237 1050.47 Q119.626 1050.47 117.797 1054.03 Q115.992 1057.58 115.992 1064.71 Q115.992 1071.81 117.797 1075.38 Q119.626 1078.92 123.237 1078.92 Q126.871 1078.92 128.677 1075.38 Q130.506 1071.81 130.506 1064.71 Q130.506 1057.58 128.677 1054.03 Q126.871 1050.47 123.237 1050.47 M123.237 1046.77 Q129.047 1046.77 132.103 1051.37 Q135.181 1055.96 135.181 1064.71 Q135.181 1073.43 132.103 1078.04 Q129.047 1082.62 123.237 1082.62 Q117.427 1082.62 114.348 1078.04 Q111.293 1073.43 111.293 1064.71 Q111.293 1055.96 114.348 1051.37 Q117.427 1046.77 123.237 1046.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M123.237 790.759 Q119.626 790.759 117.797 794.323 Q115.992 797.865 115.992 804.995 Q115.992 812.101 117.797 815.666 Q119.626 819.208 123.237 819.208 Q126.871 819.208 128.677 815.666 Q130.506 812.101 130.506 804.995 Q130.506 797.865 128.677 794.323 Q126.871 790.759 123.237 790.759 M123.237 787.055 Q129.047 787.055 132.103 791.661 Q135.181 796.245 135.181 804.995 Q135.181 813.722 132.103 818.328 Q129.047 822.911 123.237 822.911 Q117.427 822.911 114.348 818.328 Q111.293 813.722 111.293 804.995 Q111.293 796.245 114.348 791.661 Q117.427 787.055 123.237 787.055 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M91.8484 558.594 L108.168 558.594 L108.168 562.53 L86.2234 562.53 L86.2234 558.594 Q88.8854 555.84 93.4688 551.21 Q98.0752 546.557 99.2558 545.215 Q101.501 542.692 102.381 540.956 Q103.284 539.196 103.284 537.507 Q103.284 534.752 101.339 533.016 Q99.4178 531.28 96.316 531.28 Q94.1169 531.28 91.6632 532.044 Q89.2327 532.808 86.4549 534.358 L86.4549 529.636 Q89.279 528.502 91.7326 527.923 Q94.1863 527.345 96.2234 527.345 Q101.594 527.345 104.788 530.03 Q107.983 532.715 107.983 537.206 Q107.983 539.335 107.172 541.257 Q106.385 543.155 104.279 545.747 Q103.7 546.419 100.598 549.636 Q97.4965 552.831 91.8484 558.594 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M123.237 531.048 Q119.626 531.048 117.797 534.613 Q115.992 538.155 115.992 545.284 Q115.992 552.391 117.797 555.956 Q119.626 559.497 123.237 559.497 Q126.871 559.497 128.677 555.956 Q130.506 552.391 130.506 545.284 Q130.506 538.155 128.677 534.613 Q126.871 531.048 123.237 531.048 M123.237 527.345 Q129.047 527.345 132.103 531.951 Q135.181 536.534 135.181 545.284 Q135.181 554.011 132.103 558.618 Q129.047 563.201 123.237 563.201 Q117.427 563.201 114.348 558.618 Q111.293 554.011 111.293 545.284 Q111.293 536.534 114.348 531.951 Q117.427 527.345 123.237 527.345 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M98.5845 272.333 L86.779 290.782 L98.5845 290.782 L98.5845 272.333 M97.3576 268.259 L103.237 268.259 L103.237 290.782 L108.168 290.782 L108.168 294.671 L103.237 294.671 L103.237 302.819 L98.5845 302.819 L98.5845 294.671 L82.9827 294.671 L82.9827 290.157 L97.3576 268.259 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M123.237 271.338 Q119.626 271.338 117.797 274.903 Q115.992 278.444 115.992 285.574 Q115.992 292.68 117.797 296.245 Q119.626 299.787 123.237 299.787 Q126.871 299.787 128.677 296.245 Q130.506 292.68 130.506 285.574 Q130.506 278.444 128.677 274.903 Q126.871 271.338 123.237 271.338 M123.237 267.634 Q129.047 267.634 132.103 272.241 Q135.181 276.824 135.181 285.574 Q135.181 294.301 132.103 298.907 Q129.047 303.49 123.237 303.49 Q117.427 303.49 114.348 298.907 Q111.293 294.301 111.293 285.574 Q111.293 276.824 114.348 272.241 Q117.427 267.634 123.237 267.634 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip380)\" d=\"M 0 0 M1283.11 27.2059 L1266.71 49.2833 L1283.97 72.576 L1275.17 72.576 L1261.97 54.752 L1248.76 72.576 L1239.97 72.576 L1257.59 48.8377 L1241.47 27.2059 L1250.26 27.2059 L1262.29 43.369 L1274.32 27.2059 L1283.11 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip382)\" cx=\"232.924\" 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(#clip382)\" cx=\"242.541\" 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(#clip382)\" cx=\"252.159\" 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(#clip382)\" cx=\"261.776\" 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(#clip382)\" cx=\"271.393\" 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(#clip382)\" cx=\"281.01\" 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(#clip382)\" cx=\"290.628\" 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(#clip382)\" cx=\"300.245\" 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(#clip382)\" cx=\"309.862\" 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(#clip382)\" cx=\"319.479\" 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(#clip382)\" cx=\"329.097\" 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(#clip382)\" cx=\"338.714\" 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(#clip382)\" cx=\"348.331\" 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(#clip382)\" cx=\"357.948\" 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(#clip382)\" cx=\"367.566\" 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(#clip382)\" cx=\"377.183\" 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(#clip382)\" cx=\"386.8\" 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(#clip382)\" cx=\"396.417\" 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(#clip382)\" cx=\"406.034\" 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(#clip382)\" cx=\"415.652\" 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(#clip382)\" cx=\"425.269\" cy=\"1443.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(#clip382)\" cx=\"434.886\" cy=\"1443.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(#clip382)\" cx=\"444.503\" cy=\"1443.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(#clip382)\" cx=\"454.121\" cy=\"1443.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(#clip382)\" cx=\"463.738\" cy=\"1443.34\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"473.355\" cy=\"1439.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(#clip382)\" cx=\"482.972\" cy=\"1439.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(#clip382)\" cx=\"492.59\" cy=\"1439.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(#clip382)\" cx=\"502.207\" cy=\"1439.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(#clip382)\" cx=\"511.824\" cy=\"1439.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(#clip382)\" cx=\"521.441\" cy=\"1435.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(#clip382)\" cx=\"531.059\" cy=\"1435.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(#clip382)\" cx=\"540.676\" cy=\"1435.34\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"550.293\" cy=\"1435.34\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"559.91\" cy=\"1435.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(#clip382)\" cx=\"569.528\" cy=\"1431.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(#clip382)\" cx=\"579.145\" cy=\"1431.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(#clip382)\" cx=\"588.762\" cy=\"1431.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(#clip382)\" cx=\"598.379\" cy=\"1431.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(#clip382)\" cx=\"607.996\" cy=\"1431.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(#clip382)\" cx=\"617.614\" cy=\"1428.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(#clip382)\" cx=\"627.231\" cy=\"1428.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(#clip382)\" cx=\"636.848\" cy=\"1428.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(#clip382)\" cx=\"646.465\" cy=\"1428.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(#clip382)\" cx=\"656.083\" cy=\"1428.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(#clip382)\" cx=\"665.7\" cy=\"1425.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(#clip382)\" cx=\"675.317\" cy=\"1425.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(#clip382)\" cx=\"684.934\" cy=\"1425.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(#clip382)\" cx=\"694.552\" cy=\"1425.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(#clip382)\" cx=\"704.169\" cy=\"1425.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(#clip382)\" cx=\"713.786\" cy=\"1423.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(#clip382)\" cx=\"723.403\" cy=\"1423.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(#clip382)\" cx=\"733.021\" cy=\"1423.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(#clip382)\" cx=\"742.638\" cy=\"1423.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(#clip382)\" cx=\"752.255\" cy=\"1423.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(#clip382)\" cx=\"761.872\" cy=\"1421.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(#clip382)\" cx=\"771.49\" cy=\"1421.41\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"781.107\" cy=\"1421.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(#clip382)\" cx=\"790.724\" cy=\"1421.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(#clip382)\" cx=\"800.341\" cy=\"1421.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(#clip382)\" cx=\"809.958\" cy=\"1419.68\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"819.576\" cy=\"1419.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(#clip382)\" cx=\"829.193\" cy=\"1419.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(#clip382)\" cx=\"838.81\" cy=\"1419.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(#clip382)\" cx=\"848.427\" cy=\"1419.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(#clip382)\" cx=\"858.045\" cy=\"1418.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(#clip382)\" cx=\"867.662\" cy=\"1418.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(#clip382)\" cx=\"877.279\" cy=\"1418.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(#clip382)\" cx=\"886.896\" cy=\"1418.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(#clip382)\" cx=\"896.514\" cy=\"1418.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(#clip382)\" cx=\"906.131\" cy=\"1417.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(#clip382)\" cx=\"915.748\" cy=\"1417.23\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"925.365\" cy=\"1417.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(#clip382)\" cx=\"934.983\" cy=\"1417.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(#clip382)\" cx=\"944.6\" cy=\"1417.19\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"954.217\" cy=\"1416.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(#clip382)\" cx=\"963.834\" cy=\"1416.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(#clip382)\" cx=\"973.452\" cy=\"1416.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(#clip382)\" cx=\"983.069\" cy=\"1416.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(#clip382)\" cx=\"992.686\" cy=\"1416.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(#clip382)\" cx=\"1002.3\" cy=\"1416.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(#clip382)\" cx=\"1011.92\" cy=\"1416.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(#clip382)\" cx=\"1021.54\" cy=\"1416.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(#clip382)\" cx=\"1031.15\" cy=\"1416.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(#clip382)\" cx=\"1040.77\" cy=\"1416.14\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1050.39\" cy=\"807.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(#clip382)\" cx=\"1060.01\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1069.62\" cy=\"807.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(#clip382)\" cx=\"1079.24\" cy=\"807.321\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1088.86\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1098.48\" cy=\"807.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(#clip382)\" cx=\"1108.09\" cy=\"807.322\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1117.71\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1127.33\" cy=\"807.349\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1136.94\" cy=\"807.323\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1146.56\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1156.18\" cy=\"807.347\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1165.8\" cy=\"807.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(#clip382)\" cx=\"1175.41\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1185.03\" cy=\"807.345\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1194.65\" cy=\"807.329\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1204.27\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1213.88\" cy=\"807.342\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1223.5\" cy=\"807.332\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1233.12\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1242.73\" cy=\"807.338\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1252.35\" cy=\"807.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(#clip382)\" cx=\"1261.97\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1271.59\" cy=\"807.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(#clip382)\" cx=\"1281.2\" cy=\"807.34\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1290.82\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1300.44\" cy=\"807.331\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1310.05\" cy=\"807.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(#clip382)\" cx=\"1319.67\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1329.29\" cy=\"807.327\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1338.91\" cy=\"807.346\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1348.52\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1358.14\" cy=\"807.324\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1367.76\" cy=\"807.349\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1377.38\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1386.99\" cy=\"807.322\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1396.61\" cy=\"807.351\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1406.23\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1415.84\" cy=\"807.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(#clip382)\" cx=\"1425.46\" cy=\"807.352\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1435.08\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1444.7\" cy=\"807.319\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1454.31\" cy=\"807.352\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1463.93\" cy=\"807.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1473.55\" cy=\"807.318\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1483.17\" cy=\"193.705\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1492.78\" cy=\"193.726\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1502.4\" cy=\"193.746\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1512.02\" cy=\"193.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(#clip382)\" cx=\"1521.63\" cy=\"193.787\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1531.25\" cy=\"193.356\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1540.87\" cy=\"193.377\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1550.49\" cy=\"193.397\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1560.1\" cy=\"193.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(#clip382)\" cx=\"1569.72\" cy=\"193.438\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1579.34\" cy=\"192.659\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1588.95\" cy=\"192.679\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1598.57\" cy=\"192.699\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1608.19\" cy=\"192.719\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1617.81\" cy=\"192.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(#clip382)\" cx=\"1627.42\" cy=\"191.613\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1637.04\" cy=\"191.633\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1646.66\" cy=\"191.653\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1656.28\" cy=\"191.673\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1665.89\" cy=\"191.693\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1675.51\" cy=\"190.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(#clip382)\" cx=\"1685.13\" cy=\"190.239\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1694.74\" cy=\"190.258\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1704.36\" cy=\"190.277\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1713.98\" cy=\"190.296\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1723.6\" cy=\"188.478\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1733.21\" cy=\"188.496\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1742.83\" cy=\"188.514\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1752.45\" cy=\"188.533\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1762.07\" cy=\"188.551\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1771.68\" cy=\"186.388\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1781.3\" cy=\"186.406\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1790.92\" cy=\"186.423\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1800.53\" cy=\"186.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(#clip382)\" cx=\"1810.15\" cy=\"186.457\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1819.77\" cy=\"183.951\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1829.39\" cy=\"183.967\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1839\" cy=\"183.983\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1848.62\" cy=\"183.998\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1858.24\" cy=\"184.014\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1867.85\" cy=\"181.167\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1877.47\" cy=\"181.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(#clip382)\" cx=\"1887.09\" cy=\"181.195\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1896.71\" cy=\"181.209\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1906.32\" cy=\"181.223\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1915.94\" cy=\"178.035\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1925.56\" cy=\"178.048\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1935.18\" cy=\"178.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(#clip382)\" cx=\"1944.79\" cy=\"178.071\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1954.41\" cy=\"178.084\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1964.03\" cy=\"174.557\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1973.64\" cy=\"174.567\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"1983.26\" cy=\"174.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(#clip382)\" cx=\"1992.88\" cy=\"174.586\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"2002.5\" cy=\"174.596\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"2012.11\" cy=\"170.733\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"2021.73\" cy=\"170.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(#clip382)\" cx=\"2031.35\" cy=\"170.747\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"2040.97\" cy=\"170.753\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"2050.58\" cy=\"170.761\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"2060.2\" cy=\"166.563\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"2069.82\" cy=\"166.567\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"2079.43\" cy=\"166.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(#clip382)\" cx=\"2089.05\" cy=\"166.573\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip382)\" cx=\"2098.67\" cy=\"166.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(#clip382)\" cx=\"2108.29\" 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(#clip382)\" cx=\"2117.9\" 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(#clip382)\" cx=\"2127.52\" 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(#clip382)\" cx=\"2137.14\" 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(#clip382)\" cx=\"2146.75\" 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(#clip382)\" cx=\"2156.37\" 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(#clip382)\" cx=\"2165.99\" 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(#clip382)\" cx=\"2175.61\" 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(#clip382)\" cx=\"2185.22\" 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(#clip382)\" cx=\"2194.84\" 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(#clip382)\" cx=\"2204.46\" 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(#clip382)\" cx=\"2214.08\" 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(#clip382)\" cx=\"2223.69\" 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(#clip382)\" cx=\"2233.31\" 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(#clip382)\" cx=\"2242.93\" 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(#clip382)\" cx=\"2252.54\" 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(#clip382)\" cx=\"2262.16\" 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(#clip382)\" cx=\"2271.78\" 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(#clip382)\" cx=\"2281.4\" 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(#clip382)\" cx=\"2291.01\" cy=\"162.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "</svg>\n"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "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=\"clip420\">\n",
       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip420)\" 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=\"clip421\">\n",
       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip420)\" d=\"\n",
       "M233.681 1486.45 L2352.76 1486.45 L2352.76 123.472 L233.681 123.472  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip422\">\n",
       "    <rect x=\"233\" y=\"123\" width=\"2120\" height=\"1364\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<polyline clip-path=\"url(#clip422)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  284.313,1486.45 284.313,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip422)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  751.399,1486.45 751.399,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip422)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1218.48,1486.45 1218.48,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip422)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1685.57,1486.45 1685.57,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip422)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  2152.66,1486.45 2152.66,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  233.681,1486.45 2352.76,1486.45 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  284.313,1486.45 284.313,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  751.399,1486.45 751.399,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1218.48,1486.45 1218.48,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1685.57,1486.45 1685.57,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  2152.66,1486.45 2152.66,1470.09 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip420)\" d=\"M 0 0 M284.313 1515.64 Q280.702 1515.64 278.873 1519.2 Q277.068 1522.75 277.068 1529.87 Q277.068 1536.98 278.873 1540.55 Q280.702 1544.09 284.313 1544.09 Q287.947 1544.09 289.753 1540.55 Q291.582 1536.98 291.582 1529.87 Q291.582 1522.75 289.753 1519.2 Q287.947 1515.64 284.313 1515.64 M284.313 1511.93 Q290.123 1511.93 293.179 1516.54 Q296.258 1521.12 296.258 1529.87 Q296.258 1538.6 293.179 1543.21 Q290.123 1547.79 284.313 1547.79 Q278.503 1547.79 275.424 1543.21 Q272.369 1538.6 272.369 1529.87 Q272.369 1521.12 275.424 1516.54 Q278.503 1511.93 284.313 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M728.17 1512.56 L746.526 1512.56 L746.526 1516.5 L732.452 1516.5 L732.452 1524.97 Q733.471 1524.62 734.489 1524.46 Q735.508 1524.27 736.526 1524.27 Q742.313 1524.27 745.693 1527.44 Q749.073 1530.62 749.073 1536.03 Q749.073 1541.61 745.6 1544.71 Q742.128 1547.79 735.809 1547.79 Q733.633 1547.79 731.364 1547.42 Q729.119 1547.05 726.712 1546.31 L726.712 1541.61 Q728.795 1542.74 731.017 1543.3 Q733.239 1543.86 735.716 1543.86 Q739.721 1543.86 742.059 1541.75 Q744.397 1539.64 744.397 1536.03 Q744.397 1532.42 742.059 1530.31 Q739.721 1528.21 735.716 1528.21 Q733.841 1528.21 731.966 1528.62 Q730.114 1529.04 728.17 1529.92 L728.17 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M764.142 1515.64 Q760.531 1515.64 758.702 1519.2 Q756.897 1522.75 756.897 1529.87 Q756.897 1536.98 758.702 1540.55 Q760.531 1544.09 764.142 1544.09 Q767.776 1544.09 769.582 1540.55 Q771.41 1536.98 771.41 1529.87 Q771.41 1522.75 769.582 1519.2 Q767.776 1515.64 764.142 1515.64 M764.142 1511.93 Q769.952 1511.93 773.008 1516.54 Q776.086 1521.12 776.086 1529.87 Q776.086 1538.6 773.008 1543.21 Q769.952 1547.79 764.142 1547.79 Q758.332 1547.79 755.253 1543.21 Q752.198 1538.6 752.198 1529.87 Q752.198 1521.12 755.253 1516.54 Q758.332 1511.93 764.142 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M1181.85 1543.18 L1189.49 1543.18 L1189.49 1516.82 L1181.18 1518.49 L1181.18 1514.23 L1189.45 1512.56 L1194.12 1512.56 L1194.12 1543.18 L1201.76 1543.18 L1201.76 1547.12 L1181.85 1547.12 L1181.85 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M1216.83 1515.64 Q1213.22 1515.64 1211.39 1519.2 Q1209.58 1522.75 1209.58 1529.87 Q1209.58 1536.98 1211.39 1540.55 Q1213.22 1544.09 1216.83 1544.09 Q1220.46 1544.09 1222.27 1540.55 Q1224.1 1536.98 1224.1 1529.87 Q1224.1 1522.75 1222.27 1519.2 Q1220.46 1515.64 1216.83 1515.64 M1216.83 1511.93 Q1222.64 1511.93 1225.7 1516.54 Q1228.77 1521.12 1228.77 1529.87 Q1228.77 1538.6 1225.7 1543.21 Q1222.64 1547.79 1216.83 1547.79 Q1211.02 1547.79 1207.94 1543.21 Q1204.89 1538.6 1204.89 1529.87 Q1204.89 1521.12 1207.94 1516.54 Q1211.02 1511.93 1216.83 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M1243.84 1515.64 Q1240.23 1515.64 1238.4 1519.2 Q1236.6 1522.75 1236.6 1529.87 Q1236.6 1536.98 1238.4 1540.55 Q1240.23 1544.09 1243.84 1544.09 Q1247.48 1544.09 1249.28 1540.55 Q1251.11 1536.98 1251.11 1529.87 Q1251.11 1522.75 1249.28 1519.2 Q1247.48 1515.64 1243.84 1515.64 M1243.84 1511.93 Q1249.65 1511.93 1252.71 1516.54 Q1255.79 1521.12 1255.79 1529.87 Q1255.79 1538.6 1252.71 1543.21 Q1249.65 1547.79 1243.84 1547.79 Q1238.03 1547.79 1234.95 1543.21 Q1231.9 1538.6 1231.9 1529.87 Q1231.9 1521.12 1234.95 1516.54 Q1238.03 1511.93 1243.84 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M1649.44 1543.18 L1657.08 1543.18 L1657.08 1516.82 L1648.77 1518.49 L1648.77 1514.23 L1657.03 1512.56 L1661.7 1512.56 L1661.7 1543.18 L1669.34 1543.18 L1669.34 1547.12 L1649.44 1547.12 L1649.44 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M1674.46 1512.56 L1692.82 1512.56 L1692.82 1516.5 L1678.74 1516.5 L1678.74 1524.97 Q1679.76 1524.62 1680.78 1524.46 Q1681.8 1524.27 1682.82 1524.27 Q1688.6 1524.27 1691.98 1527.44 Q1695.36 1530.62 1695.36 1536.03 Q1695.36 1541.61 1691.89 1544.71 Q1688.42 1547.79 1682.1 1547.79 Q1679.92 1547.79 1677.65 1547.42 Q1675.41 1547.05 1673 1546.31 L1673 1541.61 Q1675.08 1542.74 1677.31 1543.3 Q1679.53 1543.86 1682.01 1543.86 Q1686.01 1543.86 1688.35 1541.75 Q1690.69 1539.64 1690.69 1536.03 Q1690.69 1532.42 1688.35 1530.31 Q1686.01 1528.21 1682.01 1528.21 Q1680.13 1528.21 1678.26 1528.62 Q1676.4 1529.04 1674.46 1529.92 L1674.46 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M1710.43 1515.64 Q1706.82 1515.64 1704.99 1519.2 Q1703.19 1522.75 1703.19 1529.87 Q1703.19 1536.98 1704.99 1540.55 Q1706.82 1544.09 1710.43 1544.09 Q1714.07 1544.09 1715.87 1540.55 Q1717.7 1536.98 1717.7 1529.87 Q1717.7 1522.75 1715.87 1519.2 Q1714.07 1515.64 1710.43 1515.64 M1710.43 1511.93 Q1716.24 1511.93 1719.3 1516.54 Q1722.38 1521.12 1722.38 1529.87 Q1722.38 1538.6 1719.3 1543.21 Q1716.24 1547.79 1710.43 1547.79 Q1704.62 1547.79 1701.54 1543.21 Q1698.49 1538.6 1698.49 1529.87 Q1698.49 1521.12 1701.54 1516.54 Q1704.62 1511.93 1710.43 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M2120.3 1543.18 L2136.61 1543.18 L2136.61 1547.12 L2114.67 1547.12 L2114.67 1543.18 Q2117.33 1540.43 2121.92 1535.8 Q2126.52 1531.15 2127.7 1529.81 Q2129.95 1527.28 2130.83 1525.55 Q2131.73 1523.79 2131.73 1522.1 Q2131.73 1519.34 2129.79 1517.61 Q2127.86 1515.87 2124.76 1515.87 Q2122.56 1515.87 2120.11 1516.63 Q2117.68 1517.4 2114.9 1518.95 L2114.9 1514.23 Q2117.73 1513.09 2120.18 1512.51 Q2122.63 1511.93 2124.67 1511.93 Q2130.04 1511.93 2133.24 1514.62 Q2136.43 1517.31 2136.43 1521.8 Q2136.43 1523.93 2135.62 1525.85 Q2134.83 1527.74 2132.73 1530.34 Q2132.15 1531.01 2129.05 1534.23 Q2125.94 1537.42 2120.3 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M2151.68 1515.64 Q2148.07 1515.64 2146.24 1519.2 Q2144.44 1522.75 2144.44 1529.87 Q2144.44 1536.98 2146.24 1540.55 Q2148.07 1544.09 2151.68 1544.09 Q2155.32 1544.09 2157.12 1540.55 Q2158.95 1536.98 2158.95 1529.87 Q2158.95 1522.75 2157.12 1519.2 Q2155.32 1515.64 2151.68 1515.64 M2151.68 1511.93 Q2157.49 1511.93 2160.55 1516.54 Q2163.63 1521.12 2163.63 1529.87 Q2163.63 1538.6 2160.55 1543.21 Q2157.49 1547.79 2151.68 1547.79 Q2145.87 1547.79 2142.8 1543.21 Q2139.74 1538.6 2139.74 1529.87 Q2139.74 1521.12 2142.8 1516.54 Q2145.87 1511.93 2151.68 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M2178.7 1515.64 Q2175.09 1515.64 2173.26 1519.2 Q2171.45 1522.75 2171.45 1529.87 Q2171.45 1536.98 2173.26 1540.55 Q2175.09 1544.09 2178.7 1544.09 Q2182.33 1544.09 2184.14 1540.55 Q2185.97 1536.98 2185.97 1529.87 Q2185.97 1522.75 2184.14 1519.2 Q2182.33 1515.64 2178.7 1515.64 M2178.7 1511.93 Q2184.51 1511.93 2187.56 1516.54 Q2190.64 1521.12 2190.64 1529.87 Q2190.64 1538.6 2187.56 1543.21 Q2184.51 1547.79 2178.7 1547.79 Q2172.89 1547.79 2169.81 1543.21 Q2166.75 1538.6 2166.75 1529.87 Q2166.75 1521.12 2169.81 1516.54 Q2172.89 1511.93 2178.7 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip422)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  233.681,1402.31 2352.76,1402.31 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip422)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  233.681,1169.06 2352.76,1169.06 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip422)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  233.681,935.81 2352.76,935.81 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip422)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  233.681,702.562 2352.76,702.562 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip422)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  233.681,469.314 2352.76,469.314 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip422)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  233.681,236.067 2352.76,236.067 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  233.681,1486.45 233.681,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  233.681,1402.31 259.11,1402.31 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  233.681,1169.06 259.11,1169.06 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  233.681,935.81 259.11,935.81 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  233.681,702.562 259.11,702.562 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  233.681,469.314 259.11,469.314 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip420)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  233.681,236.067 259.11,236.067 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip420)\" d=\"M 0 0 M52.219 1402.76 L81.8947 1402.76 L81.8947 1406.69 L52.219 1406.69 L52.219 1402.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M96.9641 1388.1 Q93.353 1388.1 91.5243 1391.67 Q89.7188 1395.21 89.7188 1402.34 Q89.7188 1409.45 91.5243 1413.01 Q93.353 1416.55 96.9641 1416.55 Q100.598 1416.55 102.404 1413.01 Q104.233 1409.45 104.233 1402.34 Q104.233 1395.21 102.404 1391.67 Q100.598 1388.1 96.9641 1388.1 M96.9641 1384.4 Q102.774 1384.4 105.83 1389.01 Q108.908 1393.59 108.908 1402.34 Q108.908 1411.07 105.83 1415.67 Q102.774 1420.26 96.9641 1420.26 Q91.1539 1420.26 88.0753 1415.67 Q85.0197 1411.07 85.0197 1402.34 Q85.0197 1393.59 88.0753 1389.01 Q91.1539 1384.4 96.9641 1384.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M113.978 1413.71 L118.862 1413.71 L118.862 1419.59 L113.978 1419.59 L113.978 1413.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M133.931 1388.1 Q130.32 1388.1 128.492 1391.67 Q126.686 1395.21 126.686 1402.34 Q126.686 1409.45 128.492 1413.01 Q130.32 1416.55 133.931 1416.55 Q137.566 1416.55 139.371 1413.01 Q141.2 1409.45 141.2 1402.34 Q141.2 1395.21 139.371 1391.67 Q137.566 1388.1 133.931 1388.1 M133.931 1384.4 Q139.742 1384.4 142.797 1389.01 Q145.876 1393.59 145.876 1402.34 Q145.876 1411.07 142.797 1415.67 Q139.742 1420.26 133.931 1420.26 Q128.121 1420.26 125.043 1415.67 Q121.987 1411.07 121.987 1402.34 Q121.987 1393.59 125.043 1389.01 Q128.121 1384.4 133.931 1384.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M151.755 1415.65 L159.394 1415.65 L159.394 1389.28 L151.084 1390.95 L151.084 1386.69 L159.348 1385.03 L164.024 1385.03 L164.024 1415.65 L171.663 1415.65 L171.663 1419.59 L151.755 1419.59 L151.755 1415.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M176.778 1385.03 L195.135 1385.03 L195.135 1388.96 L181.061 1388.96 L181.061 1397.43 Q182.079 1397.09 183.098 1396.92 Q184.116 1396.74 185.135 1396.74 Q190.922 1396.74 194.302 1399.91 Q197.681 1403.08 197.681 1408.5 Q197.681 1414.08 194.209 1417.18 Q190.737 1420.26 184.417 1420.26 Q182.241 1420.26 179.973 1419.89 Q177.728 1419.52 175.32 1418.78 L175.32 1414.08 Q177.403 1415.21 179.626 1415.77 Q181.848 1416.32 184.325 1416.32 Q188.329 1416.32 190.667 1414.22 Q193.005 1412.11 193.005 1408.5 Q193.005 1404.89 190.667 1402.78 Q188.329 1400.67 184.325 1400.67 Q182.45 1400.67 180.575 1401.09 Q178.723 1401.51 176.778 1402.39 L176.778 1385.03 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M51.2236 1169.51 L80.8994 1169.51 L80.8994 1173.44 L51.2236 1173.44 L51.2236 1169.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M95.9687 1154.86 Q92.3576 1154.86 90.529 1158.42 Q88.7234 1161.96 88.7234 1169.09 Q88.7234 1176.2 90.529 1179.76 Q92.3576 1183.31 95.9687 1183.31 Q99.603 1183.31 101.409 1179.76 Q103.237 1176.2 103.237 1169.09 Q103.237 1161.96 101.409 1158.42 Q99.603 1154.86 95.9687 1154.86 M95.9687 1151.15 Q101.779 1151.15 104.834 1155.76 Q107.913 1160.34 107.913 1169.09 Q107.913 1177.82 104.834 1182.43 Q101.779 1187.01 95.9687 1187.01 Q90.1586 1187.01 87.0799 1182.43 Q84.0244 1177.82 84.0244 1169.09 Q84.0244 1160.34 87.0799 1155.76 Q90.1586 1151.15 95.9687 1151.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M112.983 1180.46 L117.867 1180.46 L117.867 1186.34 L112.983 1186.34 L112.983 1180.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M132.936 1154.86 Q129.325 1154.86 127.496 1158.42 Q125.691 1161.96 125.691 1169.09 Q125.691 1176.2 127.496 1179.76 Q129.325 1183.31 132.936 1183.31 Q136.57 1183.31 138.376 1179.76 Q140.205 1176.2 140.205 1169.09 Q140.205 1161.96 138.376 1158.42 Q136.57 1154.86 132.936 1154.86 M132.936 1151.15 Q138.746 1151.15 141.802 1155.76 Q144.881 1160.34 144.881 1169.09 Q144.881 1177.82 141.802 1182.43 Q138.746 1187.01 132.936 1187.01 Q127.126 1187.01 124.047 1182.43 Q120.992 1177.82 120.992 1169.09 Q120.992 1160.34 124.047 1155.76 Q127.126 1151.15 132.936 1151.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M150.76 1182.4 L158.399 1182.4 L158.399 1156.04 L150.089 1157.7 L150.089 1153.44 L158.353 1151.78 L163.029 1151.78 L163.029 1182.4 L170.667 1182.4 L170.667 1186.34 L150.76 1186.34 L150.76 1182.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M185.737 1154.86 Q182.126 1154.86 180.297 1158.42 Q178.491 1161.96 178.491 1169.09 Q178.491 1176.2 180.297 1179.76 Q182.126 1183.31 185.737 1183.31 Q189.371 1183.31 191.177 1179.76 Q193.005 1176.2 193.005 1169.09 Q193.005 1161.96 191.177 1158.42 Q189.371 1154.86 185.737 1154.86 M185.737 1151.15 Q191.547 1151.15 194.602 1155.76 Q197.681 1160.34 197.681 1169.09 Q197.681 1177.82 194.602 1182.43 Q191.547 1187.01 185.737 1187.01 Q179.927 1187.01 176.848 1182.43 Q173.792 1177.82 173.792 1169.09 Q173.792 1160.34 176.848 1155.76 Q179.927 1151.15 185.737 1151.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M50.9921 936.261 L80.6679 936.261 L80.6679 940.197 L50.9921 940.197 L50.9921 936.261 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M95.7373 921.609 Q92.1262 921.609 90.2975 925.174 Q88.4919 928.715 88.4919 935.845 Q88.4919 942.951 90.2975 946.516 Q92.1262 950.058 95.7373 950.058 Q99.3715 950.058 101.177 946.516 Q103.006 942.951 103.006 935.845 Q103.006 928.715 101.177 925.174 Q99.3715 921.609 95.7373 921.609 M95.7373 917.905 Q101.547 917.905 104.603 922.512 Q107.682 927.095 107.682 935.845 Q107.682 944.572 104.603 949.178 Q101.547 953.761 95.7373 953.761 Q89.9271 953.761 86.8484 949.178 Q83.7929 944.572 83.7929 935.845 Q83.7929 927.095 86.8484 922.512 Q89.9271 917.905 95.7373 917.905 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M112.751 947.211 L117.635 947.211 L117.635 953.09 L112.751 953.09 L112.751 947.211 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M132.705 921.609 Q129.094 921.609 127.265 925.174 Q125.459 928.715 125.459 935.845 Q125.459 942.951 127.265 946.516 Q129.094 950.058 132.705 950.058 Q136.339 950.058 138.144 946.516 Q139.973 942.951 139.973 935.845 Q139.973 928.715 138.144 925.174 Q136.339 921.609 132.705 921.609 M132.705 917.905 Q138.515 917.905 141.57 922.512 Q144.649 927.095 144.649 935.845 Q144.649 944.572 141.57 949.178 Q138.515 953.761 132.705 953.761 Q126.894 953.761 123.816 949.178 Q120.76 944.572 120.76 935.845 Q120.76 927.095 123.816 922.512 Q126.894 917.905 132.705 917.905 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M159.718 921.609 Q156.107 921.609 154.279 925.174 Q152.473 928.715 152.473 935.845 Q152.473 942.951 154.279 946.516 Q156.107 950.058 159.718 950.058 Q163.353 950.058 165.158 946.516 Q166.987 942.951 166.987 935.845 Q166.987 928.715 165.158 925.174 Q163.353 921.609 159.718 921.609 M159.718 917.905 Q165.529 917.905 168.584 922.512 Q171.663 927.095 171.663 935.845 Q171.663 944.572 168.584 949.178 Q165.529 953.761 159.718 953.761 Q153.908 953.761 150.83 949.178 Q147.774 944.572 147.774 935.845 Q147.774 927.095 150.83 922.512 Q153.908 917.905 159.718 917.905 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M176.778 918.53 L195.135 918.53 L195.135 922.465 L181.061 922.465 L181.061 930.937 Q182.079 930.59 183.098 930.428 Q184.116 930.243 185.135 930.243 Q190.922 930.243 194.302 933.414 Q197.681 936.586 197.681 942.002 Q197.681 947.581 194.209 950.683 Q190.737 953.761 184.417 953.761 Q182.241 953.761 179.973 953.391 Q177.728 953.021 175.32 952.28 L175.32 947.581 Q177.403 948.715 179.626 949.271 Q181.848 949.826 184.325 949.826 Q188.329 949.826 190.667 947.72 Q193.005 945.613 193.005 942.002 Q193.005 938.391 190.667 936.285 Q188.329 934.178 184.325 934.178 Q182.45 934.178 180.575 934.595 Q178.723 935.012 176.778 935.891 L176.778 918.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M94.7419 688.361 Q91.1308 688.361 89.3021 691.926 Q87.4966 695.467 87.4966 702.597 Q87.4966 709.703 89.3021 713.268 Q91.1308 716.81 94.7419 716.81 Q98.3761 716.81 100.182 713.268 Q102.01 709.703 102.01 702.597 Q102.01 695.467 100.182 691.926 Q98.3761 688.361 94.7419 688.361 M94.7419 684.657 Q100.552 684.657 103.608 689.264 Q106.686 693.847 106.686 702.597 Q106.686 711.324 103.608 715.93 Q100.552 720.514 94.7419 720.514 Q88.9317 720.514 85.8531 715.93 Q82.7975 711.324 82.7975 702.597 Q82.7975 693.847 85.8531 689.264 Q88.9317 684.657 94.7419 684.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M111.756 713.963 L116.64 713.963 L116.64 719.842 L111.756 719.842 L111.756 713.963 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M131.709 688.361 Q128.098 688.361 126.27 691.926 Q124.464 695.467 124.464 702.597 Q124.464 709.703 126.27 713.268 Q128.098 716.81 131.709 716.81 Q135.344 716.81 137.149 713.268 Q138.978 709.703 138.978 702.597 Q138.978 695.467 137.149 691.926 Q135.344 688.361 131.709 688.361 M131.709 684.657 Q137.519 684.657 140.575 689.264 Q143.654 693.847 143.654 702.597 Q143.654 711.324 140.575 715.93 Q137.519 720.514 131.709 720.514 Q125.899 720.514 122.82 715.93 Q119.765 711.324 119.765 702.597 Q119.765 693.847 122.82 689.264 Q125.899 684.657 131.709 684.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M158.723 688.361 Q155.112 688.361 153.283 691.926 Q151.478 695.467 151.478 702.597 Q151.478 709.703 153.283 713.268 Q155.112 716.81 158.723 716.81 Q162.357 716.81 164.163 713.268 Q165.992 709.703 165.992 702.597 Q165.992 695.467 164.163 691.926 Q162.357 688.361 158.723 688.361 M158.723 684.657 Q164.533 684.657 167.589 689.264 Q170.667 693.847 170.667 702.597 Q170.667 711.324 167.589 715.93 Q164.533 720.514 158.723 720.514 Q152.913 720.514 149.834 715.93 Q146.779 711.324 146.779 702.597 Q146.779 693.847 149.834 689.264 Q152.913 684.657 158.723 684.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M185.737 688.361 Q182.126 688.361 180.297 691.926 Q178.491 695.467 178.491 702.597 Q178.491 709.703 180.297 713.268 Q182.126 716.81 185.737 716.81 Q189.371 716.81 191.177 713.268 Q193.005 709.703 193.005 702.597 Q193.005 695.467 191.177 691.926 Q189.371 688.361 185.737 688.361 M185.737 684.657 Q191.547 684.657 194.602 689.264 Q197.681 693.847 197.681 702.597 Q197.681 711.324 194.602 715.93 Q191.547 720.514 185.737 720.514 Q179.927 720.514 176.848 715.93 Q173.792 711.324 173.792 702.597 Q173.792 693.847 176.848 689.264 Q179.927 684.657 185.737 684.657 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M95.7373 455.113 Q92.1262 455.113 90.2975 458.678 Q88.4919 462.22 88.4919 469.349 Q88.4919 476.456 90.2975 480.02 Q92.1262 483.562 95.7373 483.562 Q99.3715 483.562 101.177 480.02 Q103.006 476.456 103.006 469.349 Q103.006 462.22 101.177 458.678 Q99.3715 455.113 95.7373 455.113 M95.7373 451.409 Q101.547 451.409 104.603 456.016 Q107.682 460.599 107.682 469.349 Q107.682 478.076 104.603 482.682 Q101.547 487.266 95.7373 487.266 Q89.9271 487.266 86.8484 482.682 Q83.7929 478.076 83.7929 469.349 Q83.7929 460.599 86.8484 456.016 Q89.9271 451.409 95.7373 451.409 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M112.751 480.715 L117.635 480.715 L117.635 486.594 L112.751 486.594 L112.751 480.715 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M132.705 455.113 Q129.094 455.113 127.265 458.678 Q125.459 462.22 125.459 469.349 Q125.459 476.456 127.265 480.02 Q129.094 483.562 132.705 483.562 Q136.339 483.562 138.144 480.02 Q139.973 476.456 139.973 469.349 Q139.973 462.22 138.144 458.678 Q136.339 455.113 132.705 455.113 M132.705 451.409 Q138.515 451.409 141.57 456.016 Q144.649 460.599 144.649 469.349 Q144.649 478.076 141.57 482.682 Q138.515 487.266 132.705 487.266 Q126.894 487.266 123.816 482.682 Q120.76 478.076 120.76 469.349 Q120.76 460.599 123.816 456.016 Q126.894 451.409 132.705 451.409 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M159.718 455.113 Q156.107 455.113 154.279 458.678 Q152.473 462.22 152.473 469.349 Q152.473 476.456 154.279 480.02 Q156.107 483.562 159.718 483.562 Q163.353 483.562 165.158 480.02 Q166.987 476.456 166.987 469.349 Q166.987 462.22 165.158 458.678 Q163.353 455.113 159.718 455.113 M159.718 451.409 Q165.529 451.409 168.584 456.016 Q171.663 460.599 171.663 469.349 Q171.663 478.076 168.584 482.682 Q165.529 487.266 159.718 487.266 Q153.908 487.266 150.83 482.682 Q147.774 478.076 147.774 469.349 Q147.774 460.599 150.83 456.016 Q153.908 451.409 159.718 451.409 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M176.778 452.034 L195.135 452.034 L195.135 455.97 L181.061 455.97 L181.061 464.442 Q182.079 464.095 183.098 463.933 Q184.116 463.747 185.135 463.747 Q190.922 463.747 194.302 466.919 Q197.681 470.09 197.681 475.507 Q197.681 481.085 194.209 484.187 Q190.737 487.266 184.417 487.266 Q182.241 487.266 179.973 486.895 Q177.728 486.525 175.32 485.784 L175.32 481.085 Q177.403 482.219 179.626 482.775 Q181.848 483.331 184.325 483.331 Q188.329 483.331 190.667 481.224 Q193.005 479.118 193.005 475.507 Q193.005 471.895 190.667 469.789 Q188.329 467.683 184.325 467.683 Q182.45 467.683 180.575 468.099 Q178.723 468.516 176.778 469.395 L176.778 452.034 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M95.9687 221.865 Q92.3576 221.865 90.529 225.43 Q88.7234 228.972 88.7234 236.101 Q88.7234 243.208 90.529 246.773 Q92.3576 250.314 95.9687 250.314 Q99.603 250.314 101.409 246.773 Q103.237 243.208 103.237 236.101 Q103.237 228.972 101.409 225.43 Q99.603 221.865 95.9687 221.865 M95.9687 218.162 Q101.779 218.162 104.834 222.768 Q107.913 227.351 107.913 236.101 Q107.913 244.828 104.834 249.435 Q101.779 254.018 95.9687 254.018 Q90.1586 254.018 87.0799 249.435 Q84.0244 244.828 84.0244 236.101 Q84.0244 227.351 87.0799 222.768 Q90.1586 218.162 95.9687 218.162 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M112.983 247.467 L117.867 247.467 L117.867 253.347 L112.983 253.347 L112.983 247.467 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M132.936 221.865 Q129.325 221.865 127.496 225.43 Q125.691 228.972 125.691 236.101 Q125.691 243.208 127.496 246.773 Q129.325 250.314 132.936 250.314 Q136.57 250.314 138.376 246.773 Q140.205 243.208 140.205 236.101 Q140.205 228.972 138.376 225.43 Q136.57 221.865 132.936 221.865 M132.936 218.162 Q138.746 218.162 141.802 222.768 Q144.881 227.351 144.881 236.101 Q144.881 244.828 141.802 249.435 Q138.746 254.018 132.936 254.018 Q127.126 254.018 124.047 249.435 Q120.992 244.828 120.992 236.101 Q120.992 227.351 124.047 222.768 Q127.126 218.162 132.936 218.162 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M150.76 249.411 L158.399 249.411 L158.399 223.046 L150.089 224.713 L150.089 220.453 L158.353 218.787 L163.029 218.787 L163.029 249.411 L170.667 249.411 L170.667 253.347 L150.76 253.347 L150.76 249.411 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M185.737 221.865 Q182.126 221.865 180.297 225.43 Q178.491 228.972 178.491 236.101 Q178.491 243.208 180.297 246.773 Q182.126 250.314 185.737 250.314 Q189.371 250.314 191.177 246.773 Q193.005 243.208 193.005 236.101 Q193.005 228.972 191.177 225.43 Q189.371 221.865 185.737 221.865 M185.737 218.162 Q191.547 218.162 194.602 222.768 Q197.681 227.351 197.681 236.101 Q197.681 244.828 194.602 249.435 Q191.547 254.018 185.737 254.018 Q179.927 254.018 176.848 249.435 Q173.792 244.828 173.792 236.101 Q173.792 227.351 176.848 222.768 Q179.927 218.162 185.737 218.162 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip420)\" d=\"M 0 0 M1295.37 76.7889 Q1292.21 84.8907 1289.21 87.3618 Q1286.21 89.8329 1281.19 89.8329 L1275.23 89.8329 L1275.23 83.5945 L1279.61 83.5945 Q1282.69 83.5945 1284.39 82.1361 Q1286.09 80.6778 1288.15 75.2496 L1289.49 71.8468 L1271.14 27.2059 L1279.04 27.2059 L1293.22 62.6918 L1307.4 27.2059 L1315.3 27.2059 L1295.37 76.7889 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip422)\" cx=\"293.655\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"302.997\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"312.338\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"321.68\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"331.022\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"340.364\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"349.705\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"359.047\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"368.389\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"377.73\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"387.072\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"396.414\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"405.756\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"415.097\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"424.439\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"433.781\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"443.122\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"452.464\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"461.806\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"471.148\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"480.489\" cy=\"710.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(#clip422)\" cx=\"489.831\" cy=\"710.767\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"499.173\" cy=\"710.858\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"508.514\" cy=\"710.768\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"517.856\" cy=\"710.579\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"527.198\" cy=\"728.219\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"536.54\" cy=\"728.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(#clip422)\" cx=\"545.881\" cy=\"728.297\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"555.223\" cy=\"728.261\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"564.565\" cy=\"728.226\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"573.906\" cy=\"752.899\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"583.248\" cy=\"752.866\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"592.59\" cy=\"752.865\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"601.932\" cy=\"752.877\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"611.273\" cy=\"752.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(#clip422)\" cx=\"620.615\" cy=\"783.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(#clip422)\" cx=\"629.957\" cy=\"783.576\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"639.298\" cy=\"783.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(#clip422)\" cx=\"648.64\" cy=\"783.578\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"657.982\" cy=\"783.614\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"667.324\" cy=\"819.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(#clip422)\" cx=\"676.665\" cy=\"819.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(#clip422)\" cx=\"686.007\" cy=\"819.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(#clip422)\" cx=\"695.349\" cy=\"819.462\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"704.69\" cy=\"819.497\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"714.032\" cy=\"859.749\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"723.374\" cy=\"859.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(#clip422)\" cx=\"732.716\" cy=\"859.682\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"742.057\" cy=\"859.708\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"751.399\" cy=\"859.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(#clip422)\" cx=\"760.741\" cy=\"903.563\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"770.082\" cy=\"903.523\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"779.424\" cy=\"903.503\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"788.766\" cy=\"903.527\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"798.108\" cy=\"903.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(#clip422)\" cx=\"807.449\" cy=\"950.155\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"816.791\" cy=\"950.108\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"826.133\" cy=\"950.085\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"835.474\" cy=\"950.113\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"844.816\" cy=\"950.166\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"854.158\" cy=\"998.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(#clip422)\" cx=\"863.5\" cy=\"998.695\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"872.841\" cy=\"998.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(#clip422)\" cx=\"882.183\" cy=\"998.701\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"891.525\" cy=\"998.767\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"900.866\" cy=\"1048.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(#clip422)\" cx=\"910.208\" cy=\"1048.56\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"919.55\" cy=\"1048.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(#clip422)\" cx=\"928.892\" cy=\"1048.56\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"938.233\" cy=\"1048.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(#clip422)\" cx=\"947.575\" cy=\"1099.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(#clip422)\" cx=\"956.917\" cy=\"1099.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(#clip422)\" cx=\"966.258\" cy=\"1099\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"975.6\" cy=\"1099.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(#clip422)\" cx=\"984.942\" cy=\"1099.12\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"994.284\" cy=\"1149.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(#clip422)\" cx=\"1003.63\" cy=\"1149.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(#clip422)\" cx=\"1012.97\" cy=\"1149.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(#clip422)\" cx=\"1022.31\" cy=\"1149.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(#clip422)\" cx=\"1031.65\" cy=\"1149.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(#clip422)\" cx=\"1040.99\" cy=\"1199.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(#clip422)\" cx=\"1050.33\" cy=\"1199.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(#clip422)\" cx=\"1059.68\" cy=\"1199.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(#clip422)\" cx=\"1069.02\" cy=\"1199.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1078.36\" cy=\"1199.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1087.7\" cy=\"417.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(#clip422)\" cx=\"1097.04\" cy=\"417.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(#clip422)\" cx=\"1106.38\" cy=\"417.413\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1115.73\" cy=\"362.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(#clip422)\" cx=\"1125.07\" cy=\"361.988\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1134.41\" cy=\"362.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(#clip422)\" cx=\"1143.75\" cy=\"308.152\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1153.09\" cy=\"308.125\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1162.43\" cy=\"308.157\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1171.78\" cy=\"258.599\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1181.12\" cy=\"258.614\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1190.46\" cy=\"258.603\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1199.8\" cy=\"216.561\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1209.14\" cy=\"216.617\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1218.48\" cy=\"216.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(#clip422)\" cx=\"1227.83\" cy=\"185.001\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1237.17\" cy=\"185.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(#clip422)\" cx=\"1246.51\" cy=\"185.003\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1255.85\" cy=\"166.313\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1265.19\" cy=\"166.419\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1274.54\" cy=\"166.314\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1283.88\" 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(#clip422)\" cx=\"1293.22\" cy=\"162.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(#clip422)\" cx=\"1302.56\" cy=\"162.048\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1311.9\" cy=\"172.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(#clip422)\" cx=\"1321.24\" cy=\"172.846\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1330.59\" cy=\"172.741\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1339.93\" cy=\"197.855\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1349.27\" cy=\"197.943\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1358.61\" cy=\"197.858\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1367.95\" cy=\"235.843\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1377.29\" cy=\"235.899\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1386.64\" cy=\"235.847\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1395.98\" cy=\"284.309\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1405.32\" cy=\"284.325\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1414.66\" cy=\"284.314\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1424\" cy=\"340.291\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1433.34\" cy=\"340.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(#clip422)\" cx=\"1442.69\" cy=\"340.297\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1452.03\" cy=\"400.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(#clip422)\" cx=\"1461.37\" cy=\"400.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(#clip422)\" cx=\"1470.71\" cy=\"400.617\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1480.05\" cy=\"462.404\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1489.39\" cy=\"462.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(#clip422)\" cx=\"1498.74\" cy=\"462.412\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1508.08\" cy=\"1447.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(#clip422)\" cx=\"1517.42\" cy=\"1447.56\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1526.76\" cy=\"1447.41\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1536.1\" cy=\"1447.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(#clip422)\" cx=\"1545.44\" 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(#clip422)\" cx=\"1554.79\" cy=\"1373.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(#clip422)\" cx=\"1564.13\" cy=\"1372.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(#clip422)\" cx=\"1573.47\" cy=\"1372.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(#clip422)\" cx=\"1582.81\" cy=\"1372.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(#clip422)\" cx=\"1592.15\" cy=\"1373.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(#clip422)\" cx=\"1601.5\" cy=\"1297.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(#clip422)\" cx=\"1610.84\" cy=\"1297.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(#clip422)\" cx=\"1620.18\" cy=\"1297.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(#clip422)\" cx=\"1629.52\" cy=\"1297.61\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1638.86\" cy=\"1297.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(#clip422)\" cx=\"1648.2\" cy=\"1222.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(#clip422)\" cx=\"1657.55\" cy=\"1222.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(#clip422)\" cx=\"1666.89\" cy=\"1222.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(#clip422)\" cx=\"1676.23\" cy=\"1222.34\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1685.57\" cy=\"1222.46\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1694.91\" cy=\"1148.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(#clip422)\" cx=\"1704.25\" cy=\"1147.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(#clip422)\" cx=\"1713.6\" cy=\"1147.88\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1722.94\" cy=\"1147.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(#clip422)\" cx=\"1732.28\" cy=\"1148.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(#clip422)\" cx=\"1741.62\" cy=\"1075.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(#clip422)\" cx=\"1750.96\" cy=\"1075.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(#clip422)\" cx=\"1760.3\" cy=\"1075.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(#clip422)\" cx=\"1769.65\" cy=\"1075.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(#clip422)\" cx=\"1778.99\" cy=\"1075.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(#clip422)\" cx=\"1788.33\" cy=\"1005.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(#clip422)\" cx=\"1797.67\" cy=\"1005.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(#clip422)\" cx=\"1807.01\" cy=\"1005.68\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1816.35\" cy=\"1005.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(#clip422)\" cx=\"1825.7\" cy=\"1005.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(#clip422)\" cx=\"1835.04\" cy=\"940.135\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1844.38\" cy=\"940.073\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1853.72\" cy=\"940.043\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1863.06\" cy=\"940.081\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1872.4\" cy=\"940.15\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1881.75\" cy=\"879.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(#clip422)\" cx=\"1891.09\" cy=\"879.627\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1900.43\" cy=\"879.594\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1909.77\" cy=\"879.633\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1919.11\" cy=\"879.705\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1928.46\" cy=\"825.661\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1937.8\" cy=\"825.587\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1947.14\" cy=\"825.551\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1956.48\" cy=\"825.592\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1965.82\" cy=\"825.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(#clip422)\" cx=\"1975.16\" cy=\"779.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(#clip422)\" cx=\"1984.51\" cy=\"779.212\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"1993.85\" cy=\"779.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(#clip422)\" cx=\"2003.19\" cy=\"779.216\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2012.53\" cy=\"779.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(#clip422)\" cx=\"2021.87\" cy=\"741.817\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2031.21\" cy=\"741.841\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2040.56\" cy=\"741.888\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2049.9\" cy=\"741.844\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2059.24\" cy=\"741.822\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2068.58\" cy=\"714.798\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2077.92\" cy=\"715.091\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2087.26\" cy=\"715.231\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2096.61\" cy=\"715.092\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2105.95\" cy=\"714.801\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2115.29\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2124.63\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2133.97\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2143.31\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2152.66\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2162\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2171.34\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2180.68\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2190.02\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2199.36\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2208.71\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2218.05\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2227.39\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2236.73\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2246.07\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2255.42\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2264.76\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2274.1\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2283.44\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip422)\" cx=\"2292.78\" cy=\"702.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "</svg>\n"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "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=\"clip460\">\n",
       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip460)\" 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=\"clip461\">\n",
       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip460)\" d=\"\n",
       "M174.862 1486.45 L2352.76 1486.45 L2352.76 123.472 L174.862 123.472  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip462\">\n",
       "    <rect x=\"174\" y=\"123\" width=\"2179\" height=\"1364\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<polyline clip-path=\"url(#clip462)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  226.9,1486.45 226.9,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip462)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  706.95,1486.45 706.95,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip462)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1187,1486.45 1187,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip462)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1667.05,1486.45 1667.05,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip462)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  2147.1,1486.45 2147.1,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  174.862,1486.45 2352.76,1486.45 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  226.9,1486.45 226.9,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  706.95,1486.45 706.95,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1187,1486.45 1187,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1667.05,1486.45 1667.05,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  2147.1,1486.45 2147.1,1470.09 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip460)\" d=\"M 0 0 M226.9 1515.64 Q223.288 1515.64 221.46 1519.2 Q219.654 1522.75 219.654 1529.87 Q219.654 1536.98 221.46 1540.55 Q223.288 1544.09 226.9 1544.09 Q230.534 1544.09 232.339 1540.55 Q234.168 1536.98 234.168 1529.87 Q234.168 1522.75 232.339 1519.2 Q230.534 1515.64 226.9 1515.64 M226.9 1511.93 Q232.71 1511.93 235.765 1516.54 Q238.844 1521.12 238.844 1529.87 Q238.844 1538.6 235.765 1543.21 Q232.71 1547.79 226.9 1547.79 Q221.089 1547.79 218.011 1543.21 Q214.955 1538.6 214.955 1529.87 Q214.955 1521.12 218.011 1516.54 Q221.089 1511.93 226.9 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M683.721 1512.56 L702.078 1512.56 L702.078 1516.5 L688.004 1516.5 L688.004 1524.97 Q689.022 1524.62 690.041 1524.46 Q691.059 1524.27 692.078 1524.27 Q697.865 1524.27 701.244 1527.44 Q704.624 1530.62 704.624 1536.03 Q704.624 1541.61 701.152 1544.71 Q697.679 1547.79 691.36 1547.79 Q689.184 1547.79 686.916 1547.42 Q684.67 1547.05 682.263 1546.31 L682.263 1541.61 Q684.346 1542.74 686.568 1543.3 Q688.791 1543.86 691.267 1543.86 Q695.272 1543.86 697.61 1541.75 Q699.948 1539.64 699.948 1536.03 Q699.948 1532.42 697.61 1530.31 Q695.272 1528.21 691.267 1528.21 Q689.392 1528.21 687.517 1528.62 Q685.666 1529.04 683.721 1529.92 L683.721 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M719.693 1515.64 Q716.082 1515.64 714.253 1519.2 Q712.448 1522.75 712.448 1529.87 Q712.448 1536.98 714.253 1540.55 Q716.082 1544.09 719.693 1544.09 Q723.327 1544.09 725.133 1540.55 Q726.962 1536.98 726.962 1529.87 Q726.962 1522.75 725.133 1519.2 Q723.327 1515.64 719.693 1515.64 M719.693 1511.93 Q725.503 1511.93 728.559 1516.54 Q731.638 1521.12 731.638 1529.87 Q731.638 1538.6 728.559 1543.21 Q725.503 1547.79 719.693 1547.79 Q713.883 1547.79 710.804 1543.21 Q707.749 1538.6 707.749 1529.87 Q707.749 1521.12 710.804 1516.54 Q713.883 1511.93 719.693 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M1150.37 1543.18 L1158.01 1543.18 L1158.01 1516.82 L1149.7 1518.49 L1149.7 1514.23 L1157.96 1512.56 L1162.64 1512.56 L1162.64 1543.18 L1170.28 1543.18 L1170.28 1547.12 L1150.37 1547.12 L1150.37 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M1185.35 1515.64 Q1181.73 1515.64 1179.91 1519.2 Q1178.1 1522.75 1178.1 1529.87 Q1178.1 1536.98 1179.91 1540.55 Q1181.73 1544.09 1185.35 1544.09 Q1188.98 1544.09 1190.79 1540.55 Q1192.61 1536.98 1192.61 1529.87 Q1192.61 1522.75 1190.79 1519.2 Q1188.98 1515.64 1185.35 1515.64 M1185.35 1511.93 Q1191.16 1511.93 1194.21 1516.54 Q1197.29 1521.12 1197.29 1529.87 Q1197.29 1538.6 1194.21 1543.21 Q1191.16 1547.79 1185.35 1547.79 Q1179.54 1547.79 1176.46 1543.21 Q1173.4 1538.6 1173.4 1529.87 Q1173.4 1521.12 1176.46 1516.54 Q1179.54 1511.93 1185.35 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M1212.36 1515.64 Q1208.75 1515.64 1206.92 1519.2 Q1205.11 1522.75 1205.11 1529.87 Q1205.11 1536.98 1206.92 1540.55 Q1208.75 1544.09 1212.36 1544.09 Q1215.99 1544.09 1217.8 1540.55 Q1219.63 1536.98 1219.63 1529.87 Q1219.63 1522.75 1217.8 1519.2 Q1215.99 1515.64 1212.36 1515.64 M1212.36 1511.93 Q1218.17 1511.93 1221.23 1516.54 Q1224.3 1521.12 1224.3 1529.87 Q1224.3 1538.6 1221.23 1543.21 Q1218.17 1547.79 1212.36 1547.79 Q1206.55 1547.79 1203.47 1543.21 Q1200.42 1538.6 1200.42 1529.87 Q1200.42 1521.12 1203.47 1516.54 Q1206.55 1511.93 1212.36 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M1630.92 1543.18 L1638.56 1543.18 L1638.56 1516.82 L1630.25 1518.49 L1630.25 1514.23 L1638.51 1512.56 L1643.19 1512.56 L1643.19 1543.18 L1650.82 1543.18 L1650.82 1547.12 L1630.92 1547.12 L1630.92 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M1655.94 1512.56 L1674.3 1512.56 L1674.3 1516.5 L1660.22 1516.5 L1660.22 1524.97 Q1661.24 1524.62 1662.26 1524.46 Q1663.28 1524.27 1664.3 1524.27 Q1670.08 1524.27 1673.46 1527.44 Q1676.84 1530.62 1676.84 1536.03 Q1676.84 1541.61 1673.37 1544.71 Q1669.9 1547.79 1663.58 1547.79 Q1661.4 1547.79 1659.13 1547.42 Q1656.89 1547.05 1654.48 1546.31 L1654.48 1541.61 Q1656.57 1542.74 1658.79 1543.3 Q1661.01 1543.86 1663.49 1543.86 Q1667.49 1543.86 1669.83 1541.75 Q1672.17 1539.64 1672.17 1536.03 Q1672.17 1532.42 1669.83 1530.31 Q1667.49 1528.21 1663.49 1528.21 Q1661.61 1528.21 1659.74 1528.62 Q1657.88 1529.04 1655.94 1529.92 L1655.94 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M1691.91 1515.64 Q1688.3 1515.64 1686.47 1519.2 Q1684.67 1522.75 1684.67 1529.87 Q1684.67 1536.98 1686.47 1540.55 Q1688.3 1544.09 1691.91 1544.09 Q1695.55 1544.09 1697.35 1540.55 Q1699.18 1536.98 1699.18 1529.87 Q1699.18 1522.75 1697.35 1519.2 Q1695.55 1515.64 1691.91 1515.64 M1691.91 1511.93 Q1697.72 1511.93 1700.78 1516.54 Q1703.86 1521.12 1703.86 1529.87 Q1703.86 1538.6 1700.78 1543.21 Q1697.72 1547.79 1691.91 1547.79 Q1686.1 1547.79 1683.02 1543.21 Q1679.97 1538.6 1679.97 1529.87 Q1679.97 1521.12 1683.02 1516.54 Q1686.1 1511.93 1691.91 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M2114.74 1543.18 L2131.06 1543.18 L2131.06 1547.12 L2109.12 1547.12 L2109.12 1543.18 Q2111.78 1540.43 2116.36 1535.8 Q2120.97 1531.15 2122.15 1529.81 Q2124.39 1527.28 2125.27 1525.55 Q2126.18 1523.79 2126.18 1522.1 Q2126.18 1519.34 2124.23 1517.61 Q2122.31 1515.87 2119.21 1515.87 Q2117.01 1515.87 2114.56 1516.63 Q2112.13 1517.4 2109.35 1518.95 L2109.35 1514.23 Q2112.17 1513.09 2114.63 1512.51 Q2117.08 1511.93 2119.12 1511.93 Q2124.49 1511.93 2127.68 1514.62 Q2130.88 1517.31 2130.88 1521.8 Q2130.88 1523.93 2130.07 1525.85 Q2129.28 1527.74 2127.17 1530.34 Q2126.59 1531.01 2123.49 1534.23 Q2120.39 1537.42 2114.74 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M2146.13 1515.64 Q2142.52 1515.64 2140.69 1519.2 Q2138.88 1522.75 2138.88 1529.87 Q2138.88 1536.98 2140.69 1540.55 Q2142.52 1544.09 2146.13 1544.09 Q2149.76 1544.09 2151.57 1540.55 Q2153.4 1536.98 2153.4 1529.87 Q2153.4 1522.75 2151.57 1519.2 Q2149.76 1515.64 2146.13 1515.64 M2146.13 1511.93 Q2151.94 1511.93 2155 1516.54 Q2158.07 1521.12 2158.07 1529.87 Q2158.07 1538.6 2155 1543.21 Q2151.94 1547.79 2146.13 1547.79 Q2140.32 1547.79 2137.24 1543.21 Q2134.19 1538.6 2134.19 1529.87 Q2134.19 1521.12 2137.24 1516.54 Q2140.32 1511.93 2146.13 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M2173.14 1515.64 Q2169.53 1515.64 2167.7 1519.2 Q2165.9 1522.75 2165.9 1529.87 Q2165.9 1536.98 2167.7 1540.55 Q2169.53 1544.09 2173.14 1544.09 Q2176.78 1544.09 2178.58 1540.55 Q2180.41 1536.98 2180.41 1529.87 Q2180.41 1522.75 2178.58 1519.2 Q2176.78 1515.64 2173.14 1515.64 M2173.14 1511.93 Q2178.95 1511.93 2182.01 1516.54 Q2185.09 1521.12 2185.09 1529.87 Q2185.09 1538.6 2182.01 1543.21 Q2178.95 1547.79 2173.14 1547.79 Q2167.33 1547.79 2164.25 1543.21 Q2161.2 1538.6 2161.2 1529.87 Q2161.2 1521.12 2164.25 1516.54 Q2167.33 1511.93 2173.14 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip462)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  174.862,1447.87 2352.76,1447.87 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip462)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  174.862,1126.42 2352.76,1126.42 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip462)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  174.862,804.96 2352.76,804.96 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip462)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  174.862,483.503 2352.76,483.503 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip462)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  174.862,162.047 2352.76,162.047 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  174.862,1486.45 174.862,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  174.862,1447.87 200.997,1447.87 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  174.862,1126.42 200.997,1126.42 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  174.862,804.96 200.997,804.96 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  174.862,483.503 200.997,483.503 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip460)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  174.862,162.047 200.997,162.047 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip460)\" d=\"M 0 0 M62.9365 1433.67 Q59.3254 1433.67 57.4967 1437.24 Q55.6912 1440.78 55.6912 1447.91 Q55.6912 1455.01 57.4967 1458.58 Q59.3254 1462.12 62.9365 1462.12 Q66.5707 1462.12 68.3763 1458.58 Q70.205 1455.01 70.205 1447.91 Q70.205 1440.78 68.3763 1437.24 Q66.5707 1433.67 62.9365 1433.67 M62.9365 1429.97 Q68.7467 1429.97 71.8022 1434.57 Q74.8809 1439.16 74.8809 1447.91 Q74.8809 1456.63 71.8022 1461.24 Q68.7467 1465.82 62.9365 1465.82 Q57.1264 1465.82 54.0477 1461.24 Q50.9921 1456.63 50.9921 1447.91 Q50.9921 1439.16 54.0477 1434.57 Q57.1264 1429.97 62.9365 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M79.9503 1459.27 L84.8345 1459.27 L84.8345 1465.15 L79.9503 1465.15 L79.9503 1459.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M99.9039 1433.67 Q96.2928 1433.67 94.4641 1437.24 Q92.6586 1440.78 92.6586 1447.91 Q92.6586 1455.01 94.4641 1458.58 Q96.2928 1462.12 99.9039 1462.12 Q103.538 1462.12 105.344 1458.58 Q107.172 1455.01 107.172 1447.91 Q107.172 1440.78 105.344 1437.24 Q103.538 1433.67 99.9039 1433.67 M99.9039 1429.97 Q105.714 1429.97 108.77 1434.57 Q111.848 1439.16 111.848 1447.91 Q111.848 1456.63 108.77 1461.24 Q105.714 1465.82 99.9039 1465.82 Q94.0937 1465.82 91.0151 1461.24 Q87.9595 1456.63 87.9595 1447.91 Q87.9595 1439.16 91.0151 1434.57 Q94.0937 1429.97 99.9039 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M126.918 1433.67 Q123.307 1433.67 121.478 1437.24 Q119.672 1440.78 119.672 1447.91 Q119.672 1455.01 121.478 1458.58 Q123.307 1462.12 126.918 1462.12 Q130.552 1462.12 132.357 1458.58 Q134.186 1455.01 134.186 1447.91 Q134.186 1440.78 132.357 1437.24 Q130.552 1433.67 126.918 1433.67 M126.918 1429.97 Q132.728 1429.97 135.783 1434.57 Q138.862 1439.16 138.862 1447.91 Q138.862 1456.63 135.783 1461.24 Q132.728 1465.82 126.918 1465.82 Q121.107 1465.82 118.029 1461.24 Q114.973 1456.63 114.973 1447.91 Q114.973 1439.16 118.029 1434.57 Q121.107 1429.97 126.918 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M65.5291 1112.22 Q61.918 1112.22 60.0893 1115.78 Q58.2838 1119.32 58.2838 1126.45 Q58.2838 1133.56 60.0893 1137.12 Q61.918 1140.66 65.5291 1140.66 Q69.1633 1140.66 70.9689 1137.12 Q72.7976 1133.56 72.7976 1126.45 Q72.7976 1119.32 70.9689 1115.78 Q69.1633 1112.22 65.5291 1112.22 M65.5291 1108.51 Q71.3392 1108.51 74.3948 1113.12 Q77.4735 1117.7 77.4735 1126.45 Q77.4735 1135.18 74.3948 1139.78 Q71.3392 1144.37 65.5291 1144.37 Q59.7189 1144.37 56.6402 1139.78 Q53.5847 1135.18 53.5847 1126.45 Q53.5847 1117.7 56.6402 1113.12 Q59.7189 1108.51 65.5291 1108.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M82.5429 1137.82 L87.4271 1137.82 L87.4271 1143.7 L82.5429 1143.7 L82.5429 1137.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M96.5243 1139.76 L112.844 1139.76 L112.844 1143.7 L90.8993 1143.7 L90.8993 1139.76 Q93.5613 1137.01 98.1447 1132.38 Q102.751 1127.72 103.932 1126.38 Q106.177 1123.86 107.057 1122.12 Q107.959 1120.36 107.959 1118.67 Q107.959 1115.92 106.015 1114.18 Q104.094 1112.45 100.992 1112.45 Q98.7928 1112.45 96.3391 1113.21 Q93.9086 1113.97 91.1308 1115.53 L91.1308 1110.8 Q93.9549 1109.67 96.4085 1109.09 Q98.8622 1108.51 100.899 1108.51 Q106.27 1108.51 109.464 1111.2 Q112.658 1113.88 112.658 1118.37 Q112.658 1120.5 111.848 1122.42 Q111.061 1124.32 108.955 1126.91 Q108.376 1127.59 105.274 1130.8 Q102.172 1134 96.5243 1139.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M117.959 1109.14 L136.316 1109.14 L136.316 1113.07 L122.242 1113.07 L122.242 1121.54 Q123.26 1121.2 124.279 1121.03 Q125.297 1120.85 126.316 1120.85 Q132.103 1120.85 135.482 1124.02 Q138.862 1127.19 138.862 1132.61 Q138.862 1138.19 135.39 1141.29 Q131.918 1144.37 125.598 1144.37 Q123.422 1144.37 121.154 1144 Q118.908 1143.63 116.501 1142.89 L116.501 1138.19 Q118.584 1139.32 120.807 1139.88 Q123.029 1140.43 125.506 1140.43 Q129.51 1140.43 131.848 1138.33 Q134.186 1136.22 134.186 1132.61 Q134.186 1129 131.848 1126.89 Q129.51 1124.78 125.506 1124.78 Q123.631 1124.78 121.756 1125.2 Q119.904 1125.62 117.959 1126.5 L117.959 1109.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M63.9319 790.759 Q60.3208 790.759 58.4921 794.323 Q56.6865 797.865 56.6865 804.995 Q56.6865 812.101 58.4921 815.666 Q60.3208 819.208 63.9319 819.208 Q67.5661 819.208 69.3717 815.666 Q71.2004 812.101 71.2004 804.995 Q71.2004 797.865 69.3717 794.323 Q67.5661 790.759 63.9319 790.759 M63.9319 787.055 Q69.742 787.055 72.7976 791.661 Q75.8763 796.245 75.8763 804.995 Q75.8763 813.722 72.7976 818.328 Q69.742 822.911 63.9319 822.911 Q58.1217 822.911 55.043 818.328 Q51.9875 813.722 51.9875 804.995 Q51.9875 796.245 55.043 791.661 Q58.1217 787.055 63.9319 787.055 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M80.9457 816.36 L85.8299 816.36 L85.8299 822.24 L80.9457 822.24 L80.9457 816.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M90.9456 787.68 L109.302 787.68 L109.302 791.615 L95.228 791.615 L95.228 800.087 Q96.2465 799.74 97.265 799.578 Q98.2835 799.393 99.3021 799.393 Q105.089 799.393 108.469 802.564 Q111.848 805.735 111.848 811.152 Q111.848 816.731 108.376 819.833 Q104.904 822.911 98.5845 822.911 Q96.4085 822.911 94.14 822.541 Q91.8947 822.171 89.4873 821.43 L89.4873 816.731 Q91.5706 817.865 93.7928 818.421 Q96.015 818.976 98.4919 818.976 Q102.496 818.976 104.834 816.87 Q107.172 814.763 107.172 811.152 Q107.172 807.541 104.834 805.435 Q102.496 803.328 98.4919 803.328 Q96.6169 803.328 94.7419 803.745 Q92.89 804.161 90.9456 805.041 L90.9456 787.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M126.918 790.759 Q123.307 790.759 121.478 794.323 Q119.672 797.865 119.672 804.995 Q119.672 812.101 121.478 815.666 Q123.307 819.208 126.918 819.208 Q130.552 819.208 132.357 815.666 Q134.186 812.101 134.186 804.995 Q134.186 797.865 132.357 794.323 Q130.552 790.759 126.918 790.759 M126.918 787.055 Q132.728 787.055 135.783 791.661 Q138.862 796.245 138.862 804.995 Q138.862 813.722 135.783 818.328 Q132.728 822.911 126.918 822.911 Q121.107 822.911 118.029 818.328 Q114.973 813.722 114.973 804.995 Q114.973 796.245 118.029 791.661 Q121.107 787.055 126.918 787.055 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M64.8346 469.302 Q61.2236 469.302 59.3949 472.867 Q57.5893 476.409 57.5893 483.538 Q57.5893 490.645 59.3949 494.209 Q61.2236 497.751 64.8346 497.751 Q68.4689 497.751 70.2744 494.209 Q72.1031 490.645 72.1031 483.538 Q72.1031 476.409 70.2744 472.867 Q68.4689 469.302 64.8346 469.302 M64.8346 465.598 Q70.6448 465.598 73.7003 470.205 Q76.779 474.788 76.779 483.538 Q76.779 492.265 73.7003 496.871 Q70.6448 501.455 64.8346 501.455 Q59.0245 501.455 55.9458 496.871 Q52.8903 492.265 52.8903 483.538 Q52.8903 474.788 55.9458 470.205 Q59.0245 465.598 64.8346 465.598 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M81.8484 494.904 L86.7327 494.904 L86.7327 500.783 L81.8484 500.783 L81.8484 494.904 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M90.6215 466.223 L112.844 466.223 L112.844 468.214 L100.297 500.783 L95.4132 500.783 L107.219 470.159 L90.6215 470.159 L90.6215 466.223 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M117.959 466.223 L136.316 466.223 L136.316 470.159 L122.242 470.159 L122.242 478.631 Q123.26 478.284 124.279 478.122 Q125.297 477.936 126.316 477.936 Q132.103 477.936 135.482 481.108 Q138.862 484.279 138.862 489.696 Q138.862 495.274 135.39 498.376 Q131.918 501.455 125.598 501.455 Q123.422 501.455 121.154 501.084 Q118.908 500.714 116.501 499.973 L116.501 495.274 Q118.584 496.408 120.807 496.964 Q123.029 497.52 125.506 497.52 Q129.51 497.52 131.848 495.413 Q134.186 493.307 134.186 489.696 Q134.186 486.084 131.848 483.978 Q129.51 481.872 125.506 481.872 Q123.631 481.872 121.756 482.288 Q119.904 482.705 117.959 483.584 L117.959 466.223 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M54.9736 175.392 L62.6124 175.392 L62.6124 149.026 L54.3023 150.693 L54.3023 146.434 L62.5661 144.767 L67.242 144.767 L67.242 175.392 L74.8809 175.392 L74.8809 179.327 L54.9736 179.327 L54.9736 175.392 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M79.9503 173.447 L84.8345 173.447 L84.8345 179.327 L79.9503 179.327 L79.9503 173.447 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M99.9039 147.846 Q96.2928 147.846 94.4641 151.41 Q92.6586 154.952 92.6586 162.082 Q92.6586 169.188 94.4641 172.753 Q96.2928 176.295 99.9039 176.295 Q103.538 176.295 105.344 172.753 Q107.172 169.188 107.172 162.082 Q107.172 154.952 105.344 151.41 Q103.538 147.846 99.9039 147.846 M99.9039 144.142 Q105.714 144.142 108.77 148.748 Q111.848 153.332 111.848 162.082 Q111.848 170.808 108.77 175.415 Q105.714 179.998 99.9039 179.998 Q94.0937 179.998 91.0151 175.415 Q87.9595 170.808 87.9595 162.082 Q87.9595 153.332 91.0151 148.748 Q94.0937 144.142 99.9039 144.142 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M126.918 147.846 Q123.307 147.846 121.478 151.41 Q119.672 154.952 119.672 162.082 Q119.672 169.188 121.478 172.753 Q123.307 176.295 126.918 176.295 Q130.552 176.295 132.357 172.753 Q134.186 169.188 134.186 162.082 Q134.186 154.952 132.357 151.41 Q130.552 147.846 126.918 147.846 M126.918 144.142 Q132.728 144.142 135.783 148.748 Q138.862 153.332 138.862 162.082 Q138.862 170.808 135.783 175.415 Q132.728 179.998 126.918 179.998 Q121.107 179.998 118.029 175.415 Q114.973 170.808 114.973 162.082 Q114.973 153.332 118.029 148.748 Q121.107 144.142 126.918 144.142 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip460)\" d=\"M 0 0 M1246.61 27.2059 L1282.02 27.2059 L1282.02 34.0114 L1253.99 66.6212 L1282.02 66.6212 L1282.02 72.576 L1245.6 72.576 L1245.6 65.7705 L1273.63 33.1607 L1246.61 33.1607 L1246.61 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip462)\" cx=\"236.501\" 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(#clip462)\" cx=\"246.102\" 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(#clip462)\" cx=\"255.703\" 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(#clip462)\" cx=\"265.304\" 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(#clip462)\" cx=\"274.905\" 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(#clip462)\" cx=\"284.506\" 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(#clip462)\" cx=\"294.107\" 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(#clip462)\" cx=\"303.708\" 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(#clip462)\" cx=\"313.309\" 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(#clip462)\" cx=\"322.91\" 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(#clip462)\" cx=\"332.511\" 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(#clip462)\" cx=\"342.112\" 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(#clip462)\" cx=\"351.713\" 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(#clip462)\" cx=\"361.314\" 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(#clip462)\" cx=\"370.915\" 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(#clip462)\" cx=\"380.516\" 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(#clip462)\" cx=\"390.117\" 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(#clip462)\" cx=\"399.718\" 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(#clip462)\" cx=\"409.319\" 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(#clip462)\" cx=\"418.92\" 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(#clip462)\" cx=\"428.521\" 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(#clip462)\" cx=\"438.122\" 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(#clip462)\" cx=\"447.723\" 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(#clip462)\" cx=\"457.324\" 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(#clip462)\" cx=\"466.925\" 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(#clip462)\" cx=\"476.526\" 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(#clip462)\" cx=\"486.127\" 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(#clip462)\" cx=\"495.728\" 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(#clip462)\" cx=\"505.329\" 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(#clip462)\" cx=\"514.93\" 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(#clip462)\" cx=\"524.531\" 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(#clip462)\" cx=\"534.132\" 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(#clip462)\" cx=\"543.733\" 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(#clip462)\" cx=\"553.334\" 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(#clip462)\" cx=\"562.935\" 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(#clip462)\" cx=\"572.536\" 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(#clip462)\" cx=\"582.137\" 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(#clip462)\" cx=\"591.738\" 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(#clip462)\" cx=\"601.339\" 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(#clip462)\" cx=\"610.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(#clip462)\" cx=\"620.541\" 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(#clip462)\" cx=\"630.142\" 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(#clip462)\" cx=\"639.743\" 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(#clip462)\" cx=\"649.344\" 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(#clip462)\" cx=\"658.945\" 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(#clip462)\" cx=\"668.546\" 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(#clip462)\" cx=\"678.147\" 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(#clip462)\" cx=\"687.748\" 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(#clip462)\" cx=\"697.349\" 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(#clip462)\" cx=\"706.95\" 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(#clip462)\" cx=\"716.551\" 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(#clip462)\" cx=\"726.152\" 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(#clip462)\" cx=\"735.753\" 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(#clip462)\" cx=\"745.354\" 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(#clip462)\" cx=\"754.955\" 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(#clip462)\" cx=\"764.556\" 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(#clip462)\" cx=\"774.157\" 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(#clip462)\" cx=\"783.758\" 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(#clip462)\" cx=\"793.359\" 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(#clip462)\" cx=\"802.96\" 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(#clip462)\" cx=\"812.561\" 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(#clip462)\" cx=\"822.162\" 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(#clip462)\" cx=\"831.763\" 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(#clip462)\" cx=\"841.364\" 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(#clip462)\" cx=\"850.965\" 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(#clip462)\" cx=\"860.566\" 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(#clip462)\" cx=\"870.167\" 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(#clip462)\" cx=\"879.768\" 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(#clip462)\" cx=\"889.369\" 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(#clip462)\" cx=\"898.97\" 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(#clip462)\" cx=\"908.571\" 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(#clip462)\" cx=\"918.172\" 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(#clip462)\" cx=\"927.773\" 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(#clip462)\" cx=\"937.375\" 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(#clip462)\" cx=\"946.976\" 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(#clip462)\" cx=\"956.577\" 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(#clip462)\" cx=\"966.178\" 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(#clip462)\" cx=\"975.779\" 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(#clip462)\" cx=\"985.38\" 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(#clip462)\" cx=\"994.981\" 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(#clip462)\" cx=\"1004.58\" 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(#clip462)\" cx=\"1014.18\" 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(#clip462)\" cx=\"1023.78\" 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(#clip462)\" cx=\"1033.38\" 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(#clip462)\" cx=\"1042.99\" 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(#clip462)\" cx=\"1052.59\" 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(#clip462)\" cx=\"1062.19\" 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(#clip462)\" cx=\"1071.79\" 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(#clip462)\" cx=\"1081.39\" 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(#clip462)\" cx=\"1090.99\" 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(#clip462)\" cx=\"1100.59\" 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(#clip462)\" cx=\"1110.19\" 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(#clip462)\" cx=\"1119.79\" 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(#clip462)\" cx=\"1129.39\" 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(#clip462)\" cx=\"1139\" 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(#clip462)\" cx=\"1148.6\" 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(#clip462)\" cx=\"1158.2\" 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(#clip462)\" cx=\"1167.8\" 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(#clip462)\" cx=\"1177.4\" 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(#clip462)\" cx=\"1187\" 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(#clip462)\" cx=\"1196.6\" 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(#clip462)\" cx=\"1206.2\" 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(#clip462)\" cx=\"1215.8\" 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(#clip462)\" cx=\"1225.4\" 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(#clip462)\" cx=\"1235.01\" 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(#clip462)\" cx=\"1244.61\" 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(#clip462)\" cx=\"1254.21\" 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(#clip462)\" cx=\"1263.81\" 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(#clip462)\" cx=\"1273.41\" 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(#clip462)\" cx=\"1283.01\" 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(#clip462)\" cx=\"1292.61\" 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(#clip462)\" cx=\"1302.21\" 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(#clip462)\" cx=\"1311.81\" 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(#clip462)\" cx=\"1321.42\" 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(#clip462)\" cx=\"1331.02\" 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(#clip462)\" cx=\"1340.62\" 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(#clip462)\" cx=\"1350.22\" 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(#clip462)\" cx=\"1359.82\" 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(#clip462)\" cx=\"1369.42\" 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(#clip462)\" cx=\"1379.02\" 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(#clip462)\" cx=\"1388.62\" 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(#clip462)\" cx=\"1398.22\" 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(#clip462)\" cx=\"1407.82\" 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(#clip462)\" cx=\"1417.43\" 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(#clip462)\" cx=\"1427.03\" 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(#clip462)\" cx=\"1436.63\" 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(#clip462)\" cx=\"1446.23\" 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(#clip462)\" cx=\"1455.83\" 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(#clip462)\" cx=\"1465.43\" 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(#clip462)\" cx=\"1475.03\" 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(#clip462)\" cx=\"1484.63\" 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(#clip462)\" cx=\"1494.23\" 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(#clip462)\" cx=\"1503.83\" 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(#clip462)\" cx=\"1513.44\" 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(#clip462)\" cx=\"1523.04\" 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(#clip462)\" cx=\"1532.64\" 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(#clip462)\" cx=\"1542.24\" 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(#clip462)\" cx=\"1551.84\" 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(#clip462)\" cx=\"1561.44\" 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(#clip462)\" cx=\"1571.04\" 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(#clip462)\" cx=\"1580.64\" 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(#clip462)\" cx=\"1590.24\" 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(#clip462)\" cx=\"1599.84\" 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(#clip462)\" cx=\"1609.45\" 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(#clip462)\" cx=\"1619.05\" 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(#clip462)\" cx=\"1628.65\" 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(#clip462)\" cx=\"1638.25\" 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(#clip462)\" cx=\"1647.85\" 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(#clip462)\" cx=\"1657.45\" 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(#clip462)\" cx=\"1667.05\" 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(#clip462)\" cx=\"1676.65\" 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(#clip462)\" cx=\"1686.25\" 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(#clip462)\" cx=\"1695.85\" 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(#clip462)\" cx=\"1705.46\" 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(#clip462)\" cx=\"1715.06\" 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(#clip462)\" cx=\"1724.66\" 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(#clip462)\" cx=\"1734.26\" 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(#clip462)\" cx=\"1743.86\" 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(#clip462)\" cx=\"1753.46\" 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(#clip462)\" cx=\"1763.06\" 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(#clip462)\" cx=\"1772.66\" 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(#clip462)\" cx=\"1782.26\" 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(#clip462)\" cx=\"1791.86\" 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(#clip462)\" cx=\"1801.47\" 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(#clip462)\" cx=\"1811.07\" 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(#clip462)\" cx=\"1820.67\" 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(#clip462)\" cx=\"1830.27\" 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(#clip462)\" cx=\"1839.87\" 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(#clip462)\" cx=\"1849.47\" 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(#clip462)\" cx=\"1859.07\" 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(#clip462)\" cx=\"1868.67\" 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(#clip462)\" cx=\"1878.27\" 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(#clip462)\" cx=\"1887.87\" 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(#clip462)\" cx=\"1897.48\" 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(#clip462)\" cx=\"1907.08\" 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(#clip462)\" cx=\"1916.68\" 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(#clip462)\" cx=\"1926.28\" 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(#clip462)\" cx=\"1935.88\" 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(#clip462)\" cx=\"1945.48\" 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(#clip462)\" cx=\"1955.08\" 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(#clip462)\" cx=\"1964.68\" 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(#clip462)\" cx=\"1974.28\" 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(#clip462)\" cx=\"1983.88\" 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(#clip462)\" cx=\"1993.49\" 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(#clip462)\" cx=\"2003.09\" 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(#clip462)\" cx=\"2012.69\" 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(#clip462)\" cx=\"2022.29\" 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(#clip462)\" cx=\"2031.89\" 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(#clip462)\" cx=\"2041.49\" 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(#clip462)\" cx=\"2051.09\" 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(#clip462)\" cx=\"2060.69\" 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(#clip462)\" cx=\"2070.29\" 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(#clip462)\" cx=\"2079.9\" 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(#clip462)\" cx=\"2089.5\" 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(#clip462)\" cx=\"2099.1\" 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(#clip462)\" cx=\"2108.7\" 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(#clip462)\" cx=\"2118.3\" 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(#clip462)\" cx=\"2127.9\" 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(#clip462)\" cx=\"2137.5\" 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(#clip462)\" cx=\"2147.1\" 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(#clip462)\" cx=\"2156.7\" 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(#clip462)\" cx=\"2166.3\" 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(#clip462)\" cx=\"2175.91\" 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(#clip462)\" cx=\"2185.51\" 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(#clip462)\" cx=\"2195.11\" 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(#clip462)\" cx=\"2204.71\" 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(#clip462)\" cx=\"2214.31\" 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(#clip462)\" cx=\"2223.91\" 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(#clip462)\" cx=\"2233.51\" 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(#clip462)\" cx=\"2243.11\" 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(#clip462)\" cx=\"2252.71\" 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(#clip462)\" cx=\"2262.31\" 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(#clip462)\" cx=\"2271.92\" 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(#clip462)\" cx=\"2281.52\" 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(#clip462)\" cx=\"2291.12\" cy=\"1447.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "</svg>\n"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "plotFinalDisplacement(name)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 763,
   "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=\"clip500\">\n",
       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip500)\" 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=\"clip501\">\n",
       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip500)\" d=\"\n",
       "M171.181 1486.45 L2352.76 1486.45 L2352.76 123.472 L171.181 123.472  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip502\">\n",
       "    <rect x=\"171\" y=\"123\" width=\"2183\" height=\"1364\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  211.923,1486.45 211.923,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  736.946,1486.45 736.946,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1261.97,1486.45 1261.97,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1786.99,1486.45 1786.99,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  2312.01,1486.45 2312.01,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  171.181,1486.45 2352.76,1486.45 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  211.923,1486.45 211.923,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  736.946,1486.45 736.946,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1261.97,1486.45 1261.97,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1786.99,1486.45 1786.99,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  2312.01,1486.45 2312.01,1470.09 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip500)\" d=\"M 0 0 M211.923 1515.64 Q208.312 1515.64 206.483 1519.2 Q204.678 1522.75 204.678 1529.87 Q204.678 1536.98 206.483 1540.55 Q208.312 1544.09 211.923 1544.09 Q215.557 1544.09 217.363 1540.55 Q219.192 1536.98 219.192 1529.87 Q219.192 1522.75 217.363 1519.2 Q215.557 1515.64 211.923 1515.64 M211.923 1511.93 Q217.733 1511.93 220.789 1516.54 Q223.868 1521.12 223.868 1529.87 Q223.868 1538.6 220.789 1543.21 Q217.733 1547.79 211.923 1547.79 Q206.113 1547.79 203.034 1543.21 Q199.979 1538.6 199.979 1529.87 Q199.979 1521.12 203.034 1516.54 Q206.113 1511.93 211.923 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M718.59 1543.18 L734.909 1543.18 L734.909 1547.12 L712.965 1547.12 L712.965 1543.18 Q715.627 1540.43 720.21 1535.8 Q724.816 1531.15 725.997 1529.81 Q728.242 1527.28 729.122 1525.55 Q730.025 1523.79 730.025 1522.1 Q730.025 1519.34 728.08 1517.61 Q726.159 1515.87 723.057 1515.87 Q720.858 1515.87 718.404 1516.63 Q715.974 1517.4 713.196 1518.95 L713.196 1514.23 Q716.02 1513.09 718.474 1512.51 Q720.928 1511.93 722.965 1511.93 Q728.335 1511.93 731.529 1514.62 Q734.724 1517.31 734.724 1521.8 Q734.724 1523.93 733.914 1525.85 Q733.127 1527.74 731.02 1530.34 Q730.441 1531.01 727.34 1534.23 Q724.238 1537.42 718.59 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M740.025 1512.56 L758.381 1512.56 L758.381 1516.5 L744.307 1516.5 L744.307 1524.97 Q745.326 1524.62 746.344 1524.46 Q747.363 1524.27 748.381 1524.27 Q754.168 1524.27 757.548 1527.44 Q760.927 1530.62 760.927 1536.03 Q760.927 1541.61 757.455 1544.71 Q753.983 1547.79 747.664 1547.79 Q745.488 1547.79 743.219 1547.42 Q740.974 1547.05 738.566 1546.31 L738.566 1541.61 Q740.65 1542.74 742.872 1543.3 Q745.094 1543.86 747.571 1543.86 Q751.576 1543.86 753.913 1541.75 Q756.251 1539.64 756.251 1536.03 Q756.251 1532.42 753.913 1530.31 Q751.576 1528.21 747.571 1528.21 Q745.696 1528.21 743.821 1528.62 Q741.969 1529.04 740.025 1529.92 L740.025 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M1238.74 1512.56 L1257.1 1512.56 L1257.1 1516.5 L1243.02 1516.5 L1243.02 1524.97 Q1244.04 1524.62 1245.06 1524.46 Q1246.08 1524.27 1247.1 1524.27 Q1252.88 1524.27 1256.26 1527.44 Q1259.64 1530.62 1259.64 1536.03 Q1259.64 1541.61 1256.17 1544.71 Q1252.7 1547.79 1246.38 1547.79 Q1244.2 1547.79 1241.93 1547.42 Q1239.69 1547.05 1237.28 1546.31 L1237.28 1541.61 Q1239.36 1542.74 1241.59 1543.3 Q1243.81 1543.86 1246.29 1543.86 Q1250.29 1543.86 1252.63 1541.75 Q1254.97 1539.64 1254.97 1536.03 Q1254.97 1532.42 1252.63 1530.31 Q1250.29 1528.21 1246.29 1528.21 Q1244.41 1528.21 1242.54 1528.62 Q1240.68 1529.04 1238.74 1529.92 L1238.74 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M1274.71 1515.64 Q1271.1 1515.64 1269.27 1519.2 Q1267.47 1522.75 1267.47 1529.87 Q1267.47 1536.98 1269.27 1540.55 Q1271.1 1544.09 1274.71 1544.09 Q1278.35 1544.09 1280.15 1540.55 Q1281.98 1536.98 1281.98 1529.87 Q1281.98 1522.75 1280.15 1519.2 Q1278.35 1515.64 1274.71 1515.64 M1274.71 1511.93 Q1280.52 1511.93 1283.58 1516.54 Q1286.66 1521.12 1286.66 1529.87 Q1286.66 1538.6 1283.58 1543.21 Q1280.52 1547.79 1274.71 1547.79 Q1268.9 1547.79 1265.82 1543.21 Q1262.77 1538.6 1262.77 1529.87 Q1262.77 1521.12 1265.82 1516.54 Q1268.9 1511.93 1274.71 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M1762.87 1512.56 L1785.09 1512.56 L1785.09 1514.55 L1772.55 1547.12 L1767.66 1547.12 L1779.47 1516.5 L1762.87 1516.5 L1762.87 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M1790.21 1512.56 L1808.57 1512.56 L1808.57 1516.5 L1794.49 1516.5 L1794.49 1524.97 Q1795.51 1524.62 1796.53 1524.46 Q1797.55 1524.27 1798.57 1524.27 Q1804.35 1524.27 1807.73 1527.44 Q1811.11 1530.62 1811.11 1536.03 Q1811.11 1541.61 1807.64 1544.71 Q1804.17 1547.79 1797.85 1547.79 Q1795.67 1547.79 1793.4 1547.42 Q1791.16 1547.05 1788.75 1546.31 L1788.75 1541.61 Q1790.83 1542.74 1793.06 1543.3 Q1795.28 1543.86 1797.76 1543.86 Q1801.76 1543.86 1804.1 1541.75 Q1806.44 1539.64 1806.44 1536.03 Q1806.44 1532.42 1804.1 1530.31 Q1801.76 1528.21 1797.76 1528.21 Q1795.88 1528.21 1794.01 1528.62 Q1792.15 1529.04 1790.21 1529.92 L1790.21 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M2275.38 1543.18 L2283.02 1543.18 L2283.02 1516.82 L2274.71 1518.49 L2274.71 1514.23 L2282.97 1512.56 L2287.65 1512.56 L2287.65 1543.18 L2295.29 1543.18 L2295.29 1547.12 L2275.38 1547.12 L2275.38 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M2310.36 1515.64 Q2306.75 1515.64 2304.92 1519.2 Q2303.11 1522.75 2303.11 1529.87 Q2303.11 1536.98 2304.92 1540.55 Q2306.75 1544.09 2310.36 1544.09 Q2313.99 1544.09 2315.8 1540.55 Q2317.63 1536.98 2317.63 1529.87 Q2317.63 1522.75 2315.8 1519.2 Q2313.99 1515.64 2310.36 1515.64 M2310.36 1511.93 Q2316.17 1511.93 2319.22 1516.54 Q2322.3 1521.12 2322.3 1529.87 Q2322.3 1538.6 2319.22 1543.21 Q2316.17 1547.79 2310.36 1547.79 Q2304.55 1547.79 2301.47 1543.21 Q2298.41 1538.6 2298.41 1529.87 Q2298.41 1521.12 2301.47 1516.54 Q2304.55 1511.93 2310.36 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M2337.37 1515.64 Q2333.76 1515.64 2331.93 1519.2 Q2330.13 1522.75 2330.13 1529.87 Q2330.13 1536.98 2331.93 1540.55 Q2333.76 1544.09 2337.37 1544.09 Q2341.01 1544.09 2342.81 1540.55 Q2344.64 1536.98 2344.64 1529.87 Q2344.64 1522.75 2342.81 1519.2 Q2341.01 1515.64 2337.37 1515.64 M2337.37 1511.93 Q2343.18 1511.93 2346.24 1516.54 Q2349.32 1521.12 2349.32 1529.87 Q2349.32 1538.6 2346.24 1543.21 Q2343.18 1547.79 2337.37 1547.79 Q2331.56 1547.79 2328.48 1543.21 Q2325.43 1538.6 2325.43 1529.87 Q2325.43 1521.12 2328.48 1516.54 Q2331.56 1511.93 2337.37 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  171.181,1478.61 2352.76,1478.61 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  171.181,1213.79 2352.76,1213.79 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  171.181,948.967 2352.76,948.967 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  171.181,684.145 2352.76,684.145 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  171.181,419.322 2352.76,419.322 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  171.181,154.5 2352.76,154.5 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  171.181,1486.45 171.181,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  171.181,1478.61 197.36,1478.61 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  171.181,1213.79 197.36,1213.79 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  171.181,948.967 197.36,948.967 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  171.181,684.145 197.36,684.145 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  171.181,419.322 197.36,419.322 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  171.181,154.5 197.36,154.5 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip500)\" d=\"M 0 0 M52.4736 1479.06 L82.1494 1479.06 L82.1494 1483 L52.4736 1483 L52.4736 1479.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M87.2651 1461.33 L105.621 1461.33 L105.621 1465.27 L91.5475 1465.27 L91.5475 1473.74 Q92.566 1473.39 93.5845 1473.23 Q94.603 1473.04 95.6215 1473.04 Q101.409 1473.04 104.788 1476.22 Q108.168 1479.39 108.168 1484.8 Q108.168 1490.38 104.696 1493.48 Q101.223 1496.56 94.9039 1496.56 Q92.728 1496.56 90.4595 1496.19 Q88.2141 1495.82 85.8068 1495.08 L85.8068 1490.38 Q87.8901 1491.52 90.1123 1492.07 Q92.3345 1492.63 94.8113 1492.63 Q98.8159 1492.63 101.154 1490.52 Q103.492 1488.41 103.492 1484.8 Q103.492 1481.19 101.154 1479.09 Q98.8159 1476.98 94.8113 1476.98 Q92.9363 1476.98 91.0614 1477.4 Q89.2095 1477.81 87.2651 1478.69 L87.2651 1461.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M123.237 1464.41 Q119.626 1464.41 117.797 1467.98 Q115.992 1471.52 115.992 1478.65 Q115.992 1485.75 117.797 1489.32 Q119.626 1492.86 123.237 1492.86 Q126.871 1492.86 128.677 1489.32 Q130.506 1485.75 130.506 1478.65 Q130.506 1471.52 128.677 1467.98 Q126.871 1464.41 123.237 1464.41 M123.237 1460.71 Q129.047 1460.71 132.103 1465.31 Q135.181 1469.9 135.181 1478.65 Q135.181 1487.37 132.103 1491.98 Q129.047 1496.56 123.237 1496.56 Q117.427 1496.56 114.348 1491.98 Q111.293 1487.37 111.293 1478.65 Q111.293 1469.9 114.348 1465.31 Q117.427 1460.71 123.237 1460.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M50.9921 1214.24 L80.6679 1214.24 L80.6679 1218.18 L50.9921 1218.18 L50.9921 1214.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M98.5845 1200.58 L86.779 1219.03 L98.5845 1219.03 L98.5845 1200.58 M97.3576 1196.51 L103.237 1196.51 L103.237 1219.03 L108.168 1219.03 L108.168 1222.92 L103.237 1222.92 L103.237 1231.07 L98.5845 1231.07 L98.5845 1222.92 L82.9827 1222.92 L82.9827 1218.41 L97.3576 1196.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M123.237 1199.59 Q119.626 1199.59 117.797 1203.15 Q115.992 1206.69 115.992 1213.82 Q115.992 1220.93 117.797 1224.5 Q119.626 1228.04 123.237 1228.04 Q126.871 1228.04 128.677 1224.5 Q130.506 1220.93 130.506 1213.82 Q130.506 1206.69 128.677 1203.15 Q126.871 1199.59 123.237 1199.59 M123.237 1195.88 Q129.047 1195.88 132.103 1200.49 Q135.181 1205.07 135.181 1213.82 Q135.181 1222.55 132.103 1227.16 Q129.047 1231.74 123.237 1231.74 Q117.427 1231.74 114.348 1227.16 Q111.293 1222.55 111.293 1213.82 Q111.293 1205.07 114.348 1200.49 Q117.427 1195.88 123.237 1195.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M52.1264 949.419 L81.8021 949.419 L81.8021 953.354 L52.1264 953.354 L52.1264 949.419 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M101.038 947.613 Q104.395 948.331 106.27 950.599 Q108.168 952.868 108.168 956.201 Q108.168 961.317 104.649 964.118 Q101.131 966.918 94.6493 966.918 Q92.4734 966.918 90.1586 966.479 Q87.8669 966.062 85.4132 965.205 L85.4132 960.692 Q87.3577 961.826 89.6725 962.405 Q91.9873 962.983 94.5104 962.983 Q98.9085 962.983 101.2 961.247 Q103.515 959.511 103.515 956.201 Q103.515 953.145 101.362 951.432 Q99.2326 949.696 95.4132 949.696 L91.3854 949.696 L91.3854 945.854 L95.5984 945.854 Q99.0474 945.854 100.876 944.488 Q102.705 943.099 102.705 940.507 Q102.705 937.845 100.807 936.432 Q98.9317 934.997 95.4132 934.997 Q93.4919 934.997 91.2928 935.414 Q89.0938 935.831 86.4549 936.71 L86.4549 932.544 Q89.1169 931.803 91.4317 931.432 Q93.7697 931.062 95.8298 931.062 Q101.154 931.062 104.256 933.493 Q107.358 935.9 107.358 940.02 Q107.358 942.891 105.714 944.882 Q104.071 946.849 101.038 947.613 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M123.237 934.766 Q119.626 934.766 117.797 938.331 Q115.992 941.872 115.992 949.002 Q115.992 956.108 117.797 959.673 Q119.626 963.215 123.237 963.215 Q126.871 963.215 128.677 959.673 Q130.506 956.108 130.506 949.002 Q130.506 941.872 128.677 938.331 Q126.871 934.766 123.237 934.766 M123.237 931.062 Q129.047 931.062 132.103 935.669 Q135.181 940.252 135.181 949.002 Q135.181 957.729 132.103 962.335 Q129.047 966.918 123.237 966.918 Q117.427 966.918 114.348 962.335 Q111.293 957.729 111.293 949.002 Q111.293 940.252 114.348 935.669 Q117.427 931.062 123.237 931.062 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M53.0754 684.596 L82.7512 684.596 L82.7512 688.531 L53.0754 688.531 L53.0754 684.596 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M91.8484 697.49 L108.168 697.49 L108.168 701.425 L86.2234 701.425 L86.2234 697.49 Q88.8854 694.735 93.4688 690.105 Q98.0752 685.453 99.2558 684.11 Q101.501 681.587 102.381 679.851 Q103.284 678.092 103.284 676.402 Q103.284 673.647 101.339 671.911 Q99.4178 670.175 96.316 670.175 Q94.1169 670.175 91.6632 670.939 Q89.2327 671.703 86.4549 673.254 L86.4549 668.531 Q89.279 667.397 91.7326 666.819 Q94.1863 666.24 96.2234 666.24 Q101.594 666.24 104.788 668.925 Q107.983 671.61 107.983 676.101 Q107.983 678.23 107.172 680.152 Q106.385 682.05 104.279 684.642 Q103.7 685.314 100.598 688.531 Q97.4965 691.726 91.8484 697.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M123.237 669.943 Q119.626 669.943 117.797 673.508 Q115.992 677.05 115.992 684.18 Q115.992 691.286 117.797 694.851 Q119.626 698.392 123.237 698.392 Q126.871 698.392 128.677 694.851 Q130.506 691.286 130.506 684.18 Q130.506 677.05 128.677 673.508 Q126.871 669.943 123.237 669.943 M123.237 666.24 Q129.047 666.24 132.103 670.846 Q135.181 675.43 135.181 684.18 Q135.181 692.906 132.103 697.513 Q129.047 702.096 123.237 702.096 Q117.427 702.096 114.348 697.513 Q111.293 692.906 111.293 684.18 Q111.293 675.43 114.348 670.846 Q117.427 666.24 123.237 666.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M52.7051 419.774 L82.3808 419.774 L82.3808 423.709 L52.7051 423.709 L52.7051 419.774 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M88.2604 432.667 L95.8993 432.667 L95.8993 406.302 L87.5892 407.968 L87.5892 403.709 L95.853 402.042 L100.529 402.042 L100.529 432.667 L108.168 432.667 L108.168 436.602 L88.2604 436.602 L88.2604 432.667 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M123.237 405.121 Q119.626 405.121 117.797 408.686 Q115.992 412.228 115.992 419.357 Q115.992 426.464 117.797 430.028 Q119.626 433.57 123.237 433.57 Q126.871 433.57 128.677 430.028 Q130.506 426.464 130.506 419.357 Q130.506 412.228 128.677 408.686 Q126.871 405.121 123.237 405.121 M123.237 401.417 Q129.047 401.417 132.103 406.024 Q135.181 410.607 135.181 419.357 Q135.181 428.084 132.103 432.69 Q129.047 437.274 123.237 437.274 Q117.427 437.274 114.348 432.69 Q111.293 428.084 111.293 419.357 Q111.293 410.607 114.348 406.024 Q117.427 401.417 123.237 401.417 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M123.237 140.299 Q119.626 140.299 117.797 143.864 Q115.992 147.405 115.992 154.535 Q115.992 161.641 117.797 165.206 Q119.626 168.748 123.237 168.748 Q126.871 168.748 128.677 165.206 Q130.506 161.641 130.506 154.535 Q130.506 147.405 128.677 143.864 Q126.871 140.299 123.237 140.299 M123.237 136.595 Q129.047 136.595 132.103 141.202 Q135.181 145.785 135.181 154.535 Q135.181 163.262 132.103 167.868 Q129.047 172.451 123.237 172.451 Q117.427 172.451 114.348 167.868 Q111.293 163.262 111.293 154.535 Q111.293 145.785 114.348 141.202 Q117.427 136.595 123.237 136.595 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M 0 0 M1283.11 27.2059 L1266.71 49.2833 L1283.97 72.576 L1275.17 72.576 L1261.97 54.752 L1248.76 72.576 L1239.97 72.576 L1257.59 48.8377 L1241.47 27.2059 L1250.26 27.2059 L1262.29 43.369 L1274.32 27.2059 L1283.11 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  232.924,162.047 253.925,172.574 274.926,183.7 295.927,195.191 316.928,206.929 337.929,218.836 358.93,230.857 379.931,242.954 400.931,255.104 421.932,267.289 \n",
       "  442.933,279.497 463.934,291.721 484.935,303.956 505.936,316.199 526.937,328.446 547.938,340.696 568.939,352.949 589.94,365.203 610.941,377.458 631.941,389.714 \n",
       "  652.942,401.97 673.943,414.226 694.944,426.483 715.945,438.74 736.946,450.997 757.947,463.253 778.948,475.51 799.949,487.767 820.95,500.024 841.951,512.28 \n",
       "  862.951,524.537 883.952,536.794 904.953,549.05 925.954,561.307 946.955,573.563 967.956,585.82 988.957,598.076 1009.96,610.333 1030.96,622.589 1051.96,634.845 \n",
       "  1072.96,647.101 1093.96,659.358 1114.96,671.614 1135.96,683.87 1156.96,696.126 1177.97,708.381 1198.97,720.633 1219.97,732.886 1240.97,745.139 1261.97,757.394 \n",
       "  1282.97,769.648 1303.97,781.902 1324.97,794.157 1345.97,806.412 1366.97,818.665 1387.97,830.924 1408.98,843.182 1429.98,855.439 1450.98,867.695 1471.98,879.95 \n",
       "  1492.98,892.205 1513.98,904.461 1534.98,916.716 1555.98,928.971 1576.98,941.226 1597.98,953.481 1618.98,965.736 1639.99,977.99 1660.99,990.245 1681.99,1002.5 \n",
       "  1702.99,1014.75 1723.99,1027.01 1744.99,1039.26 1765.99,1051.76 1786.99,1074.32 1807.99,1100.84 1828.99,1124.05 1849.99,1144.88 1871,1163.95 1892,1181.67 \n",
       "  1913,1198.34 1934,1214.21 1955,1229.47 1976,1244.25 1997,1258.68 2018,1272.83 2039,1286.77 2060,1300.55 2081,1314.2 2102.01,1327.76 \n",
       "  2123.01,1341.24 2144.01,1354.67 2165.01,1368.05 2186.01,1381.4 2207.01,1394.73 2228.01,1408.03 2249.01,1421.32 2270.01,1434.6 2291.01,1447.87 \n",
       "  \"/>\n",
       "</svg>\n"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "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=\"clip540\">\n",
       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip540)\" 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=\"clip541\">\n",
       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip540)\" d=\"\n",
       "M260.695 1486.45 L2352.76 1486.45 L2352.76 123.472 L260.695 123.472  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip542\">\n",
       "    <rect x=\"260\" y=\"123\" width=\"2093\" height=\"1364\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<polyline clip-path=\"url(#clip542)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  299.765,1486.45 299.765,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip542)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  803.245,1486.45 803.245,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip542)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1306.73,1486.45 1306.73,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip542)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1810.21,1486.45 1810.21,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip542)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  2313.69,1486.45 2313.69,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  260.695,1486.45 2352.76,1486.45 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  299.765,1486.45 299.765,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  803.245,1486.45 803.245,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1306.73,1486.45 1306.73,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1810.21,1486.45 1810.21,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  2313.69,1486.45 2313.69,1470.09 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip540)\" d=\"M 0 0 M299.765 1515.64 Q296.154 1515.64 294.325 1519.2 Q292.52 1522.75 292.52 1529.87 Q292.52 1536.98 294.325 1540.55 Q296.154 1544.09 299.765 1544.09 Q303.399 1544.09 305.205 1540.55 Q307.033 1536.98 307.033 1529.87 Q307.033 1522.75 305.205 1519.2 Q303.399 1515.64 299.765 1515.64 M299.765 1511.93 Q305.575 1511.93 308.631 1516.54 Q311.709 1521.12 311.709 1529.87 Q311.709 1538.6 308.631 1543.21 Q305.575 1547.79 299.765 1547.79 Q293.955 1547.79 290.876 1543.21 Q287.821 1538.6 287.821 1529.87 Q287.821 1521.12 290.876 1516.54 Q293.955 1511.93 299.765 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M784.889 1543.18 L801.208 1543.18 L801.208 1547.12 L779.264 1547.12 L779.264 1543.18 Q781.926 1540.43 786.509 1535.8 Q791.116 1531.15 792.296 1529.81 Q794.542 1527.28 795.421 1525.55 Q796.324 1523.79 796.324 1522.1 Q796.324 1519.34 794.379 1517.61 Q792.458 1515.87 789.356 1515.87 Q787.157 1515.87 784.704 1516.63 Q782.273 1517.4 779.495 1518.95 L779.495 1514.23 Q782.319 1513.09 784.773 1512.51 Q787.227 1511.93 789.264 1511.93 Q794.634 1511.93 797.829 1514.62 Q801.023 1517.31 801.023 1521.8 Q801.023 1523.93 800.213 1525.85 Q799.426 1527.74 797.319 1530.34 Q796.741 1531.01 793.639 1534.23 Q790.537 1537.42 784.889 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M806.324 1512.56 L824.68 1512.56 L824.68 1516.5 L810.606 1516.5 L810.606 1524.97 Q811.625 1524.62 812.643 1524.46 Q813.662 1524.27 814.68 1524.27 Q820.467 1524.27 823.847 1527.44 Q827.227 1530.62 827.227 1536.03 Q827.227 1541.61 823.754 1544.71 Q820.282 1547.79 813.963 1547.79 Q811.787 1547.79 809.518 1547.42 Q807.273 1547.05 804.866 1546.31 L804.866 1541.61 Q806.949 1542.74 809.171 1543.3 Q811.393 1543.86 813.87 1543.86 Q817.875 1543.86 820.213 1541.75 Q822.551 1539.64 822.551 1536.03 Q822.551 1532.42 820.213 1530.31 Q817.875 1528.21 813.87 1528.21 Q811.995 1528.21 810.12 1528.62 Q808.268 1529.04 806.324 1529.92 L806.324 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M1283.5 1512.56 L1301.85 1512.56 L1301.85 1516.5 L1287.78 1516.5 L1287.78 1524.97 Q1288.8 1524.62 1289.82 1524.46 Q1290.83 1524.27 1291.85 1524.27 Q1297.64 1524.27 1301.02 1527.44 Q1304.4 1530.62 1304.4 1536.03 Q1304.4 1541.61 1300.93 1544.71 Q1297.45 1547.79 1291.14 1547.79 Q1288.96 1547.79 1286.69 1547.42 Q1284.45 1547.05 1282.04 1546.31 L1282.04 1541.61 Q1284.12 1542.74 1286.34 1543.3 Q1288.57 1543.86 1291.04 1543.86 Q1295.05 1543.86 1297.39 1541.75 Q1299.72 1539.64 1299.72 1536.03 Q1299.72 1532.42 1297.39 1530.31 Q1295.05 1528.21 1291.04 1528.21 Q1289.17 1528.21 1287.29 1528.62 Q1285.44 1529.04 1283.5 1529.92 L1283.5 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M1319.47 1515.64 Q1315.86 1515.64 1314.03 1519.2 Q1312.22 1522.75 1312.22 1529.87 Q1312.22 1536.98 1314.03 1540.55 Q1315.86 1544.09 1319.47 1544.09 Q1323.1 1544.09 1324.91 1540.55 Q1326.74 1536.98 1326.74 1529.87 Q1326.74 1522.75 1324.91 1519.2 Q1323.1 1515.64 1319.47 1515.64 M1319.47 1511.93 Q1325.28 1511.93 1328.33 1516.54 Q1331.41 1521.12 1331.41 1529.87 Q1331.41 1538.6 1328.33 1543.21 Q1325.28 1547.79 1319.47 1547.79 Q1313.66 1547.79 1310.58 1543.21 Q1307.52 1538.6 1307.52 1529.87 Q1307.52 1521.12 1310.58 1516.54 Q1313.66 1511.93 1319.47 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M1786.09 1512.56 L1808.31 1512.56 L1808.31 1514.55 L1795.76 1547.12 L1790.88 1547.12 L1802.68 1516.5 L1786.09 1516.5 L1786.09 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M1813.42 1512.56 L1831.78 1512.56 L1831.78 1516.5 L1817.71 1516.5 L1817.71 1524.97 Q1818.72 1524.62 1819.74 1524.46 Q1820.76 1524.27 1821.78 1524.27 Q1827.57 1524.27 1830.95 1527.44 Q1834.33 1530.62 1834.33 1536.03 Q1834.33 1541.61 1830.85 1544.71 Q1827.38 1547.79 1821.06 1547.79 Q1818.89 1547.79 1816.62 1547.42 Q1814.37 1547.05 1811.96 1546.31 L1811.96 1541.61 Q1814.05 1542.74 1816.27 1543.3 Q1818.49 1543.86 1820.97 1543.86 Q1824.97 1543.86 1827.31 1541.75 Q1829.65 1539.64 1829.65 1536.03 Q1829.65 1532.42 1827.31 1530.31 Q1824.97 1528.21 1820.97 1528.21 Q1819.09 1528.21 1817.22 1528.62 Q1815.37 1529.04 1813.42 1529.92 L1813.42 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M2277.05 1543.18 L2284.69 1543.18 L2284.69 1516.82 L2276.38 1518.49 L2276.38 1514.23 L2284.65 1512.56 L2289.32 1512.56 L2289.32 1543.18 L2296.96 1543.18 L2296.96 1547.12 L2277.05 1547.12 L2277.05 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M2312.03 1515.64 Q2308.42 1515.64 2306.59 1519.2 Q2304.79 1522.75 2304.79 1529.87 Q2304.79 1536.98 2306.59 1540.55 Q2308.42 1544.09 2312.03 1544.09 Q2315.66 1544.09 2317.47 1540.55 Q2319.3 1536.98 2319.3 1529.87 Q2319.3 1522.75 2317.47 1519.2 Q2315.66 1515.64 2312.03 1515.64 M2312.03 1511.93 Q2317.84 1511.93 2320.9 1516.54 Q2323.98 1521.12 2323.98 1529.87 Q2323.98 1538.6 2320.9 1543.21 Q2317.84 1547.79 2312.03 1547.79 Q2306.22 1547.79 2303.14 1543.21 Q2300.09 1538.6 2300.09 1529.87 Q2300.09 1521.12 2303.14 1516.54 Q2306.22 1511.93 2312.03 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M2339.04 1515.64 Q2335.43 1515.64 2333.6 1519.2 Q2331.8 1522.75 2331.8 1529.87 Q2331.8 1536.98 2333.6 1540.55 Q2335.43 1544.09 2339.04 1544.09 Q2342.68 1544.09 2344.48 1540.55 Q2346.31 1536.98 2346.31 1529.87 Q2346.31 1522.75 2344.48 1519.2 Q2342.68 1515.64 2339.04 1515.64 M2339.04 1511.93 Q2344.85 1511.93 2347.91 1516.54 Q2350.99 1521.12 2350.99 1529.87 Q2350.99 1538.6 2347.91 1543.21 Q2344.85 1547.79 2339.04 1547.79 Q2333.23 1547.79 2330.16 1543.21 Q2327.1 1538.6 2327.1 1529.87 Q2327.1 1521.12 2330.16 1516.54 Q2333.23 1511.93 2339.04 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip542)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  260.695,1394.88 2352.76,1394.88 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip542)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  260.695,1117.06 2352.76,1117.06 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip542)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  260.695,839.238 2352.76,839.238 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip542)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  260.695,561.417 2352.76,561.417 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip542)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  260.695,283.595 2352.76,283.595 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  260.695,1486.45 260.695,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  260.695,1394.88 285.8,1394.88 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  260.695,1117.06 285.8,1117.06 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  260.695,839.238 285.8,839.238 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  260.695,561.417 285.8,561.417 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip540)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  260.695,283.595 285.8,283.595 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip540)\" d=\"M 0 0 M50.9921 1395.33 L80.6679 1395.33 L80.6679 1399.27 L50.9921 1399.27 L50.9921 1395.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M95.7373 1380.68 Q92.1262 1380.68 90.2975 1384.25 Q88.4919 1387.79 88.4919 1394.92 Q88.4919 1402.02 90.2975 1405.59 Q92.1262 1409.13 95.7373 1409.13 Q99.3715 1409.13 101.177 1405.59 Q103.006 1402.02 103.006 1394.92 Q103.006 1387.79 101.177 1384.25 Q99.3715 1380.68 95.7373 1380.68 M95.7373 1376.98 Q101.547 1376.98 104.603 1381.58 Q107.682 1386.17 107.682 1394.92 Q107.682 1403.64 104.603 1408.25 Q101.547 1412.83 95.7373 1412.83 Q89.9271 1412.83 86.8484 1408.25 Q83.7929 1403.64 83.7929 1394.92 Q83.7929 1386.17 86.8484 1381.58 Q89.9271 1376.98 95.7373 1376.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M112.751 1406.28 L117.635 1406.28 L117.635 1412.16 L112.751 1412.16 L112.751 1406.28 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M132.705 1380.68 Q129.094 1380.68 127.265 1384.25 Q125.459 1387.79 125.459 1394.92 Q125.459 1402.02 127.265 1405.59 Q129.094 1409.13 132.705 1409.13 Q136.339 1409.13 138.144 1405.59 Q139.973 1402.02 139.973 1394.92 Q139.973 1387.79 138.144 1384.25 Q136.339 1380.68 132.705 1380.68 M132.705 1376.98 Q138.515 1376.98 141.57 1381.58 Q144.649 1386.17 144.649 1394.92 Q144.649 1403.64 141.57 1408.25 Q138.515 1412.83 132.705 1412.83 Q126.894 1412.83 123.816 1408.25 Q120.76 1403.64 120.76 1394.92 Q120.76 1386.17 123.816 1381.58 Q126.894 1376.98 132.705 1376.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M159.718 1380.68 Q156.107 1380.68 154.279 1384.25 Q152.473 1387.79 152.473 1394.92 Q152.473 1402.02 154.279 1405.59 Q156.107 1409.13 159.718 1409.13 Q163.353 1409.13 165.158 1405.59 Q166.987 1402.02 166.987 1394.92 Q166.987 1387.79 165.158 1384.25 Q163.353 1380.68 159.718 1380.68 M159.718 1376.98 Q165.529 1376.98 168.584 1381.58 Q171.663 1386.17 171.663 1394.92 Q171.663 1403.64 168.584 1408.25 Q165.529 1412.83 159.718 1412.83 Q153.908 1412.83 150.83 1408.25 Q147.774 1403.64 147.774 1394.92 Q147.774 1386.17 150.83 1381.58 Q153.908 1376.98 159.718 1376.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M186.732 1380.68 Q183.121 1380.68 181.292 1384.25 Q179.487 1387.79 179.487 1394.92 Q179.487 1402.02 181.292 1405.59 Q183.121 1409.13 186.732 1409.13 Q190.366 1409.13 192.172 1405.59 Q194.001 1402.02 194.001 1394.92 Q194.001 1387.79 192.172 1384.25 Q190.366 1380.68 186.732 1380.68 M186.732 1376.98 Q192.542 1376.98 195.598 1381.58 Q198.677 1386.17 198.677 1394.92 Q198.677 1403.64 195.598 1408.25 Q192.542 1412.83 186.732 1412.83 Q180.922 1412.83 177.843 1408.25 Q174.788 1403.64 174.788 1394.92 Q174.788 1386.17 177.843 1381.58 Q180.922 1376.98 186.732 1376.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M203.792 1377.6 L222.149 1377.6 L222.149 1381.54 L208.075 1381.54 L208.075 1390.01 Q209.093 1389.66 210.112 1389.5 Q211.13 1389.31 212.149 1389.31 Q217.936 1389.31 221.315 1392.49 Q224.695 1395.66 224.695 1401.07 Q224.695 1406.65 221.223 1409.75 Q217.75 1412.83 211.431 1412.83 Q209.255 1412.83 206.987 1412.46 Q204.741 1412.09 202.334 1411.35 L202.334 1406.65 Q204.417 1407.79 206.639 1408.34 Q208.862 1408.9 211.338 1408.9 Q215.343 1408.9 217.681 1406.79 Q220.019 1404.69 220.019 1401.07 Q220.019 1397.46 217.681 1395.36 Q215.343 1393.25 211.338 1393.25 Q209.463 1393.25 207.589 1393.67 Q205.737 1394.08 203.792 1394.96 L203.792 1377.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M94.7419 1102.86 Q91.1308 1102.86 89.3021 1106.42 Q87.4966 1109.97 87.4966 1117.09 Q87.4966 1124.2 89.3021 1127.77 Q91.1308 1131.31 94.7419 1131.31 Q98.3761 1131.31 100.182 1127.77 Q102.01 1124.2 102.01 1117.09 Q102.01 1109.97 100.182 1106.42 Q98.3761 1102.86 94.7419 1102.86 M94.7419 1099.16 Q100.552 1099.16 103.608 1103.76 Q106.686 1108.35 106.686 1117.09 Q106.686 1125.82 103.608 1130.43 Q100.552 1135.01 94.7419 1135.01 Q88.9317 1135.01 85.8531 1130.43 Q82.7975 1125.82 82.7975 1117.09 Q82.7975 1108.35 85.8531 1103.76 Q88.9317 1099.16 94.7419 1099.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M111.756 1128.46 L116.64 1128.46 L116.64 1134.34 L111.756 1134.34 L111.756 1128.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M131.709 1102.86 Q128.098 1102.86 126.27 1106.42 Q124.464 1109.97 124.464 1117.09 Q124.464 1124.2 126.27 1127.77 Q128.098 1131.31 131.709 1131.31 Q135.344 1131.31 137.149 1127.77 Q138.978 1124.2 138.978 1117.09 Q138.978 1109.97 137.149 1106.42 Q135.344 1102.86 131.709 1102.86 M131.709 1099.16 Q137.519 1099.16 140.575 1103.76 Q143.654 1108.35 143.654 1117.09 Q143.654 1125.82 140.575 1130.43 Q137.519 1135.01 131.709 1135.01 Q125.899 1135.01 122.82 1130.43 Q119.765 1125.82 119.765 1117.09 Q119.765 1108.35 122.82 1103.76 Q125.899 1099.16 131.709 1099.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M158.723 1102.86 Q155.112 1102.86 153.283 1106.42 Q151.478 1109.97 151.478 1117.09 Q151.478 1124.2 153.283 1127.77 Q155.112 1131.31 158.723 1131.31 Q162.357 1131.31 164.163 1127.77 Q165.992 1124.2 165.992 1117.09 Q165.992 1109.97 164.163 1106.42 Q162.357 1102.86 158.723 1102.86 M158.723 1099.16 Q164.533 1099.16 167.589 1103.76 Q170.667 1108.35 170.667 1117.09 Q170.667 1125.82 167.589 1130.43 Q164.533 1135.01 158.723 1135.01 Q152.913 1135.01 149.834 1130.43 Q146.779 1125.82 146.779 1117.09 Q146.779 1108.35 149.834 1103.76 Q152.913 1099.16 158.723 1099.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M185.737 1102.86 Q182.126 1102.86 180.297 1106.42 Q178.491 1109.97 178.491 1117.09 Q178.491 1124.2 180.297 1127.77 Q182.126 1131.31 185.737 1131.31 Q189.371 1131.31 191.177 1127.77 Q193.005 1124.2 193.005 1117.09 Q193.005 1109.97 191.177 1106.42 Q189.371 1102.86 185.737 1102.86 M185.737 1099.16 Q191.547 1099.16 194.602 1103.76 Q197.681 1108.35 197.681 1117.09 Q197.681 1125.82 194.602 1130.43 Q191.547 1135.01 185.737 1135.01 Q179.927 1135.01 176.848 1130.43 Q173.792 1125.82 173.792 1117.09 Q173.792 1108.35 176.848 1103.76 Q179.927 1099.16 185.737 1099.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M212.751 1102.86 Q209.139 1102.86 207.311 1106.42 Q205.505 1109.97 205.505 1117.09 Q205.505 1124.2 207.311 1127.77 Q209.139 1131.31 212.751 1131.31 Q216.385 1131.31 218.19 1127.77 Q220.019 1124.2 220.019 1117.09 Q220.019 1109.97 218.19 1106.42 Q216.385 1102.86 212.751 1102.86 M212.751 1099.16 Q218.561 1099.16 221.616 1103.76 Q224.695 1108.35 224.695 1117.09 Q224.695 1125.82 221.616 1130.43 Q218.561 1135.01 212.751 1135.01 Q206.94 1135.01 203.862 1130.43 Q200.806 1125.82 200.806 1117.09 Q200.806 1108.35 203.862 1103.76 Q206.94 1099.16 212.751 1099.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M95.7373 825.037 Q92.1262 825.037 90.2975 828.602 Q88.4919 832.144 88.4919 839.273 Q88.4919 846.38 90.2975 849.944 Q92.1262 853.486 95.7373 853.486 Q99.3715 853.486 101.177 849.944 Q103.006 846.38 103.006 839.273 Q103.006 832.144 101.177 828.602 Q99.3715 825.037 95.7373 825.037 M95.7373 821.333 Q101.547 821.333 104.603 825.94 Q107.682 830.523 107.682 839.273 Q107.682 848 104.603 852.606 Q101.547 857.19 95.7373 857.19 Q89.9271 857.19 86.8484 852.606 Q83.7929 848 83.7929 839.273 Q83.7929 830.523 86.8484 825.94 Q89.9271 821.333 95.7373 821.333 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M112.751 850.639 L117.635 850.639 L117.635 856.518 L112.751 856.518 L112.751 850.639 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M132.705 825.037 Q129.094 825.037 127.265 828.602 Q125.459 832.144 125.459 839.273 Q125.459 846.38 127.265 849.944 Q129.094 853.486 132.705 853.486 Q136.339 853.486 138.144 849.944 Q139.973 846.38 139.973 839.273 Q139.973 832.144 138.144 828.602 Q136.339 825.037 132.705 825.037 M132.705 821.333 Q138.515 821.333 141.57 825.94 Q144.649 830.523 144.649 839.273 Q144.649 848 141.57 852.606 Q138.515 857.19 132.705 857.19 Q126.894 857.19 123.816 852.606 Q120.76 848 120.76 839.273 Q120.76 830.523 123.816 825.94 Q126.894 821.333 132.705 821.333 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M159.718 825.037 Q156.107 825.037 154.279 828.602 Q152.473 832.144 152.473 839.273 Q152.473 846.38 154.279 849.944 Q156.107 853.486 159.718 853.486 Q163.353 853.486 165.158 849.944 Q166.987 846.38 166.987 839.273 Q166.987 832.144 165.158 828.602 Q163.353 825.037 159.718 825.037 M159.718 821.333 Q165.529 821.333 168.584 825.94 Q171.663 830.523 171.663 839.273 Q171.663 848 168.584 852.606 Q165.529 857.19 159.718 857.19 Q153.908 857.19 150.83 852.606 Q147.774 848 147.774 839.273 Q147.774 830.523 150.83 825.94 Q153.908 821.333 159.718 821.333 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M186.732 825.037 Q183.121 825.037 181.292 828.602 Q179.487 832.144 179.487 839.273 Q179.487 846.38 181.292 849.944 Q183.121 853.486 186.732 853.486 Q190.366 853.486 192.172 849.944 Q194.001 846.38 194.001 839.273 Q194.001 832.144 192.172 828.602 Q190.366 825.037 186.732 825.037 M186.732 821.333 Q192.542 821.333 195.598 825.94 Q198.677 830.523 198.677 839.273 Q198.677 848 195.598 852.606 Q192.542 857.19 186.732 857.19 Q180.922 857.19 177.843 852.606 Q174.788 848 174.788 839.273 Q174.788 830.523 177.843 825.94 Q180.922 821.333 186.732 821.333 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M203.792 821.958 L222.149 821.958 L222.149 825.894 L208.075 825.894 L208.075 834.366 Q209.093 834.019 210.112 833.857 Q211.13 833.671 212.149 833.671 Q217.936 833.671 221.315 836.843 Q224.695 840.014 224.695 845.431 Q224.695 851.009 221.223 854.111 Q217.75 857.19 211.431 857.19 Q209.255 857.19 206.987 856.819 Q204.741 856.449 202.334 855.708 L202.334 851.009 Q204.417 852.143 206.639 852.699 Q208.862 853.255 211.338 853.255 Q215.343 853.255 217.681 851.148 Q220.019 849.042 220.019 845.431 Q220.019 841.819 217.681 839.713 Q215.343 837.606 211.338 837.606 Q209.463 837.606 207.589 838.023 Q205.737 838.44 203.792 839.319 L203.792 821.958 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M95.9687 547.215 Q92.3576 547.215 90.529 550.78 Q88.7234 554.322 88.7234 561.451 Q88.7234 568.558 90.529 572.123 Q92.3576 575.664 95.9687 575.664 Q99.603 575.664 101.409 572.123 Q103.237 568.558 103.237 561.451 Q103.237 554.322 101.409 550.78 Q99.603 547.215 95.9687 547.215 M95.9687 543.512 Q101.779 543.512 104.834 548.118 Q107.913 552.701 107.913 561.451 Q107.913 570.178 104.834 574.785 Q101.779 579.368 95.9687 579.368 Q90.1586 579.368 87.0799 574.785 Q84.0244 570.178 84.0244 561.451 Q84.0244 552.701 87.0799 548.118 Q90.1586 543.512 95.9687 543.512 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M112.983 572.817 L117.867 572.817 L117.867 578.697 L112.983 578.697 L112.983 572.817 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M132.936 547.215 Q129.325 547.215 127.496 550.78 Q125.691 554.322 125.691 561.451 Q125.691 568.558 127.496 572.123 Q129.325 575.664 132.936 575.664 Q136.57 575.664 138.376 572.123 Q140.205 568.558 140.205 561.451 Q140.205 554.322 138.376 550.78 Q136.57 547.215 132.936 547.215 M132.936 543.512 Q138.746 543.512 141.802 548.118 Q144.881 552.701 144.881 561.451 Q144.881 570.178 141.802 574.785 Q138.746 579.368 132.936 579.368 Q127.126 579.368 124.047 574.785 Q120.992 570.178 120.992 561.451 Q120.992 552.701 124.047 548.118 Q127.126 543.512 132.936 543.512 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M159.95 547.215 Q156.339 547.215 154.51 550.78 Q152.705 554.322 152.705 561.451 Q152.705 568.558 154.51 572.123 Q156.339 575.664 159.95 575.664 Q163.584 575.664 165.39 572.123 Q167.218 568.558 167.218 561.451 Q167.218 554.322 165.39 550.78 Q163.584 547.215 159.95 547.215 M159.95 543.512 Q165.76 543.512 168.816 548.118 Q171.894 552.701 171.894 561.451 Q171.894 570.178 168.816 574.785 Q165.76 579.368 159.95 579.368 Q154.14 579.368 151.061 574.785 Q148.005 570.178 148.005 561.451 Q148.005 552.701 151.061 548.118 Q154.14 543.512 159.95 543.512 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M177.774 574.761 L185.413 574.761 L185.413 548.396 L177.103 550.062 L177.103 545.803 L185.366 544.137 L190.042 544.137 L190.042 574.761 L197.681 574.761 L197.681 578.697 L177.774 578.697 L177.774 574.761 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M212.751 547.215 Q209.139 547.215 207.311 550.78 Q205.505 554.322 205.505 561.451 Q205.505 568.558 207.311 572.123 Q209.139 575.664 212.751 575.664 Q216.385 575.664 218.19 572.123 Q220.019 568.558 220.019 561.451 Q220.019 554.322 218.19 550.78 Q216.385 547.215 212.751 547.215 M212.751 543.512 Q218.561 543.512 221.616 548.118 Q224.695 552.701 224.695 561.451 Q224.695 570.178 221.616 574.785 Q218.561 579.368 212.751 579.368 Q206.94 579.368 203.862 574.785 Q200.806 570.178 200.806 561.451 Q200.806 552.701 203.862 548.118 Q206.94 543.512 212.751 543.512 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M96.9641 269.393 Q93.353 269.393 91.5243 272.958 Q89.7188 276.5 89.7188 283.63 Q89.7188 290.736 91.5243 294.301 Q93.353 297.842 96.9641 297.842 Q100.598 297.842 102.404 294.301 Q104.233 290.736 104.233 283.63 Q104.233 276.5 102.404 272.958 Q100.598 269.393 96.9641 269.393 M96.9641 265.69 Q102.774 265.69 105.83 270.296 Q108.908 274.88 108.908 283.63 Q108.908 292.356 105.83 296.963 Q102.774 301.546 96.9641 301.546 Q91.1539 301.546 88.0753 296.963 Q85.0197 292.356 85.0197 283.63 Q85.0197 274.88 88.0753 270.296 Q91.1539 265.69 96.9641 265.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M113.978 294.995 L118.862 294.995 L118.862 300.875 L113.978 300.875 L113.978 294.995 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M133.931 269.393 Q130.32 269.393 128.492 272.958 Q126.686 276.5 126.686 283.63 Q126.686 290.736 128.492 294.301 Q130.32 297.842 133.931 297.842 Q137.566 297.842 139.371 294.301 Q141.2 290.736 141.2 283.63 Q141.2 276.5 139.371 272.958 Q137.566 269.393 133.931 269.393 M133.931 265.69 Q139.742 265.69 142.797 270.296 Q145.876 274.88 145.876 283.63 Q145.876 292.356 142.797 296.963 Q139.742 301.546 133.931 301.546 Q128.121 301.546 125.043 296.963 Q121.987 292.356 121.987 283.63 Q121.987 274.88 125.043 270.296 Q128.121 265.69 133.931 265.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M160.945 269.393 Q157.334 269.393 155.505 272.958 Q153.7 276.5 153.7 283.63 Q153.7 290.736 155.505 294.301 Q157.334 297.842 160.945 297.842 Q164.579 297.842 166.385 294.301 Q168.214 290.736 168.214 283.63 Q168.214 276.5 166.385 272.958 Q164.579 269.393 160.945 269.393 M160.945 265.69 Q166.755 265.69 169.811 270.296 Q172.89 274.88 172.89 283.63 Q172.89 292.356 169.811 296.963 Q166.755 301.546 160.945 301.546 Q155.135 301.546 152.056 296.963 Q149.001 292.356 149.001 283.63 Q149.001 274.88 152.056 270.296 Q155.135 265.69 160.945 265.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M178.769 296.94 L186.408 296.94 L186.408 270.574 L178.098 272.241 L178.098 267.981 L186.362 266.315 L191.038 266.315 L191.038 296.94 L198.677 296.94 L198.677 300.875 L178.769 300.875 L178.769 296.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M203.792 266.315 L222.149 266.315 L222.149 270.25 L208.075 270.25 L208.075 278.722 Q209.093 278.375 210.112 278.213 Q211.13 278.028 212.149 278.028 Q217.936 278.028 221.315 281.199 Q224.695 284.37 224.695 289.787 Q224.695 295.366 221.223 298.467 Q217.75 301.546 211.431 301.546 Q209.255 301.546 206.987 301.176 Q204.741 300.805 202.334 300.065 L202.334 295.366 Q204.417 296.5 206.639 297.055 Q208.862 297.611 211.338 297.611 Q215.343 297.611 217.681 295.504 Q220.019 293.398 220.019 289.787 Q220.019 286.176 217.681 284.069 Q215.343 281.963 211.338 281.963 Q209.463 281.963 207.589 282.38 Q205.737 282.796 203.792 283.676 L203.792 266.315 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip540)\" d=\"M 0 0 M1308.87 76.7889 Q1305.71 84.8907 1302.72 87.3618 Q1299.72 89.8329 1294.69 89.8329 L1288.74 89.8329 L1288.74 83.5945 L1293.11 83.5945 Q1296.19 83.5945 1297.89 82.1361 Q1299.6 80.6778 1301.66 75.2496 L1303 71.8468 L1284.65 27.2059 L1292.55 27.2059 L1306.73 62.6918 L1320.9 27.2059 L1328.8 27.2059 L1308.87 76.7889 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip542)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  319.904,1117.06 340.043,1117.05 360.183,1116.45 380.322,1115.58 400.461,1114.6 420.6,1113.34 440.739,1112.05 460.879,1110.53 481.018,1108.69 501.157,1106.48 \n",
       "  521.296,1103.91 541.435,1100.95 561.575,1097.54 581.714,1093.69 601.853,1089.44 621.992,1084.8 642.132,1079.75 662.271,1074.29 682.41,1068.4 702.549,1062.1 \n",
       "  722.688,1055.43 742.828,1048.44 762.967,1041.1 783.106,1033.45 803.245,1025.51 823.384,1017.37 843.524,1008.98 863.663,1000.36 883.802,991.513 903.941,982.484 \n",
       "  924.08,973.294 944.22,963.953 964.359,954.549 984.498,945.096 1004.64,935.583 1024.78,926.017 1044.92,916.405 1065.05,906.737 1085.19,897.055 1105.33,887.422 \n",
       "  1125.47,877.873 1145.61,868.916 1165.75,859.632 1185.89,850.434 1206.03,841.051 1226.17,835.475 1246.31,873.061 1266.45,940.558 1286.59,999.426 1306.73,1044.68 \n",
       "  1326.86,1079.16 1347,1105.63 1367.14,1126.23 1387.28,1142.38 1407.42,1172.88 1427.56,1251.32 1447.7,1252.19 1467.84,1233.14 1487.98,1218.54 1508.12,1209.15 \n",
       "  1528.26,1203.04 1548.4,1199.11 1568.54,1196.6 1588.67,1195.03 1608.81,1194.09 1628.95,1193.57 1649.09,1193.31 1669.23,1193.24 1689.37,1193.26 1709.51,1193.42 \n",
       "  1729.65,1193.63 1749.79,1193.87 1769.93,1194.17 1790.07,1094.87 1810.21,307.377 1830.34,162.047 1850.48,440.771 1870.62,714.3 1890.76,921.826 1910.9,1073.38 \n",
       "  1931.04,1183.36 1951.18,1263.36 1971.32,1321.15 1991.46,1362.83 2011.6,1392.86 2031.74,1413.99 2051.88,1428.41 2072.02,1437.95 2092.15,1443.84 2112.29,1446.91 \n",
       "  2132.43,1447.87 2152.57,1447.26 2172.71,1445.48 2192.85,1442.82 2212.99,1439.52 2233.13,1435.74 2253.27,1431.63 2273.41,1427.26 2293.55,1422.74 \n",
       "  \"/>\n",
       "</svg>\n"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "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=\"clip580\">\n",
       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip580)\" 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=\"clip581\">\n",
       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip580)\" d=\"\n",
       "M174.862 1486.45 L2352.76 1486.45 L2352.76 123.472 L174.862 123.472  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip582\">\n",
       "    <rect x=\"174\" y=\"123\" width=\"2179\" height=\"1364\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<polyline clip-path=\"url(#clip582)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  215.535,1486.45 215.535,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip582)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  739.672,1486.45 739.672,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip582)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1263.81,1486.45 1263.81,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip582)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1787.95,1486.45 1787.95,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip582)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  2312.08,1486.45 2312.08,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  174.862,1486.45 2352.76,1486.45 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  215.535,1486.45 215.535,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  739.672,1486.45 739.672,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1263.81,1486.45 1263.81,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1787.95,1486.45 1787.95,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  2312.08,1486.45 2312.08,1470.09 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip580)\" d=\"M 0 0 M215.535 1515.64 Q211.924 1515.64 210.095 1519.2 Q208.29 1522.75 208.29 1529.87 Q208.29 1536.98 210.095 1540.55 Q211.924 1544.09 215.535 1544.09 Q219.169 1544.09 220.975 1540.55 Q222.804 1536.98 222.804 1529.87 Q222.804 1522.75 220.975 1519.2 Q219.169 1515.64 215.535 1515.64 M215.535 1511.93 Q221.345 1511.93 224.401 1516.54 Q227.479 1521.12 227.479 1529.87 Q227.479 1538.6 224.401 1543.21 Q221.345 1547.79 215.535 1547.79 Q209.725 1547.79 206.646 1543.21 Q203.591 1538.6 203.591 1529.87 Q203.591 1521.12 206.646 1516.54 Q209.725 1511.93 215.535 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M721.316 1543.18 L737.635 1543.18 L737.635 1547.12 L715.691 1547.12 L715.691 1543.18 Q718.353 1540.43 722.936 1535.8 Q727.542 1531.15 728.723 1529.81 Q730.968 1527.28 731.848 1525.55 Q732.751 1523.79 732.751 1522.1 Q732.751 1519.34 730.806 1517.61 Q728.885 1515.87 725.783 1515.87 Q723.584 1515.87 721.13 1516.63 Q718.7 1517.4 715.922 1518.95 L715.922 1514.23 Q718.746 1513.09 721.2 1512.51 Q723.654 1511.93 725.691 1511.93 Q731.061 1511.93 734.255 1514.62 Q737.45 1517.31 737.45 1521.8 Q737.45 1523.93 736.64 1525.85 Q735.853 1527.74 733.746 1530.34 Q733.167 1531.01 730.066 1534.23 Q726.964 1537.42 721.316 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M742.751 1512.56 L761.107 1512.56 L761.107 1516.5 L747.033 1516.5 L747.033 1524.97 Q748.052 1524.62 749.07 1524.46 Q750.089 1524.27 751.107 1524.27 Q756.894 1524.27 760.274 1527.44 Q763.653 1530.62 763.653 1536.03 Q763.653 1541.61 760.181 1544.71 Q756.709 1547.79 750.39 1547.79 Q748.214 1547.79 745.945 1547.42 Q743.7 1547.05 741.292 1546.31 L741.292 1541.61 Q743.376 1542.74 745.598 1543.3 Q747.82 1543.86 750.297 1543.86 Q754.302 1543.86 756.64 1541.75 Q758.977 1539.64 758.977 1536.03 Q758.977 1532.42 756.64 1530.31 Q754.302 1528.21 750.297 1528.21 Q748.422 1528.21 746.547 1528.62 Q744.695 1529.04 742.751 1529.92 L742.751 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M1240.58 1512.56 L1258.94 1512.56 L1258.94 1516.5 L1244.86 1516.5 L1244.86 1524.97 Q1245.88 1524.62 1246.9 1524.46 Q1247.92 1524.27 1248.94 1524.27 Q1254.72 1524.27 1258.1 1527.44 Q1261.48 1530.62 1261.48 1536.03 Q1261.48 1541.61 1258.01 1544.71 Q1254.54 1547.79 1248.22 1547.79 Q1246.04 1547.79 1243.77 1547.42 Q1241.53 1547.05 1239.12 1546.31 L1239.12 1541.61 Q1241.2 1542.74 1243.43 1543.3 Q1245.65 1543.86 1248.13 1543.86 Q1252.13 1543.86 1254.47 1541.75 Q1256.81 1539.64 1256.81 1536.03 Q1256.81 1532.42 1254.47 1530.31 Q1252.13 1528.21 1248.13 1528.21 Q1246.25 1528.21 1244.38 1528.62 Q1242.52 1529.04 1240.58 1529.92 L1240.58 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M1276.55 1515.64 Q1272.94 1515.64 1271.11 1519.2 Q1269.31 1522.75 1269.31 1529.87 Q1269.31 1536.98 1271.11 1540.55 Q1272.94 1544.09 1276.55 1544.09 Q1280.19 1544.09 1281.99 1540.55 Q1283.82 1536.98 1283.82 1529.87 Q1283.82 1522.75 1281.99 1519.2 Q1280.19 1515.64 1276.55 1515.64 M1276.55 1511.93 Q1282.36 1511.93 1285.42 1516.54 Q1288.5 1521.12 1288.5 1529.87 Q1288.5 1538.6 1285.42 1543.21 Q1282.36 1547.79 1276.55 1547.79 Q1270.74 1547.79 1267.66 1543.21 Q1264.61 1538.6 1264.61 1529.87 Q1264.61 1521.12 1267.66 1516.54 Q1270.74 1511.93 1276.55 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M1763.83 1512.56 L1786.05 1512.56 L1786.05 1514.55 L1773.5 1547.12 L1768.62 1547.12 L1780.42 1516.5 L1763.83 1516.5 L1763.83 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M1791.16 1512.56 L1809.52 1512.56 L1809.52 1516.5 L1795.45 1516.5 L1795.45 1524.97 Q1796.46 1524.62 1797.48 1524.46 Q1798.5 1524.27 1799.52 1524.27 Q1805.31 1524.27 1808.69 1527.44 Q1812.07 1530.62 1812.07 1536.03 Q1812.07 1541.61 1808.59 1544.71 Q1805.12 1547.79 1798.8 1547.79 Q1796.63 1547.79 1794.36 1547.42 Q1792.11 1547.05 1789.71 1546.31 L1789.71 1541.61 Q1791.79 1542.74 1794.01 1543.3 Q1796.23 1543.86 1798.71 1543.86 Q1802.71 1543.86 1805.05 1541.75 Q1807.39 1539.64 1807.39 1536.03 Q1807.39 1532.42 1805.05 1530.31 Q1802.71 1528.21 1798.71 1528.21 Q1796.83 1528.21 1794.96 1528.62 Q1793.11 1529.04 1791.16 1529.92 L1791.16 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M2275.45 1543.18 L2283.09 1543.18 L2283.09 1516.82 L2274.78 1518.49 L2274.78 1514.23 L2283.04 1512.56 L2287.72 1512.56 L2287.72 1543.18 L2295.36 1543.18 L2295.36 1547.12 L2275.45 1547.12 L2275.45 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M2310.43 1515.64 Q2306.82 1515.64 2304.99 1519.2 Q2303.18 1522.75 2303.18 1529.87 Q2303.18 1536.98 2304.99 1540.55 Q2306.82 1544.09 2310.43 1544.09 Q2314.06 1544.09 2315.87 1540.55 Q2317.7 1536.98 2317.7 1529.87 Q2317.7 1522.75 2315.87 1519.2 Q2314.06 1515.64 2310.43 1515.64 M2310.43 1511.93 Q2316.24 1511.93 2319.29 1516.54 Q2322.37 1521.12 2322.37 1529.87 Q2322.37 1538.6 2319.29 1543.21 Q2316.24 1547.79 2310.43 1547.79 Q2304.62 1547.79 2301.54 1543.21 Q2298.48 1538.6 2298.48 1529.87 Q2298.48 1521.12 2301.54 1516.54 Q2304.62 1511.93 2310.43 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M2337.44 1515.64 Q2333.83 1515.64 2332 1519.2 Q2330.2 1522.75 2330.2 1529.87 Q2330.2 1536.98 2332 1540.55 Q2333.83 1544.09 2337.44 1544.09 Q2341.08 1544.09 2342.88 1540.55 Q2344.71 1536.98 2344.71 1529.87 Q2344.71 1522.75 2342.88 1519.2 Q2341.08 1515.64 2337.44 1515.64 M2337.44 1511.93 Q2343.25 1511.93 2346.31 1516.54 Q2349.39 1521.12 2349.39 1529.87 Q2349.39 1538.6 2346.31 1543.21 Q2343.25 1547.79 2337.44 1547.79 Q2331.63 1547.79 2328.55 1543.21 Q2325.5 1538.6 2325.5 1529.87 Q2325.5 1521.12 2328.55 1516.54 Q2331.63 1511.93 2337.44 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip582)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  174.862,1447.87 2352.76,1447.87 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip582)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  174.862,1126.42 2352.76,1126.42 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip582)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  174.862,804.96 2352.76,804.96 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip582)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  174.862,483.503 2352.76,483.503 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip582)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  174.862,162.047 2352.76,162.047 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  174.862,1486.45 174.862,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  174.862,1447.87 200.997,1447.87 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  174.862,1126.42 200.997,1126.42 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  174.862,804.96 200.997,804.96 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  174.862,483.503 200.997,483.503 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip580)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  174.862,162.047 200.997,162.047 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip580)\" d=\"M 0 0 M62.9365 1433.67 Q59.3254 1433.67 57.4967 1437.24 Q55.6912 1440.78 55.6912 1447.91 Q55.6912 1455.01 57.4967 1458.58 Q59.3254 1462.12 62.9365 1462.12 Q66.5707 1462.12 68.3763 1458.58 Q70.205 1455.01 70.205 1447.91 Q70.205 1440.78 68.3763 1437.24 Q66.5707 1433.67 62.9365 1433.67 M62.9365 1429.97 Q68.7467 1429.97 71.8022 1434.57 Q74.8809 1439.16 74.8809 1447.91 Q74.8809 1456.63 71.8022 1461.24 Q68.7467 1465.82 62.9365 1465.82 Q57.1264 1465.82 54.0477 1461.24 Q50.9921 1456.63 50.9921 1447.91 Q50.9921 1439.16 54.0477 1434.57 Q57.1264 1429.97 62.9365 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M79.9503 1459.27 L84.8345 1459.27 L84.8345 1465.15 L79.9503 1465.15 L79.9503 1459.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M99.9039 1433.67 Q96.2928 1433.67 94.4641 1437.24 Q92.6586 1440.78 92.6586 1447.91 Q92.6586 1455.01 94.4641 1458.58 Q96.2928 1462.12 99.9039 1462.12 Q103.538 1462.12 105.344 1458.58 Q107.172 1455.01 107.172 1447.91 Q107.172 1440.78 105.344 1437.24 Q103.538 1433.67 99.9039 1433.67 M99.9039 1429.97 Q105.714 1429.97 108.77 1434.57 Q111.848 1439.16 111.848 1447.91 Q111.848 1456.63 108.77 1461.24 Q105.714 1465.82 99.9039 1465.82 Q94.0937 1465.82 91.0151 1461.24 Q87.9595 1456.63 87.9595 1447.91 Q87.9595 1439.16 91.0151 1434.57 Q94.0937 1429.97 99.9039 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M126.918 1433.67 Q123.307 1433.67 121.478 1437.24 Q119.672 1440.78 119.672 1447.91 Q119.672 1455.01 121.478 1458.58 Q123.307 1462.12 126.918 1462.12 Q130.552 1462.12 132.357 1458.58 Q134.186 1455.01 134.186 1447.91 Q134.186 1440.78 132.357 1437.24 Q130.552 1433.67 126.918 1433.67 M126.918 1429.97 Q132.728 1429.97 135.783 1434.57 Q138.862 1439.16 138.862 1447.91 Q138.862 1456.63 135.783 1461.24 Q132.728 1465.82 126.918 1465.82 Q121.107 1465.82 118.029 1461.24 Q114.973 1456.63 114.973 1447.91 Q114.973 1439.16 118.029 1434.57 Q121.107 1429.97 126.918 1429.97 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M65.5291 1112.22 Q61.918 1112.22 60.0893 1115.78 Q58.2838 1119.32 58.2838 1126.45 Q58.2838 1133.56 60.0893 1137.12 Q61.918 1140.66 65.5291 1140.66 Q69.1633 1140.66 70.9689 1137.12 Q72.7976 1133.56 72.7976 1126.45 Q72.7976 1119.32 70.9689 1115.78 Q69.1633 1112.22 65.5291 1112.22 M65.5291 1108.51 Q71.3392 1108.51 74.3948 1113.12 Q77.4735 1117.7 77.4735 1126.45 Q77.4735 1135.18 74.3948 1139.78 Q71.3392 1144.37 65.5291 1144.37 Q59.7189 1144.37 56.6402 1139.78 Q53.5847 1135.18 53.5847 1126.45 Q53.5847 1117.7 56.6402 1113.12 Q59.7189 1108.51 65.5291 1108.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M82.5429 1137.82 L87.4271 1137.82 L87.4271 1143.7 L82.5429 1143.7 L82.5429 1137.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M96.5243 1139.76 L112.844 1139.76 L112.844 1143.7 L90.8993 1143.7 L90.8993 1139.76 Q93.5613 1137.01 98.1447 1132.38 Q102.751 1127.72 103.932 1126.38 Q106.177 1123.86 107.057 1122.12 Q107.959 1120.36 107.959 1118.67 Q107.959 1115.92 106.015 1114.18 Q104.094 1112.45 100.992 1112.45 Q98.7928 1112.45 96.3391 1113.21 Q93.9086 1113.97 91.1308 1115.53 L91.1308 1110.8 Q93.9549 1109.67 96.4085 1109.09 Q98.8622 1108.51 100.899 1108.51 Q106.27 1108.51 109.464 1111.2 Q112.658 1113.88 112.658 1118.37 Q112.658 1120.5 111.848 1122.42 Q111.061 1124.32 108.955 1126.91 Q108.376 1127.59 105.274 1130.8 Q102.172 1134 96.5243 1139.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M117.959 1109.14 L136.316 1109.14 L136.316 1113.07 L122.242 1113.07 L122.242 1121.54 Q123.26 1121.2 124.279 1121.03 Q125.297 1120.85 126.316 1120.85 Q132.103 1120.85 135.482 1124.02 Q138.862 1127.19 138.862 1132.61 Q138.862 1138.19 135.39 1141.29 Q131.918 1144.37 125.598 1144.37 Q123.422 1144.37 121.154 1144 Q118.908 1143.63 116.501 1142.89 L116.501 1138.19 Q118.584 1139.32 120.807 1139.88 Q123.029 1140.43 125.506 1140.43 Q129.51 1140.43 131.848 1138.33 Q134.186 1136.22 134.186 1132.61 Q134.186 1129 131.848 1126.89 Q129.51 1124.78 125.506 1124.78 Q123.631 1124.78 121.756 1125.2 Q119.904 1125.62 117.959 1126.5 L117.959 1109.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M63.9319 790.759 Q60.3208 790.759 58.4921 794.323 Q56.6865 797.865 56.6865 804.995 Q56.6865 812.101 58.4921 815.666 Q60.3208 819.208 63.9319 819.208 Q67.5661 819.208 69.3717 815.666 Q71.2004 812.101 71.2004 804.995 Q71.2004 797.865 69.3717 794.323 Q67.5661 790.759 63.9319 790.759 M63.9319 787.055 Q69.742 787.055 72.7976 791.661 Q75.8763 796.245 75.8763 804.995 Q75.8763 813.722 72.7976 818.328 Q69.742 822.911 63.9319 822.911 Q58.1217 822.911 55.043 818.328 Q51.9875 813.722 51.9875 804.995 Q51.9875 796.245 55.043 791.661 Q58.1217 787.055 63.9319 787.055 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M80.9457 816.36 L85.8299 816.36 L85.8299 822.24 L80.9457 822.24 L80.9457 816.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M90.9456 787.68 L109.302 787.68 L109.302 791.615 L95.228 791.615 L95.228 800.087 Q96.2465 799.74 97.265 799.578 Q98.2835 799.393 99.3021 799.393 Q105.089 799.393 108.469 802.564 Q111.848 805.735 111.848 811.152 Q111.848 816.731 108.376 819.833 Q104.904 822.911 98.5845 822.911 Q96.4085 822.911 94.14 822.541 Q91.8947 822.171 89.4873 821.43 L89.4873 816.731 Q91.5706 817.865 93.7928 818.421 Q96.015 818.976 98.4919 818.976 Q102.496 818.976 104.834 816.87 Q107.172 814.763 107.172 811.152 Q107.172 807.541 104.834 805.435 Q102.496 803.328 98.4919 803.328 Q96.6169 803.328 94.7419 803.745 Q92.89 804.161 90.9456 805.041 L90.9456 787.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M126.918 790.759 Q123.307 790.759 121.478 794.323 Q119.672 797.865 119.672 804.995 Q119.672 812.101 121.478 815.666 Q123.307 819.208 126.918 819.208 Q130.552 819.208 132.357 815.666 Q134.186 812.101 134.186 804.995 Q134.186 797.865 132.357 794.323 Q130.552 790.759 126.918 790.759 M126.918 787.055 Q132.728 787.055 135.783 791.661 Q138.862 796.245 138.862 804.995 Q138.862 813.722 135.783 818.328 Q132.728 822.911 126.918 822.911 Q121.107 822.911 118.029 818.328 Q114.973 813.722 114.973 804.995 Q114.973 796.245 118.029 791.661 Q121.107 787.055 126.918 787.055 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M64.8346 469.302 Q61.2236 469.302 59.3949 472.867 Q57.5893 476.409 57.5893 483.538 Q57.5893 490.645 59.3949 494.209 Q61.2236 497.751 64.8346 497.751 Q68.4689 497.751 70.2744 494.209 Q72.1031 490.645 72.1031 483.538 Q72.1031 476.409 70.2744 472.867 Q68.4689 469.302 64.8346 469.302 M64.8346 465.598 Q70.6448 465.598 73.7003 470.205 Q76.779 474.788 76.779 483.538 Q76.779 492.265 73.7003 496.871 Q70.6448 501.455 64.8346 501.455 Q59.0245 501.455 55.9458 496.871 Q52.8903 492.265 52.8903 483.538 Q52.8903 474.788 55.9458 470.205 Q59.0245 465.598 64.8346 465.598 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M81.8484 494.904 L86.7327 494.904 L86.7327 500.783 L81.8484 500.783 L81.8484 494.904 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M90.6215 466.223 L112.844 466.223 L112.844 468.214 L100.297 500.783 L95.4132 500.783 L107.219 470.159 L90.6215 470.159 L90.6215 466.223 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M117.959 466.223 L136.316 466.223 L136.316 470.159 L122.242 470.159 L122.242 478.631 Q123.26 478.284 124.279 478.122 Q125.297 477.936 126.316 477.936 Q132.103 477.936 135.482 481.108 Q138.862 484.279 138.862 489.696 Q138.862 495.274 135.39 498.376 Q131.918 501.455 125.598 501.455 Q123.422 501.455 121.154 501.084 Q118.908 500.714 116.501 499.973 L116.501 495.274 Q118.584 496.408 120.807 496.964 Q123.029 497.52 125.506 497.52 Q129.51 497.52 131.848 495.413 Q134.186 493.307 134.186 489.696 Q134.186 486.084 131.848 483.978 Q129.51 481.872 125.506 481.872 Q123.631 481.872 121.756 482.288 Q119.904 482.705 117.959 483.584 L117.959 466.223 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M54.9736 175.392 L62.6124 175.392 L62.6124 149.026 L54.3023 150.693 L54.3023 146.434 L62.5661 144.767 L67.242 144.767 L67.242 175.392 L74.8809 175.392 L74.8809 179.327 L54.9736 179.327 L54.9736 175.392 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M79.9503 173.447 L84.8345 173.447 L84.8345 179.327 L79.9503 179.327 L79.9503 173.447 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M99.9039 147.846 Q96.2928 147.846 94.4641 151.41 Q92.6586 154.952 92.6586 162.082 Q92.6586 169.188 94.4641 172.753 Q96.2928 176.295 99.9039 176.295 Q103.538 176.295 105.344 172.753 Q107.172 169.188 107.172 162.082 Q107.172 154.952 105.344 151.41 Q103.538 147.846 99.9039 147.846 M99.9039 144.142 Q105.714 144.142 108.77 148.748 Q111.848 153.332 111.848 162.082 Q111.848 170.808 108.77 175.415 Q105.714 179.998 99.9039 179.998 Q94.0937 179.998 91.0151 175.415 Q87.9595 170.808 87.9595 162.082 Q87.9595 153.332 91.0151 148.748 Q94.0937 144.142 99.9039 144.142 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M126.918 147.846 Q123.307 147.846 121.478 151.41 Q119.672 154.952 119.672 162.082 Q119.672 169.188 121.478 172.753 Q123.307 176.295 126.918 176.295 Q130.552 176.295 132.357 172.753 Q134.186 169.188 134.186 162.082 Q134.186 154.952 132.357 151.41 Q130.552 147.846 126.918 147.846 M126.918 144.142 Q132.728 144.142 135.783 148.748 Q138.862 153.332 138.862 162.082 Q138.862 170.808 135.783 175.415 Q132.728 179.998 126.918 179.998 Q121.107 179.998 118.029 175.415 Q114.973 170.808 114.973 162.082 Q114.973 153.332 118.029 148.748 Q121.107 144.142 126.918 144.142 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip580)\" d=\"M 0 0 M1246.61 27.2059 L1282.02 27.2059 L1282.02 34.0114 L1253.99 66.6212 L1282.02 66.6212 L1282.02 72.576 L1245.6 72.576 L1245.6 65.7705 L1273.63 33.1607 L1246.61 33.1607 L1246.61 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip582)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  236.501,1447.87 257.466,1447.87 278.431,1447.87 299.397,1447.87 320.362,1447.87 341.328,1447.87 362.293,1447.87 383.259,1447.87 404.224,1447.87 425.19,1447.87 \n",
       "  446.155,1447.87 467.121,1447.87 488.086,1447.87 509.052,1447.87 530.017,1447.87 550.983,1447.87 571.948,1447.87 592.914,1447.87 613.879,1447.87 634.845,1447.87 \n",
       "  655.81,1447.87 676.776,1447.87 697.741,1447.87 718.707,1447.87 739.672,1447.87 760.637,1447.87 781.603,1447.87 802.568,1447.87 823.534,1447.87 844.499,1447.87 \n",
       "  865.465,1447.87 886.43,1447.87 907.396,1447.87 928.361,1447.87 949.327,1447.87 970.292,1447.87 991.258,1447.87 1012.22,1447.87 1033.19,1447.87 1054.15,1447.87 \n",
       "  1075.12,1447.87 1096.09,1447.87 1117.05,1447.87 1138.02,1447.87 1158.98,1447.87 1179.95,1447.87 1200.91,1447.87 1221.88,1447.87 1242.84,1447.87 1263.81,1447.87 \n",
       "  1284.77,1447.87 1305.74,1447.87 1326.71,1447.87 1347.67,1447.87 1368.64,1447.87 1389.6,1447.87 1410.57,1447.87 1431.53,1447.87 1452.5,1447.87 1473.46,1447.87 \n",
       "  1494.43,1447.87 1515.39,1447.87 1536.36,1447.87 1557.33,1447.87 1578.29,1447.87 1599.26,1447.87 1620.22,1447.87 1641.19,1447.87 1662.15,1447.87 1683.12,1447.87 \n",
       "  1704.08,1447.87 1725.05,1447.87 1746.01,1447.87 1766.98,1447.87 1787.95,1447.87 1808.91,1447.87 1829.88,1447.87 1850.84,1447.87 1871.81,1447.87 1892.77,1447.87 \n",
       "  1913.74,1447.87 1934.7,1447.87 1955.67,1447.87 1976.64,1447.87 1997.6,1447.87 2018.57,1447.87 2039.53,1447.87 2060.5,1447.87 2081.46,1447.87 2102.43,1447.87 \n",
       "  2123.39,1447.87 2144.36,1447.87 2165.32,1447.87 2186.29,1447.87 2207.26,1447.87 2228.22,1447.87 2249.19,1447.87 2270.15,1447.87 2291.12,1447.87 \n",
       "  \"/>\n",
       "</svg>\n"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "plotDisplacementTroughTimeSteps(name,30)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 764,
   "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=\"clip620\">\n",
       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip620)\" 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=\"clip621\">\n",
       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip620)\" d=\"\n",
       "M216.251 1486.45 L2352.76 1486.45 L2352.76 123.472 L216.251 123.472  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip622\">\n",
       "    <rect x=\"216\" y=\"123\" width=\"2138\" height=\"1364\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<polyline clip-path=\"url(#clip622)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  271.314,1486.45 271.314,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip622)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  811.682,1486.45 811.682,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip622)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1352.05,1486.45 1352.05,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip622)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1892.42,1486.45 1892.42,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip620)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  216.251,1486.45 2352.76,1486.45 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip620)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  271.314,1486.45 271.314,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip620)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  811.682,1486.45 811.682,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip620)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1352.05,1486.45 1352.05,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip620)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1892.42,1486.45 1892.42,1470.09 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip620)\" d=\"M 0 0 M271.314 1515.64 Q267.703 1515.64 265.874 1519.2 Q264.069 1522.75 264.069 1529.87 Q264.069 1536.98 265.874 1540.55 Q267.703 1544.09 271.314 1544.09 Q274.948 1544.09 276.754 1540.55 Q278.583 1536.98 278.583 1529.87 Q278.583 1522.75 276.754 1519.2 Q274.948 1515.64 271.314 1515.64 M271.314 1511.93 Q277.124 1511.93 280.18 1516.54 Q283.259 1521.12 283.259 1529.87 Q283.259 1538.6 280.18 1543.21 Q277.124 1547.79 271.314 1547.79 Q265.504 1547.79 262.425 1543.21 Q259.37 1538.6 259.37 1529.87 Q259.37 1521.12 262.425 1516.54 Q265.504 1511.93 271.314 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M775.05 1543.18 L782.689 1543.18 L782.689 1516.82 L774.379 1518.49 L774.379 1514.23 L782.642 1512.56 L787.318 1512.56 L787.318 1543.18 L794.957 1543.18 L794.957 1547.12 L775.05 1547.12 L775.05 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M810.027 1515.64 Q806.416 1515.64 804.587 1519.2 Q802.781 1522.75 802.781 1529.87 Q802.781 1536.98 804.587 1540.55 Q806.416 1544.09 810.027 1544.09 Q813.661 1544.09 815.466 1540.55 Q817.295 1536.98 817.295 1529.87 Q817.295 1522.75 815.466 1519.2 Q813.661 1515.64 810.027 1515.64 M810.027 1511.93 Q815.837 1511.93 818.892 1516.54 Q821.971 1521.12 821.971 1529.87 Q821.971 1538.6 818.892 1543.21 Q815.837 1547.79 810.027 1547.79 Q804.216 1547.79 801.138 1543.21 Q798.082 1538.6 798.082 1529.87 Q798.082 1521.12 801.138 1516.54 Q804.216 1511.93 810.027 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M837.04 1515.64 Q833.429 1515.64 831.601 1519.2 Q829.795 1522.75 829.795 1529.87 Q829.795 1536.98 831.601 1540.55 Q833.429 1544.09 837.04 1544.09 Q840.675 1544.09 842.48 1540.55 Q844.309 1536.98 844.309 1529.87 Q844.309 1522.75 842.48 1519.2 Q840.675 1515.64 837.04 1515.64 M837.04 1511.93 Q842.851 1511.93 845.906 1516.54 Q848.985 1521.12 848.985 1529.87 Q848.985 1538.6 845.906 1543.21 Q842.851 1547.79 837.04 1547.79 Q831.23 1547.79 828.152 1543.21 Q825.096 1538.6 825.096 1529.87 Q825.096 1521.12 828.152 1516.54 Q831.23 1511.93 837.04 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1319.69 1543.18 L1336.01 1543.18 L1336.01 1547.12 L1314.06 1547.12 L1314.06 1543.18 Q1316.73 1540.43 1321.31 1535.8 Q1325.92 1531.15 1327.1 1529.81 Q1329.34 1527.28 1330.22 1525.55 Q1331.12 1523.79 1331.12 1522.1 Q1331.12 1519.34 1329.18 1517.61 Q1327.26 1515.87 1324.16 1515.87 Q1321.96 1515.87 1319.5 1516.63 Q1317.07 1517.4 1314.29 1518.95 L1314.29 1514.23 Q1317.12 1513.09 1319.57 1512.51 Q1322.03 1511.93 1324.06 1511.93 Q1329.43 1511.93 1332.63 1514.62 Q1335.82 1517.31 1335.82 1521.8 Q1335.82 1523.93 1335.01 1525.85 Q1334.23 1527.74 1332.12 1530.34 Q1331.54 1531.01 1328.44 1534.23 Q1325.34 1537.42 1319.69 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1351.08 1515.64 Q1347.47 1515.64 1345.64 1519.2 Q1343.83 1522.75 1343.83 1529.87 Q1343.83 1536.98 1345.64 1540.55 Q1347.47 1544.09 1351.08 1544.09 Q1354.71 1544.09 1356.52 1540.55 Q1358.35 1536.98 1358.35 1529.87 Q1358.35 1522.75 1356.52 1519.2 Q1354.71 1515.64 1351.08 1515.64 M1351.08 1511.93 Q1356.89 1511.93 1359.94 1516.54 Q1363.02 1521.12 1363.02 1529.87 Q1363.02 1538.6 1359.94 1543.21 Q1356.89 1547.79 1351.08 1547.79 Q1345.27 1547.79 1342.19 1543.21 Q1339.13 1538.6 1339.13 1529.87 Q1339.13 1521.12 1342.19 1516.54 Q1345.27 1511.93 1351.08 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1378.09 1515.64 Q1374.48 1515.64 1372.65 1519.2 Q1370.85 1522.75 1370.85 1529.87 Q1370.85 1536.98 1372.65 1540.55 Q1374.48 1544.09 1378.09 1544.09 Q1381.73 1544.09 1383.53 1540.55 Q1385.36 1536.98 1385.36 1529.87 Q1385.36 1522.75 1383.53 1519.2 Q1381.73 1515.64 1378.09 1515.64 M1378.09 1511.93 Q1383.9 1511.93 1386.96 1516.54 Q1390.04 1521.12 1390.04 1529.87 Q1390.04 1538.6 1386.96 1543.21 Q1383.9 1547.79 1378.09 1547.79 Q1372.28 1547.79 1369.2 1543.21 Q1366.15 1538.6 1366.15 1529.87 Q1366.15 1521.12 1369.2 1516.54 Q1372.28 1511.93 1378.09 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1869.65 1528.49 Q1873.01 1529.2 1874.88 1531.47 Q1876.78 1533.74 1876.78 1537.07 Q1876.78 1542.19 1873.26 1544.99 Q1869.74 1547.79 1863.26 1547.79 Q1861.09 1547.79 1858.77 1547.35 Q1856.48 1546.93 1854.03 1546.08 L1854.03 1541.56 Q1855.97 1542.7 1858.29 1543.28 Q1860.6 1543.86 1863.12 1543.86 Q1867.52 1543.86 1869.81 1542.12 Q1872.13 1540.38 1872.13 1537.07 Q1872.13 1534.02 1869.97 1532.31 Q1867.85 1530.57 1864.03 1530.57 L1860 1530.57 L1860 1526.73 L1864.21 1526.73 Q1867.66 1526.73 1869.49 1525.36 Q1871.32 1523.97 1871.32 1521.38 Q1871.32 1518.72 1869.42 1517.31 Q1867.54 1515.87 1864.03 1515.87 Q1862.1 1515.87 1859.91 1516.29 Q1857.71 1516.7 1855.07 1517.58 L1855.07 1513.42 Q1857.73 1512.68 1860.04 1512.31 Q1862.38 1511.93 1864.44 1511.93 Q1869.77 1511.93 1872.87 1514.37 Q1875.97 1516.77 1875.97 1520.89 Q1875.97 1523.76 1874.33 1525.75 Q1872.68 1527.72 1869.65 1528.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1891.85 1515.64 Q1888.24 1515.64 1886.41 1519.2 Q1884.6 1522.75 1884.6 1529.87 Q1884.6 1536.98 1886.41 1540.55 Q1888.24 1544.09 1891.85 1544.09 Q1895.48 1544.09 1897.29 1540.55 Q1899.12 1536.98 1899.12 1529.87 Q1899.12 1522.75 1897.29 1519.2 Q1895.48 1515.64 1891.85 1515.64 M1891.85 1511.93 Q1897.66 1511.93 1900.72 1516.54 Q1903.79 1521.12 1903.79 1529.87 Q1903.79 1538.6 1900.72 1543.21 Q1897.66 1547.79 1891.85 1547.79 Q1886.04 1547.79 1882.96 1543.21 Q1879.91 1538.6 1879.91 1529.87 Q1879.91 1521.12 1882.96 1516.54 Q1886.04 1511.93 1891.85 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1918.86 1515.64 Q1915.25 1515.64 1913.42 1519.2 Q1911.62 1522.75 1911.62 1529.87 Q1911.62 1536.98 1913.42 1540.55 Q1915.25 1544.09 1918.86 1544.09 Q1922.5 1544.09 1924.3 1540.55 Q1926.13 1536.98 1926.13 1529.87 Q1926.13 1522.75 1924.3 1519.2 Q1922.5 1515.64 1918.86 1515.64 M1918.86 1511.93 Q1924.67 1511.93 1927.73 1516.54 Q1930.81 1521.12 1930.81 1529.87 Q1930.81 1538.6 1927.73 1543.21 Q1924.67 1547.79 1918.86 1547.79 Q1913.05 1547.79 1909.97 1543.21 Q1906.92 1538.6 1906.92 1529.87 Q1906.92 1521.12 1909.97 1516.54 Q1913.05 1511.93 1918.86 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip622)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  216.251,1446.8 2352.76,1446.8 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip622)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  216.251,1078.57 2352.76,1078.57 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip622)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  216.251,710.343 2352.76,710.343 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip622)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  216.251,342.112 2352.76,342.112 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip620)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  216.251,1486.45 216.251,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip620)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  216.251,1446.8 241.889,1446.8 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip620)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  216.251,1078.57 241.889,1078.57 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip620)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  216.251,710.343 241.889,710.343 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip620)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  216.251,342.112 241.889,342.112 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip620)\" d=\"M 0 0 M168.306 1432.6 Q164.695 1432.6 162.867 1436.17 Q161.061 1439.71 161.061 1446.84 Q161.061 1453.95 162.867 1457.51 Q164.695 1461.05 168.306 1461.05 Q171.941 1461.05 173.746 1457.51 Q175.575 1453.95 175.575 1446.84 Q175.575 1439.71 173.746 1436.17 Q171.941 1432.6 168.306 1432.6 M168.306 1428.9 Q174.116 1428.9 177.172 1433.51 Q180.251 1438.09 180.251 1446.84 Q180.251 1455.57 177.172 1460.17 Q174.116 1464.76 168.306 1464.76 Q162.496 1464.76 159.417 1460.17 Q156.362 1455.57 156.362 1446.84 Q156.362 1438.09 159.417 1433.51 Q162.496 1428.9 168.306 1428.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M53.8393 1098.37 L61.4782 1098.37 L61.4782 1072 L53.168 1073.67 L53.168 1069.41 L61.4319 1067.74 L66.1078 1067.74 L66.1078 1098.37 L73.7466 1098.37 L73.7466 1102.3 L53.8393 1102.3 L53.8393 1098.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M106.987 1076.84 L96.4085 1087.46 L106.987 1098.04 L104.233 1100.84 L93.6076 1090.22 L82.9827 1100.84 L80.2512 1098.04 L90.8067 1087.46 L80.2512 1076.84 L82.9827 1074.04 L93.6076 1084.66 L104.233 1074.04 L106.987 1076.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M112.867 1098.37 L120.506 1098.37 L120.506 1072 L112.196 1073.67 L112.196 1069.41 L120.459 1067.74 L125.135 1067.74 L125.135 1098.37 L132.774 1098.37 L132.774 1102.3 L112.867 1102.3 L112.867 1098.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M147.843 1070.82 Q144.232 1070.82 142.404 1074.38 Q140.598 1077.93 140.598 1085.06 Q140.598 1092.16 142.404 1095.73 Q144.232 1099.27 147.843 1099.27 Q151.478 1099.27 153.283 1095.73 Q155.112 1092.16 155.112 1085.06 Q155.112 1077.93 153.283 1074.38 Q151.478 1070.82 147.843 1070.82 M147.843 1067.12 Q153.654 1067.12 156.709 1071.72 Q159.788 1076.31 159.788 1085.06 Q159.788 1093.78 156.709 1098.39 Q153.654 1102.97 147.843 1102.97 Q142.033 1102.97 138.955 1098.39 Q135.899 1093.78 135.899 1085.06 Q135.899 1076.31 138.955 1071.72 Q142.033 1067.12 147.843 1067.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M172.464 1050.12 L162.872 1065.11 L172.464 1065.11 L172.464 1050.12 M171.467 1046.81 L176.245 1046.81 L176.245 1065.11 L180.251 1065.11 L180.251 1068.27 L176.245 1068.27 L176.245 1074.89 L172.464 1074.89 L172.464 1068.27 L159.788 1068.27 L159.788 1064.6 L171.467 1046.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M57.4273 730.135 L73.7466 730.135 L73.7466 734.07 L51.8023 734.07 L51.8023 730.135 Q54.4643 727.381 59.0476 722.751 Q63.6541 718.098 64.8346 716.756 Q67.08 714.233 67.9596 712.496 Q68.8624 710.737 68.8624 709.047 Q68.8624 706.293 66.918 704.557 Q64.9967 702.821 61.8948 702.821 Q59.6958 702.821 57.2421 703.584 Q54.8115 704.348 52.0338 705.899 L52.0338 701.177 Q54.8578 700.043 57.3115 699.464 Q59.7652 698.885 61.8023 698.885 Q67.1726 698.885 70.367 701.571 Q73.5614 704.256 73.5614 708.746 Q73.5614 710.876 72.7513 712.797 Q71.9642 714.695 69.8578 717.288 Q69.2791 717.959 66.1772 721.177 Q63.0754 724.371 57.4273 730.135 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M106.987 708.608 L96.4085 719.233 L106.987 729.811 L104.233 732.612 L93.6076 721.987 L82.9827 732.612 L80.2512 729.811 L90.8067 719.233 L80.2512 708.608 L82.9827 705.807 L93.6076 716.432 L104.233 705.807 L106.987 708.608 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M112.867 730.135 L120.506 730.135 L120.506 703.77 L112.196 705.436 L112.196 701.177 L120.459 699.51 L125.135 699.51 L125.135 730.135 L132.774 730.135 L132.774 734.07 L112.867 734.07 L112.867 730.135 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M147.843 702.589 Q144.232 702.589 142.404 706.154 Q140.598 709.696 140.598 716.825 Q140.598 723.932 142.404 727.496 Q144.232 731.038 147.843 731.038 Q151.478 731.038 153.283 727.496 Q155.112 723.932 155.112 716.825 Q155.112 709.696 153.283 706.154 Q151.478 702.589 147.843 702.589 M147.843 698.885 Q153.654 698.885 156.709 703.492 Q159.788 708.075 159.788 716.825 Q159.788 725.552 156.709 730.158 Q153.654 734.742 147.843 734.742 Q142.033 734.742 138.955 730.158 Q135.899 725.552 135.899 716.825 Q135.899 708.075 138.955 703.492 Q142.033 698.885 147.843 698.885 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M172.464 681.89 L162.872 696.88 L172.464 696.88 L172.464 681.89 M171.467 678.58 L176.245 678.58 L176.245 696.88 L180.251 696.88 L180.251 700.04 L176.245 700.04 L176.245 706.66 L172.464 706.66 L172.464 700.04 L159.788 700.04 L159.788 696.372 L171.467 678.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M66.617 347.206 Q69.9735 347.923 71.8485 350.192 Q73.7466 352.46 73.7466 355.794 Q73.7466 360.909 70.2281 363.71 Q66.7096 366.511 60.2282 366.511 Q58.0523 366.511 55.7375 366.071 Q53.4458 365.655 50.9921 364.798 L50.9921 360.284 Q52.9366 361.419 55.2514 361.997 Q57.5662 362.576 60.0893 362.576 Q64.4874 362.576 66.7791 360.84 Q69.0939 359.104 69.0939 355.794 Q69.0939 352.738 66.9411 351.025 Q64.8115 349.289 60.9921 349.289 L56.9643 349.289 L56.9643 345.446 L61.1773 345.446 Q64.6263 345.446 66.455 344.081 Q68.2837 342.692 68.2837 340.099 Q68.2837 337.437 66.3856 336.025 Q64.5106 334.59 60.9921 334.59 Q59.0708 334.59 56.8717 335.007 Q54.6727 335.423 52.0338 336.303 L52.0338 332.136 Q54.6958 331.396 57.0106 331.025 Q59.3486 330.655 61.4087 330.655 Q66.7328 330.655 69.8346 333.085 Q72.9365 335.493 72.9365 339.613 Q72.9365 342.483 71.2929 344.474 Q69.6494 346.442 66.617 347.206 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M106.987 340.377 L96.4085 351.002 L106.987 361.581 L104.233 364.382 L93.6076 353.757 L82.9827 364.382 L80.2512 361.581 L90.8067 351.002 L80.2512 340.377 L82.9827 337.576 L93.6076 348.201 L104.233 337.576 L106.987 340.377 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M112.867 361.905 L120.506 361.905 L120.506 335.539 L112.196 337.206 L112.196 332.946 L120.459 331.28 L125.135 331.28 L125.135 361.905 L132.774 361.905 L132.774 365.84 L112.867 365.84 L112.867 361.905 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M147.843 334.359 Q144.232 334.359 142.404 337.923 Q140.598 341.465 140.598 348.595 Q140.598 355.701 142.404 359.266 Q144.232 362.807 147.843 362.807 Q151.478 362.807 153.283 359.266 Q155.112 355.701 155.112 348.595 Q155.112 341.465 153.283 337.923 Q151.478 334.359 147.843 334.359 M147.843 330.655 Q153.654 330.655 156.709 335.261 Q159.788 339.845 159.788 348.595 Q159.788 357.321 156.709 361.928 Q153.654 366.511 147.843 366.511 Q142.033 366.511 138.955 361.928 Q135.899 357.321 135.899 348.595 Q135.899 339.845 138.955 335.261 Q142.033 330.655 147.843 330.655 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M172.464 313.66 L162.872 328.649 L172.464 328.649 L172.464 313.66 M171.467 310.349 L176.245 310.349 L176.245 328.649 L180.251 328.649 L180.251 331.809 L176.245 331.809 L176.245 338.429 L172.464 338.429 L172.464 331.809 L159.788 331.809 L159.788 328.142 L171.467 310.349 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1205.51 28.5427 L1205.51 35.5912 Q1202.35 33.9709 1198.95 33.1607 Q1195.55 32.3505 1191.9 32.3505 Q1186.35 32.3505 1183.55 34.0519 Q1180.8 35.7533 1180.8 39.156 Q1180.8 41.7486 1182.79 43.2475 Q1184.77 44.7058 1190.77 46.0426 L1193.32 46.6097 Q1201.26 48.3111 1204.58 51.4303 Q1207.94 54.509 1207.94 60.0587 Q1207.94 66.3781 1202.92 70.0644 Q1197.94 73.7508 1189.19 73.7508 Q1185.54 73.7508 1181.57 73.0216 Q1177.64 72.3329 1173.27 70.9151 L1173.27 63.2184 Q1177.4 65.3654 1181.41 66.4591 Q1185.42 67.5124 1189.35 67.5124 Q1194.61 67.5124 1197.45 65.73 Q1200.29 63.9071 1200.29 60.6258 Q1200.29 57.5877 1198.22 55.9673 Q1196.19 54.3469 1189.27 52.8481 L1186.67 52.2405 Q1179.75 50.7821 1176.67 47.7845 Q1173.59 44.7463 1173.59 39.4801 Q1173.59 33.0797 1178.13 29.5959 Q1182.66 26.1121 1191.01 26.1121 Q1195.14 26.1121 1198.79 26.7198 Q1202.43 27.3274 1205.51 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1223.13 14.324 L1223.13 27.2059 L1238.49 27.2059 L1238.49 32.9987 L1223.13 32.9987 L1223.13 57.6282 Q1223.13 63.1779 1224.63 64.7578 Q1226.17 66.3376 1230.83 66.3376 L1238.49 66.3376 L1238.49 72.576 L1230.83 72.576 Q1222.2 72.576 1218.92 69.3758 Q1215.64 66.1351 1215.64 57.6282 L1215.64 32.9987 L1210.17 32.9987 L1210.17 27.2059 L1215.64 27.2059 L1215.64 14.324 L1223.13 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1272.59 34.1734 Q1271.34 33.4443 1269.84 33.1202 Q1268.38 32.7556 1266.6 32.7556 Q1260.28 32.7556 1256.88 36.8875 Q1253.51 40.9789 1253.51 48.6757 L1253.51 72.576 L1246.02 72.576 L1246.02 27.2059 L1253.51 27.2059 L1253.51 34.2544 Q1255.86 30.1225 1259.63 28.1376 Q1263.4 26.1121 1268.79 26.1121 Q1269.56 26.1121 1270.49 26.2337 Q1271.42 26.3147 1272.55 26.5172 L1272.59 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1317.4 48.0275 L1317.4 51.6733 L1283.13 51.6733 Q1283.61 59.3701 1287.74 63.421 Q1291.92 67.4314 1299.33 67.4314 Q1303.62 67.4314 1307.63 66.3781 Q1311.68 65.3249 1315.65 63.2184 L1315.65 70.267 Q1311.64 71.9684 1307.43 72.8596 Q1303.22 73.7508 1298.88 73.7508 Q1288.03 73.7508 1281.67 67.4314 Q1275.35 61.1119 1275.35 50.3365 Q1275.35 39.1965 1281.34 32.6746 Q1287.38 26.1121 1297.59 26.1121 Q1306.74 26.1121 1312.05 32.0264 Q1317.4 37.9003 1317.4 48.0275 M1309.94 45.84 Q1309.86 39.7232 1306.5 36.0774 Q1303.18 32.4315 1297.67 32.4315 Q1291.43 32.4315 1287.66 35.9558 Q1283.94 39.4801 1283.37 45.8805 L1309.94 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1354.14 28.5427 L1354.14 35.5912 Q1350.98 33.9709 1347.58 33.1607 Q1344.17 32.3505 1340.53 32.3505 Q1334.98 32.3505 1332.18 34.0519 Q1329.43 35.7533 1329.43 39.156 Q1329.43 41.7486 1331.41 43.2475 Q1333.4 44.7058 1339.39 46.0426 L1341.95 46.6097 Q1349.88 48.3111 1353.21 51.4303 Q1356.57 54.509 1356.57 60.0587 Q1356.57 66.3781 1351.55 70.0644 Q1346.56 73.7508 1337.81 73.7508 Q1334.17 73.7508 1330.2 73.0216 Q1326.27 72.3329 1321.89 70.9151 L1321.89 63.2184 Q1326.03 65.3654 1330.04 66.4591 Q1334.05 67.5124 1337.98 67.5124 Q1343.24 67.5124 1346.08 65.73 Q1348.91 63.9071 1348.91 60.6258 Q1348.91 57.5877 1346.85 55.9673 Q1344.82 54.3469 1337.89 52.8481 L1335.3 52.2405 Q1328.37 50.7821 1325.3 47.7845 Q1322.22 44.7463 1322.22 39.4801 Q1322.22 33.0797 1326.75 29.5959 Q1331.29 26.1121 1339.64 26.1121 Q1343.77 26.1121 1347.41 26.7198 Q1351.06 27.3274 1354.14 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip620)\" d=\"M 0 0 M1393.31 28.5427 L1393.31 35.5912 Q1390.15 33.9709 1386.75 33.1607 Q1383.35 32.3505 1379.7 32.3505 Q1374.15 32.3505 1371.35 34.0519 Q1368.6 35.7533 1368.6 39.156 Q1368.6 41.7486 1370.59 43.2475 Q1372.57 44.7058 1378.57 46.0426 L1381.12 46.6097 Q1389.06 48.3111 1392.38 51.4303 Q1395.74 54.509 1395.74 60.0587 Q1395.74 66.3781 1390.72 70.0644 Q1385.74 73.7508 1376.99 73.7508 Q1373.34 73.7508 1369.37 73.0216 Q1365.44 72.3329 1361.07 70.9151 L1361.07 63.2184 Q1365.2 65.3654 1369.21 66.4591 Q1373.22 67.5124 1377.15 67.5124 Q1382.41 67.5124 1385.25 65.73 Q1388.08 63.9071 1388.08 60.6258 Q1388.08 57.5877 1386.02 55.9673 Q1383.99 54.3469 1377.07 52.8481 L1374.47 52.2405 Q1367.55 50.7821 1364.47 47.7845 Q1361.39 44.7463 1361.39 39.4801 Q1361.39 33.0797 1365.93 29.5959 Q1370.46 26.1121 1378.81 26.1121 Q1382.94 26.1121 1386.59 26.7198 Q1390.23 27.3274 1393.31 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip622)\" cx=\"276.718\" cy=\"1446.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(#clip622)\" cx=\"282.121\" cy=\"1446.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(#clip622)\" cx=\"287.525\" cy=\"1446.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(#clip622)\" cx=\"292.929\" cy=\"1446.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(#clip622)\" cx=\"298.333\" cy=\"1446.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(#clip622)\" cx=\"303.736\" cy=\"1446.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(#clip622)\" cx=\"309.14\" cy=\"1446.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(#clip622)\" cx=\"314.544\" cy=\"1446.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(#clip622)\" cx=\"319.947\" cy=\"1446.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(#clip622)\" cx=\"325.351\" cy=\"1446.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(#clip622)\" cx=\"330.755\" cy=\"1446.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(#clip622)\" cx=\"336.158\" cy=\"1446.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(#clip622)\" cx=\"341.562\" cy=\"1446.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(#clip622)\" cx=\"346.966\" cy=\"1446.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(#clip622)\" cx=\"352.369\" cy=\"1446.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(#clip622)\" cx=\"357.773\" cy=\"1446.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(#clip622)\" cx=\"363.177\" cy=\"1446.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(#clip622)\" cx=\"368.58\" cy=\"1446.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(#clip622)\" cx=\"373.984\" cy=\"1446.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(#clip622)\" cx=\"379.388\" cy=\"1446.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(#clip622)\" cx=\"384.791\" cy=\"1446.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(#clip622)\" cx=\"390.195\" cy=\"1446.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(#clip622)\" cx=\"395.599\" cy=\"1446.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(#clip622)\" cx=\"401.002\" cy=\"1446.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(#clip622)\" cx=\"406.406\" cy=\"1446.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(#clip622)\" cx=\"411.81\" cy=\"1446.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(#clip622)\" cx=\"417.213\" cy=\"1446.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(#clip622)\" cx=\"422.617\" cy=\"1446.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(#clip622)\" cx=\"428.021\" cy=\"1446.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(#clip622)\" cx=\"433.424\" cy=\"1446.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(#clip622)\" cx=\"438.828\" cy=\"1446.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(#clip622)\" cx=\"444.232\" cy=\"165.385\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"449.635\" cy=\"164.651\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"455.039\" cy=\"1446.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(#clip622)\" cx=\"460.443\" cy=\"164.018\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"465.846\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"471.25\" cy=\"163.385\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"476.654\" cy=\"1446.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(#clip622)\" cx=\"482.057\" cy=\"162.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(#clip622)\" cx=\"487.461\" cy=\"1446.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(#clip622)\" cx=\"492.865\" cy=\"263.477\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"498.269\" cy=\"262.859\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"503.672\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"509.076\" cy=\"262.269\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"514.48\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"519.883\" cy=\"261.678\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"525.287\" cy=\"1446.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(#clip622)\" cx=\"530.691\" cy=\"261.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(#clip622)\" cx=\"536.094\" cy=\"1446.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(#clip622)\" cx=\"541.498\" cy=\"361.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(#clip622)\" cx=\"546.902\" cy=\"361.138\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"552.305\" cy=\"1446.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(#clip622)\" cx=\"557.709\" cy=\"360.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(#clip622)\" cx=\"563.113\" cy=\"1446.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(#clip622)\" cx=\"568.516\" cy=\"360.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(#clip622)\" cx=\"573.92\" cy=\"1446.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(#clip622)\" cx=\"579.324\" cy=\"359.552\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"584.727\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"590.131\" cy=\"459.954\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"595.535\" cy=\"459.499\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"600.938\" cy=\"1446.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(#clip622)\" cx=\"606.342\" cy=\"459.037\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"611.746\" cy=\"1446.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(#clip622)\" cx=\"617.149\" cy=\"458.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(#clip622)\" cx=\"622.553\" cy=\"1446.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(#clip622)\" cx=\"627.957\" cy=\"458.118\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"633.36\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"638.764\" cy=\"558.333\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"644.168\" cy=\"557.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(#clip622)\" cx=\"649.571\" cy=\"1446.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(#clip622)\" cx=\"654.975\" cy=\"557.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(#clip622)\" cx=\"660.379\" cy=\"1446.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(#clip622)\" cx=\"665.782\" cy=\"557.148\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"671.186\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"676.59\" cy=\"556.76\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"681.993\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"687.397\" cy=\"656.798\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"692.801\" cy=\"656.471\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"698.205\" cy=\"1446.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(#clip622)\" cx=\"703.608\" cy=\"656.133\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"709.012\" cy=\"1446.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(#clip622)\" cx=\"714.416\" cy=\"655.805\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"719.819\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"725.223\" cy=\"655.475\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"730.627\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"736.03\" cy=\"755.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(#clip622)\" cx=\"741.434\" cy=\"755.073\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"746.838\" cy=\"1446.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(#clip622)\" cx=\"752.241\" cy=\"754.798\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"757.645\" cy=\"1446.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(#clip622)\" cx=\"763.049\" cy=\"754.525\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"768.452\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"773.856\" cy=\"754.257\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"779.26\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"784.663\" cy=\"853.955\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"790.067\" cy=\"853.745\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"795.471\" cy=\"1446.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(#clip622)\" cx=\"800.874\" cy=\"853.526\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"806.278\" cy=\"1446.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(#clip622)\" cx=\"811.682\" cy=\"853.309\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"817.085\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"822.489\" cy=\"853.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(#clip622)\" cx=\"827.893\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"833.296\" cy=\"952.636\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"838.7\" cy=\"952.479\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"844.104\" cy=\"1446.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(#clip622)\" cx=\"849.507\" cy=\"952.313\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"854.911\" cy=\"1446.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(#clip622)\" cx=\"860.315\" cy=\"952.147\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"865.718\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"871.122\" cy=\"951.991\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"876.526\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"881.929\" cy=\"1051.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(#clip622)\" cx=\"887.333\" cy=\"1051.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(#clip622)\" cx=\"892.737\" cy=\"1446.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(#clip622)\" cx=\"898.141\" cy=\"1051.15\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"903.544\" cy=\"1446.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(#clip622)\" cx=\"908.948\" cy=\"1051.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(#clip622)\" cx=\"914.352\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"919.755\" cy=\"1050.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(#clip622)\" cx=\"925.159\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"930.563\" cy=\"1150.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(#clip622)\" cx=\"935.966\" cy=\"1150.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(#clip622)\" cx=\"941.37\" cy=\"1446.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(#clip622)\" cx=\"946.774\" cy=\"1150.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(#clip622)\" cx=\"952.177\" cy=\"1446.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(#clip622)\" cx=\"957.581\" cy=\"1149.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(#clip622)\" cx=\"962.985\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"968.388\" cy=\"1149.88\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"973.792\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"979.196\" cy=\"1249.01\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"984.599\" cy=\"1248.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(#clip622)\" cx=\"990.003\" cy=\"1446.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(#clip622)\" cx=\"995.407\" cy=\"1248.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(#clip622)\" cx=\"1000.81\" cy=\"1446.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(#clip622)\" cx=\"1006.21\" cy=\"1248.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(#clip622)\" cx=\"1011.62\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1017.02\" cy=\"1248.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(#clip622)\" cx=\"1022.43\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1027.83\" cy=\"1347.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(#clip622)\" cx=\"1033.23\" cy=\"1347.88\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1038.64\" cy=\"1446.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(#clip622)\" cx=\"1044.04\" cy=\"1347.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(#clip622)\" cx=\"1049.44\" cy=\"1446.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(#clip622)\" cx=\"1054.85\" cy=\"1347.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(#clip622)\" cx=\"1060.25\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1065.65\" cy=\"1347.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(#clip622)\" cx=\"1071.06\" cy=\"1446.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(#clip622)\" cx=\"1076.46\" cy=\"1446.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(#clip622)\" cx=\"1081.87\" cy=\"1446.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(#clip622)\" cx=\"1087.27\" cy=\"1446.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(#clip622)\" cx=\"1092.67\" cy=\"1446.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(#clip622)\" cx=\"1098.08\" cy=\"1446.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(#clip622)\" cx=\"1103.48\" cy=\"1446.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(#clip622)\" cx=\"1108.88\" cy=\"1446.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(#clip622)\" cx=\"1114.29\" cy=\"1446.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(#clip622)\" cx=\"1119.69\" cy=\"1446.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(#clip622)\" cx=\"1125.09\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1130.5\" cy=\"1447.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(#clip622)\" cx=\"1135.9\" cy=\"1446.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(#clip622)\" cx=\"1141.31\" cy=\"1446.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(#clip622)\" cx=\"1146.71\" cy=\"1446.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(#clip622)\" cx=\"1152.11\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1157.52\" cy=\"1447.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(#clip622)\" cx=\"1162.92\" cy=\"1446.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(#clip622)\" cx=\"1168.32\" cy=\"1446.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(#clip622)\" cx=\"1173.73\" cy=\"1446.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(#clip622)\" cx=\"1179.13\" cy=\"1446.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(#clip622)\" cx=\"1184.54\" cy=\"1447.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(#clip622)\" cx=\"1189.94\" cy=\"1446.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(#clip622)\" cx=\"1195.34\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1200.75\" cy=\"1446.12\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1206.15\" cy=\"1446.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(#clip622)\" cx=\"1211.55\" cy=\"1447.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(#clip622)\" cx=\"1216.96\" cy=\"1446.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(#clip622)\" cx=\"1222.36\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1227.76\" cy=\"1445.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(#clip622)\" cx=\"1233.17\" cy=\"1446.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(#clip622)\" cx=\"1238.57\" cy=\"1447.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(#clip622)\" cx=\"1243.98\" cy=\"1446.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(#clip622)\" cx=\"1249.38\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1254.78\" cy=\"1445.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1260.19\" cy=\"1446.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(#clip622)\" cx=\"1265.59\" 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(#clip622)\" cx=\"1270.99\" cy=\"1446.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(#clip622)\" cx=\"1276.4\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1281.8\" cy=\"1445.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(#clip622)\" cx=\"1287.21\" cy=\"1446.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(#clip622)\" cx=\"1292.61\" 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(#clip622)\" cx=\"1298.01\" cy=\"1446.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(#clip622)\" cx=\"1303.42\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1308.82\" cy=\"1445.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(#clip622)\" cx=\"1314.22\" cy=\"1446.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(#clip622)\" cx=\"1319.63\" cy=\"1447.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(#clip622)\" cx=\"1325.03\" cy=\"1446.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(#clip622)\" cx=\"1330.43\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1335.84\" cy=\"1445.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1341.24\" cy=\"1446.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(#clip622)\" cx=\"1346.65\" cy=\"1447.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(#clip622)\" cx=\"1352.05\" cy=\"1446.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(#clip622)\" cx=\"1357.45\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1362.86\" cy=\"1445.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(#clip622)\" cx=\"1368.26\" cy=\"1446.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(#clip622)\" cx=\"1373.66\" cy=\"1447.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(#clip622)\" cx=\"1379.07\" cy=\"1446.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(#clip622)\" cx=\"1384.47\" cy=\"1446.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(#clip622)\" cx=\"1389.87\" cy=\"1446.12\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1395.28\" cy=\"1446.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(#clip622)\" cx=\"1400.68\" cy=\"1447.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(#clip622)\" cx=\"1406.09\" cy=\"1446.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(#clip622)\" cx=\"1411.49\" cy=\"1446.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(#clip622)\" cx=\"1416.89\" cy=\"1446.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(#clip622)\" cx=\"1422.3\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1427.7\" cy=\"1447.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(#clip622)\" cx=\"1433.1\" cy=\"1446.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(#clip622)\" cx=\"1438.51\" cy=\"1446.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(#clip622)\" cx=\"1443.91\" cy=\"1446.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(#clip622)\" cx=\"1449.32\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1454.72\" cy=\"1446.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(#clip622)\" cx=\"1460.12\" cy=\"1446.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(#clip622)\" cx=\"1465.53\" cy=\"1446.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(#clip622)\" cx=\"1470.93\" cy=\"1446.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(#clip622)\" cx=\"1476.33\" cy=\"1446.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(#clip622)\" cx=\"1481.74\" cy=\"1446.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(#clip622)\" cx=\"1487.14\" cy=\"1446.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(#clip622)\" cx=\"1492.54\" cy=\"1446.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(#clip622)\" cx=\"1497.95\" cy=\"1446.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(#clip622)\" cx=\"1503.35\" cy=\"1446.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(#clip622)\" cx=\"1508.76\" cy=\"1446.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(#clip622)\" cx=\"1514.16\" cy=\"1446.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(#clip622)\" cx=\"1519.56\" cy=\"1347.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(#clip622)\" cx=\"1524.97\" cy=\"1347.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(#clip622)\" cx=\"1530.37\" cy=\"1446.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(#clip622)\" cx=\"1535.77\" cy=\"1347.88\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1541.18\" cy=\"1446.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(#clip622)\" cx=\"1546.58\" cy=\"1347.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(#clip622)\" cx=\"1551.99\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1557.39\" cy=\"1347.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(#clip622)\" cx=\"1562.79\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1568.2\" cy=\"1249.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(#clip622)\" cx=\"1573.6\" cy=\"1249.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(#clip622)\" cx=\"1579\" cy=\"1446.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(#clip622)\" cx=\"1584.41\" cy=\"1248.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(#clip622)\" cx=\"1589.81\" cy=\"1446.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(#clip622)\" cx=\"1595.21\" cy=\"1248.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(#clip622)\" cx=\"1600.62\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1606.02\" cy=\"1248.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(#clip622)\" cx=\"1611.43\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1616.83\" cy=\"1150.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(#clip622)\" cx=\"1622.23\" cy=\"1150.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(#clip622)\" cx=\"1627.64\" cy=\"1446.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(#clip622)\" cx=\"1633.04\" cy=\"1150.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(#clip622)\" cx=\"1638.44\" cy=\"1446.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(#clip622)\" cx=\"1643.85\" cy=\"1149.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(#clip622)\" cx=\"1649.25\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1654.66\" cy=\"1149.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(#clip622)\" cx=\"1660.06\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1665.46\" cy=\"1051.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(#clip622)\" cx=\"1670.87\" cy=\"1051.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(#clip622)\" cx=\"1676.27\" cy=\"1446.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(#clip622)\" cx=\"1681.67\" cy=\"1051.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(#clip622)\" cx=\"1687.08\" cy=\"1446.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(#clip622)\" cx=\"1692.48\" cy=\"1051.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(#clip622)\" cx=\"1697.88\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1703.29\" cy=\"1050.88\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1708.69\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1714.1\" cy=\"952.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(#clip622)\" cx=\"1719.5\" cy=\"952.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(#clip622)\" cx=\"1724.9\" cy=\"1446.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(#clip622)\" cx=\"1730.31\" cy=\"952.381\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1735.71\" cy=\"1446.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(#clip622)\" cx=\"1741.11\" cy=\"952.138\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1746.52\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1751.92\" cy=\"951.911\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1757.32\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1762.73\" cy=\"854.231\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1768.13\" cy=\"853.925\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1773.54\" cy=\"1446.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(#clip622)\" cx=\"1778.94\" cy=\"853.605\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1784.34\" cy=\"1446.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(#clip622)\" cx=\"1789.75\" cy=\"853.286\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1795.15\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1800.55\" cy=\"852.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(#clip622)\" cx=\"1805.96\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1811.36\" cy=\"755.682\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1816.77\" cy=\"755.291\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1822.17\" cy=\"1446.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(#clip622)\" cx=\"1827.57\" cy=\"754.888\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1832.98\" cy=\"1446.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(#clip622)\" cx=\"1838.38\" cy=\"754.485\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1843.78\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1849.19\" cy=\"754.093\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1854.59\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1859.99\" cy=\"657.208\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1865.4\" cy=\"656.727\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1870.8\" cy=\"1446.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(#clip622)\" cx=\"1876.21\" cy=\"656.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(#clip622)\" cx=\"1881.61\" cy=\"1446.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(#clip622)\" cx=\"1887.01\" cy=\"655.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(#clip622)\" cx=\"1892.42\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1897.82\" cy=\"655.261\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1903.22\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1908.63\" cy=\"558.817\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1914.03\" cy=\"558.241\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1919.44\" cy=\"1446.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(#clip622)\" cx=\"1924.84\" cy=\"557.653\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1930.24\" cy=\"1446.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(#clip622)\" cx=\"1935.65\" cy=\"557.065\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1941.05\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1946.45\" cy=\"556.489\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1951.86\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1957.26\" cy=\"460.515\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1962.66\" cy=\"459.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(#clip622)\" cx=\"1968.07\" cy=\"1446.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(#clip622)\" cx=\"1973.47\" cy=\"459.149\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1978.88\" cy=\"1446.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(#clip622)\" cx=\"1984.28\" cy=\"458.459\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1989.68\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"1995.09\" cy=\"457.782\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"2000.49\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"2005.89\" cy=\"362.311\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"2011.3\" cy=\"361.522\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"2016.7\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"2022.11\" cy=\"360.726\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"2027.51\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"2032.91\" cy=\"359.931\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"2038.32\" cy=\"1446.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(#clip622)\" cx=\"2043.72\" cy=\"359.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(#clip622)\" cx=\"2049.12\" cy=\"1446.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(#clip622)\" cx=\"2054.53\" cy=\"264.217\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"2059.93\" cy=\"263.285\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"2065.33\" cy=\"1446.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(#clip622)\" cx=\"2070.74\" cy=\"262.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(#clip622)\" cx=\"2076.14\" cy=\"1446.81\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"2081.55\" cy=\"261.494\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"2086.95\" cy=\"1446.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(#clip622)\" cx=\"2092.35\" cy=\"260.562\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"2097.76\" cy=\"1446.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(#clip622)\" cx=\"2103.16\" cy=\"166.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(#clip622)\" cx=\"2108.56\" cy=\"165.103\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"2113.97\" cy=\"1446.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(#clip622)\" cx=\"2119.37\" cy=\"164.14\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"2124.77\" cy=\"1446.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(#clip622)\" cx=\"2130.18\" cy=\"163.178\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "<circle clip-path=\"url(#clip622)\" cx=\"2135.58\" cy=\"1446.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(#clip622)\" cx=\"2140.99\" 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(#clip622)\" cx=\"2146.39\" cy=\"1446.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(#clip622)\" cx=\"2151.79\" cy=\"1446.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(#clip622)\" cx=\"2157.2\" cy=\"1446.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(#clip622)\" cx=\"2162.6\" cy=\"1446.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(#clip622)\" cx=\"2168\" cy=\"1446.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(#clip622)\" cx=\"2173.41\" cy=\"1446.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(#clip622)\" cx=\"2178.81\" cy=\"1446.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(#clip622)\" cx=\"2184.22\" cy=\"1446.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(#clip622)\" cx=\"2189.62\" cy=\"1446.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(#clip622)\" cx=\"2195.02\" cy=\"1446.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(#clip622)\" cx=\"2200.43\" cy=\"1446.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(#clip622)\" cx=\"2205.83\" cy=\"1446.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(#clip622)\" cx=\"2211.23\" cy=\"1446.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(#clip622)\" cx=\"2216.64\" cy=\"1446.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(#clip622)\" cx=\"2222.04\" cy=\"1446.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(#clip622)\" cx=\"2227.44\" cy=\"1446.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(#clip622)\" cx=\"2232.85\" cy=\"1446.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(#clip622)\" cx=\"2238.25\" cy=\"1446.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(#clip622)\" cx=\"2243.66\" cy=\"1446.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(#clip622)\" cx=\"2249.06\" cy=\"1446.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(#clip622)\" cx=\"2254.46\" cy=\"1446.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(#clip622)\" cx=\"2259.87\" cy=\"1446.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(#clip622)\" cx=\"2265.27\" cy=\"1446.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(#clip622)\" cx=\"2270.67\" cy=\"1446.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(#clip622)\" cx=\"2276.08\" cy=\"1446.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(#clip622)\" cx=\"2281.48\" cy=\"1446.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(#clip622)\" cx=\"2286.89\" cy=\"1446.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(#clip622)\" cx=\"2292.29\" cy=\"1446.8\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n",
       "</svg>\n"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "plotFinalStress(name)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 765,
   "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=\"clip660\">\n",
       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip660)\" 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=\"clip661\">\n",
       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip660)\" d=\"\n",
       "M279.838 1486.45 L2352.76 1486.45 L2352.76 123.472 L279.838 123.472  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip662\">\n",
       "    <rect x=\"279\" y=\"123\" width=\"2074\" height=\"1364\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<polyline clip-path=\"url(#clip662)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  318.551,1486.45 318.551,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip662)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  817.424,1486.45 817.424,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip662)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1316.3,1486.45 1316.3,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip662)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1815.17,1486.45 1815.17,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip662)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  2314.04,1486.45 2314.04,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  279.838,1486.45 2352.76,1486.45 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  318.551,1486.45 318.551,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  817.424,1486.45 817.424,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1316.3,1486.45 1316.3,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1815.17,1486.45 1815.17,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  2314.04,1486.45 2314.04,1470.09 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip660)\" d=\"M 0 0 M318.551 1515.64 Q314.94 1515.64 313.111 1519.2 Q311.306 1522.75 311.306 1529.87 Q311.306 1536.98 313.111 1540.55 Q314.94 1544.09 318.551 1544.09 Q322.185 1544.09 323.991 1540.55 Q325.819 1536.98 325.819 1529.87 Q325.819 1522.75 323.991 1519.2 Q322.185 1515.64 318.551 1515.64 M318.551 1511.93 Q324.361 1511.93 327.417 1516.54 Q330.495 1521.12 330.495 1529.87 Q330.495 1538.6 327.417 1543.21 Q324.361 1547.79 318.551 1547.79 Q312.741 1547.79 309.662 1543.21 Q306.606 1538.6 306.606 1529.87 Q306.606 1521.12 309.662 1516.54 Q312.741 1511.93 318.551 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M799.068 1543.18 L815.387 1543.18 L815.387 1547.12 L793.443 1547.12 L793.443 1543.18 Q796.105 1540.43 800.688 1535.8 Q805.294 1531.15 806.475 1529.81 Q808.72 1527.28 809.6 1525.55 Q810.503 1523.79 810.503 1522.1 Q810.503 1519.34 808.558 1517.61 Q806.637 1515.87 803.535 1515.87 Q801.336 1515.87 798.882 1516.63 Q796.452 1517.4 793.674 1518.95 L793.674 1514.23 Q796.498 1513.09 798.952 1512.51 Q801.406 1511.93 803.443 1511.93 Q808.813 1511.93 812.007 1514.62 Q815.202 1517.31 815.202 1521.8 Q815.202 1523.93 814.392 1525.85 Q813.605 1527.74 811.498 1530.34 Q810.919 1531.01 807.818 1534.23 Q804.716 1537.42 799.068 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M820.503 1512.56 L838.859 1512.56 L838.859 1516.5 L824.785 1516.5 L824.785 1524.97 Q825.804 1524.62 826.822 1524.46 Q827.841 1524.27 828.859 1524.27 Q834.646 1524.27 838.026 1527.44 Q841.405 1530.62 841.405 1536.03 Q841.405 1541.61 837.933 1544.71 Q834.461 1547.79 828.142 1547.79 Q825.966 1547.79 823.697 1547.42 Q821.452 1547.05 819.044 1546.31 L819.044 1541.61 Q821.128 1542.74 823.35 1543.3 Q825.572 1543.86 828.049 1543.86 Q832.054 1543.86 834.391 1541.75 Q836.729 1539.64 836.729 1536.03 Q836.729 1532.42 834.391 1530.31 Q832.054 1528.21 828.049 1528.21 Q826.174 1528.21 824.299 1528.62 Q822.447 1529.04 820.503 1529.92 L820.503 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M1293.07 1512.56 L1311.42 1512.56 L1311.42 1516.5 L1297.35 1516.5 L1297.35 1524.97 Q1298.37 1524.62 1299.39 1524.46 Q1300.41 1524.27 1301.42 1524.27 Q1307.21 1524.27 1310.59 1527.44 Q1313.97 1530.62 1313.97 1536.03 Q1313.97 1541.61 1310.5 1544.71 Q1307.03 1547.79 1300.71 1547.79 Q1298.53 1547.79 1296.26 1547.42 Q1294.02 1547.05 1291.61 1546.31 L1291.61 1541.61 Q1293.69 1542.74 1295.92 1543.3 Q1298.14 1543.86 1300.61 1543.86 Q1304.62 1543.86 1306.96 1541.75 Q1309.29 1539.64 1309.29 1536.03 Q1309.29 1532.42 1306.96 1530.31 Q1304.62 1528.21 1300.61 1528.21 Q1298.74 1528.21 1296.86 1528.62 Q1295.01 1529.04 1293.07 1529.92 L1293.07 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M1329.04 1515.64 Q1325.43 1515.64 1323.6 1519.2 Q1321.79 1522.75 1321.79 1529.87 Q1321.79 1536.98 1323.6 1540.55 Q1325.43 1544.09 1329.04 1544.09 Q1332.67 1544.09 1334.48 1540.55 Q1336.31 1536.98 1336.31 1529.87 Q1336.31 1522.75 1334.48 1519.2 Q1332.67 1515.64 1329.04 1515.64 M1329.04 1511.93 Q1334.85 1511.93 1337.91 1516.54 Q1340.98 1521.12 1340.98 1529.87 Q1340.98 1538.6 1337.91 1543.21 Q1334.85 1547.79 1329.04 1547.79 Q1323.23 1547.79 1320.15 1543.21 Q1317.1 1538.6 1317.1 1529.87 Q1317.1 1521.12 1320.15 1516.54 Q1323.23 1511.93 1329.04 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M1791.05 1512.56 L1813.27 1512.56 L1813.27 1514.55 L1800.73 1547.12 L1795.84 1547.12 L1807.65 1516.5 L1791.05 1516.5 L1791.05 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M1818.39 1512.56 L1836.74 1512.56 L1836.74 1516.5 L1822.67 1516.5 L1822.67 1524.97 Q1823.69 1524.62 1824.71 1524.46 Q1825.73 1524.27 1826.74 1524.27 Q1832.53 1524.27 1835.91 1527.44 Q1839.29 1530.62 1839.29 1536.03 Q1839.29 1541.61 1835.82 1544.71 Q1832.35 1547.79 1826.03 1547.79 Q1823.85 1547.79 1821.58 1547.42 Q1819.34 1547.05 1816.93 1546.31 L1816.93 1541.61 Q1819.01 1542.74 1821.24 1543.3 Q1823.46 1543.86 1825.93 1543.86 Q1829.94 1543.86 1832.28 1541.75 Q1834.61 1539.64 1834.61 1536.03 Q1834.61 1532.42 1832.28 1530.31 Q1829.94 1528.21 1825.93 1528.21 Q1824.06 1528.21 1822.18 1528.62 Q1820.33 1529.04 1818.39 1529.92 L1818.39 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M2277.41 1543.18 L2285.05 1543.18 L2285.05 1516.82 L2276.74 1518.49 L2276.74 1514.23 L2285 1512.56 L2289.68 1512.56 L2289.68 1543.18 L2297.32 1543.18 L2297.32 1547.12 L2277.41 1547.12 L2277.41 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M2312.39 1515.64 Q2308.78 1515.64 2306.95 1519.2 Q2305.14 1522.75 2305.14 1529.87 Q2305.14 1536.98 2306.95 1540.55 Q2308.78 1544.09 2312.39 1544.09 Q2316.02 1544.09 2317.83 1540.55 Q2319.66 1536.98 2319.66 1529.87 Q2319.66 1522.75 2317.83 1519.2 Q2316.02 1515.64 2312.39 1515.64 M2312.39 1511.93 Q2318.2 1511.93 2321.25 1516.54 Q2324.33 1521.12 2324.33 1529.87 Q2324.33 1538.6 2321.25 1543.21 Q2318.2 1547.79 2312.39 1547.79 Q2306.58 1547.79 2303.5 1543.21 Q2300.44 1538.6 2300.44 1529.87 Q2300.44 1521.12 2303.5 1516.54 Q2306.58 1511.93 2312.39 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M2339.4 1515.64 Q2335.79 1515.64 2333.96 1519.2 Q2332.16 1522.75 2332.16 1529.87 Q2332.16 1536.98 2333.96 1540.55 Q2335.79 1544.09 2339.4 1544.09 Q2343.04 1544.09 2344.84 1540.55 Q2346.67 1536.98 2346.67 1529.87 Q2346.67 1522.75 2344.84 1519.2 Q2343.04 1515.64 2339.4 1515.64 M2339.4 1511.93 Q2345.21 1511.93 2348.27 1516.54 Q2351.35 1521.12 2351.35 1529.87 Q2351.35 1538.6 2348.27 1543.21 Q2345.21 1547.79 2339.4 1547.79 Q2333.59 1547.79 2330.51 1543.21 Q2327.46 1538.6 2327.46 1529.87 Q2327.46 1521.12 2330.51 1516.54 Q2333.59 1511.93 2339.4 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip662)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  279.838,1461.9 2352.76,1461.9 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip662)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  279.838,1230.28 2352.76,1230.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip662)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  279.838,998.652 2352.76,998.652 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip662)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  279.838,767.029 2352.76,767.029 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip662)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  279.838,535.405 2352.76,535.405 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip662)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  279.838,303.782 2352.76,303.782 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  279.838,1486.45 279.838,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  279.838,1461.9 304.713,1461.9 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  279.838,1230.28 304.713,1230.28 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  279.838,998.652 304.713,998.652 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  279.838,767.029 304.713,767.029 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  279.838,535.405 304.713,535.405 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip660)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  279.838,303.782 304.713,303.782 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip660)\" d=\"M 0 0 M231.894 1447.7 Q228.283 1447.7 226.454 1451.26 Q224.649 1454.8 224.649 1461.93 Q224.649 1469.04 226.454 1472.6 Q228.283 1476.15 231.894 1476.15 Q235.528 1476.15 237.334 1472.6 Q239.162 1469.04 239.162 1461.93 Q239.162 1454.8 237.334 1451.26 Q235.528 1447.7 231.894 1447.7 M231.894 1443.99 Q237.704 1443.99 240.76 1448.6 Q243.838 1453.18 243.838 1461.93 Q243.838 1470.66 240.76 1475.27 Q237.704 1479.85 231.894 1479.85 Q226.084 1479.85 223.005 1475.27 Q219.95 1470.66 219.95 1461.93 Q219.95 1453.18 223.005 1448.6 Q226.084 1443.99 231.894 1443.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M58.0291 1250.07 L74.3485 1250.07 L74.3485 1254 L52.4042 1254 L52.4042 1250.07 Q55.0662 1247.31 59.6495 1242.68 Q64.2559 1238.03 65.4365 1236.69 Q67.6819 1234.17 68.5615 1232.43 Q69.4642 1230.67 69.4642 1228.98 Q69.4642 1226.23 67.5198 1224.49 Q65.5985 1222.75 62.4967 1222.75 Q60.2976 1222.75 57.8439 1223.52 Q55.4134 1224.28 52.6356 1225.83 L52.6356 1221.11 Q55.4597 1219.98 57.9134 1219.4 Q60.3671 1218.82 62.4041 1218.82 Q67.7744 1218.82 70.9689 1221.5 Q74.1633 1224.19 74.1633 1228.68 Q74.1633 1230.81 73.3531 1232.73 Q72.5661 1234.63 70.4596 1237.22 Q69.8809 1237.89 66.7791 1241.11 Q63.6772 1244.3 58.0291 1250.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M79.4179 1248.12 L84.3021 1248.12 L84.3021 1254 L79.4179 1254 L79.4179 1248.12 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M89.4178 1219.44 L107.774 1219.44 L107.774 1223.38 L93.7002 1223.38 L93.7002 1231.85 Q94.7187 1231.5 95.7373 1231.34 Q96.7558 1231.16 97.7743 1231.16 Q103.561 1231.16 106.941 1234.33 Q110.321 1237.5 110.321 1242.92 Q110.321 1248.49 106.848 1251.6 Q103.376 1254.67 97.0567 1254.67 Q94.8808 1254.67 92.6123 1254.3 Q90.3669 1253.93 87.9595 1253.19 L87.9595 1248.49 Q90.0428 1249.63 92.2651 1250.18 Q94.4873 1250.74 96.9641 1250.74 Q100.969 1250.74 103.307 1248.63 Q105.645 1246.53 105.645 1242.92 Q105.645 1239.3 103.307 1237.2 Q100.969 1235.09 96.9641 1235.09 Q95.0891 1235.09 93.2141 1235.51 Q91.3623 1235.92 89.4178 1236.8 L89.4178 1219.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M125.39 1222.52 Q121.779 1222.52 119.95 1226.09 Q118.145 1229.63 118.145 1236.76 Q118.145 1243.86 119.95 1247.43 Q121.779 1250.97 125.39 1250.97 Q129.024 1250.97 130.83 1247.43 Q132.658 1243.86 132.658 1236.76 Q132.658 1229.63 130.83 1226.09 Q129.024 1222.52 125.39 1222.52 M125.39 1218.82 Q131.2 1218.82 134.256 1223.42 Q137.334 1228.01 137.334 1236.76 Q137.334 1245.48 134.256 1250.09 Q131.2 1254.67 125.39 1254.67 Q119.58 1254.67 116.501 1250.09 Q113.445 1245.48 113.445 1236.76 Q113.445 1228.01 116.501 1223.42 Q119.58 1218.82 125.39 1218.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M170.575 1228.54 L159.996 1239.17 L170.575 1249.74 L167.82 1252.54 L157.195 1241.92 L146.57 1252.54 L143.839 1249.74 L154.394 1239.17 L143.839 1228.54 L146.57 1225.74 L157.195 1236.36 L167.82 1225.74 L170.575 1228.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M176.454 1250.07 L184.093 1250.07 L184.093 1223.7 L175.783 1225.37 L175.783 1221.11 L184.047 1219.44 L188.723 1219.44 L188.723 1250.07 L196.362 1250.07 L196.362 1254 L176.454 1254 L176.454 1250.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M211.431 1222.52 Q207.82 1222.52 205.991 1226.09 Q204.186 1229.63 204.186 1236.76 Q204.186 1243.86 205.991 1247.43 Q207.82 1250.97 211.431 1250.97 Q215.065 1250.97 216.871 1247.43 Q218.7 1243.86 218.7 1236.76 Q218.7 1229.63 216.871 1226.09 Q215.065 1222.52 211.431 1222.52 M211.431 1218.82 Q217.241 1218.82 220.297 1223.42 Q223.375 1228.01 223.375 1236.76 Q223.375 1245.48 220.297 1250.09 Q217.241 1254.67 211.431 1254.67 Q205.621 1254.67 202.542 1250.09 Q199.487 1245.48 199.487 1236.76 Q199.487 1228.01 202.542 1223.42 Q205.621 1218.82 211.431 1218.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M236.052 1201.82 L226.46 1216.81 L236.052 1216.81 L236.052 1201.82 M235.055 1198.51 L239.832 1198.51 L239.832 1216.81 L243.838 1216.81 L243.838 1219.97 L239.832 1219.97 L239.832 1226.59 L236.052 1226.59 L236.052 1219.97 L223.375 1219.97 L223.375 1216.3 L235.055 1198.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M52.4505 987.82 L70.8068 987.82 L70.8068 991.755 L56.7328 991.755 L56.7328 1000.23 Q57.7513 999.88 58.7699 999.718 Q59.7884 999.533 60.8069 999.533 Q66.5939 999.533 69.9735 1002.7 Q73.3531 1005.88 73.3531 1011.29 Q73.3531 1016.87 69.8809 1019.97 Q66.4087 1023.05 60.0893 1023.05 Q57.9134 1023.05 55.6449 1022.68 Q53.3995 1022.31 50.9921 1021.57 L50.9921 1016.87 Q53.0754 1018 55.2977 1018.56 Q57.5199 1019.12 59.9967 1019.12 Q64.0013 1019.12 66.3393 1017.01 Q68.6772 1014.9 68.6772 1011.29 Q68.6772 1007.68 66.3393 1005.57 Q64.0013 1003.47 59.9967 1003.47 Q58.1217 1003.47 56.2467 1003.88 Q54.3949 1004.3 52.4505 1005.18 L52.4505 987.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M78.4225 1016.5 L83.3068 1016.5 L83.3068 1022.38 L78.4225 1022.38 L78.4225 1016.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M98.3761 990.898 Q94.765 990.898 92.9363 994.463 Q91.1308 998.005 91.1308 1005.13 Q91.1308 1012.24 92.9363 1015.81 Q94.765 1019.35 98.3761 1019.35 Q102.01 1019.35 103.816 1015.81 Q105.645 1012.24 105.645 1005.13 Q105.645 998.005 103.816 994.463 Q102.01 990.898 98.3761 990.898 M98.3761 987.195 Q104.186 987.195 107.242 991.801 Q110.321 996.385 110.321 1005.13 Q110.321 1013.86 107.242 1018.47 Q104.186 1023.05 98.3761 1023.05 Q92.566 1023.05 89.4873 1018.47 Q86.4318 1013.86 86.4318 1005.13 Q86.4318 996.385 89.4873 991.801 Q92.566 987.195 98.3761 987.195 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M125.39 990.898 Q121.779 990.898 119.95 994.463 Q118.145 998.005 118.145 1005.13 Q118.145 1012.24 119.95 1015.81 Q121.779 1019.35 125.39 1019.35 Q129.024 1019.35 130.83 1015.81 Q132.658 1012.24 132.658 1005.13 Q132.658 998.005 130.83 994.463 Q129.024 990.898 125.39 990.898 M125.39 987.195 Q131.2 987.195 134.256 991.801 Q137.334 996.385 137.334 1005.13 Q137.334 1013.86 134.256 1018.47 Q131.2 1023.05 125.39 1023.05 Q119.58 1023.05 116.501 1018.47 Q113.445 1013.86 113.445 1005.13 Q113.445 996.385 116.501 991.801 Q119.58 987.195 125.39 987.195 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M170.575 996.917 L159.996 1007.54 L170.575 1018.12 L167.82 1020.92 L157.195 1010.3 L146.57 1020.92 L143.839 1018.12 L154.394 1007.54 L143.839 996.917 L146.57 994.116 L157.195 1004.74 L167.82 994.116 L170.575 996.917 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M176.454 1018.44 L184.093 1018.44 L184.093 992.079 L175.783 993.746 L175.783 989.486 L184.047 987.82 L188.723 987.82 L188.723 1018.44 L196.362 1018.44 L196.362 1022.38 L176.454 1022.38 L176.454 1018.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M211.431 990.898 Q207.82 990.898 205.991 994.463 Q204.186 998.005 204.186 1005.13 Q204.186 1012.24 205.991 1015.81 Q207.82 1019.35 211.431 1019.35 Q215.065 1019.35 216.871 1015.81 Q218.7 1012.24 218.7 1005.13 Q218.7 998.005 216.871 994.463 Q215.065 990.898 211.431 990.898 M211.431 987.195 Q217.241 987.195 220.297 991.801 Q223.375 996.385 223.375 1005.13 Q223.375 1013.86 220.297 1018.47 Q217.241 1023.05 211.431 1023.05 Q205.621 1023.05 202.542 1018.47 Q199.487 1013.86 199.487 1005.13 Q199.487 996.385 202.542 991.801 Q205.621 987.195 211.431 987.195 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M236.052 970.2 L226.46 985.189 L236.052 985.189 L236.052 970.2 M235.055 966.889 L239.832 966.889 L239.832 985.189 L243.838 985.189 L243.838 988.349 L239.832 988.349 L239.832 994.969 L236.052 994.969 L236.052 988.349 L223.375 988.349 L223.375 984.682 L235.055 966.889 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M52.1264 756.196 L74.3485 756.196 L74.3485 758.187 L61.8023 790.756 L56.918 790.756 L68.7235 760.132 L52.1264 760.132 L52.1264 756.196 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M79.4179 784.877 L84.3021 784.877 L84.3021 790.756 L79.4179 790.756 L79.4179 784.877 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M89.4178 756.196 L107.774 756.196 L107.774 760.132 L93.7002 760.132 L93.7002 768.604 Q94.7187 768.257 95.7373 768.094 Q96.7558 767.909 97.7743 767.909 Q103.561 767.909 106.941 771.081 Q110.321 774.252 110.321 779.668 Q110.321 785.247 106.848 788.349 Q103.376 791.428 97.0567 791.428 Q94.8808 791.428 92.6123 791.057 Q90.3669 790.687 87.9595 789.946 L87.9595 785.247 Q90.0428 786.381 92.2651 786.937 Q94.4873 787.493 96.9641 787.493 Q100.969 787.493 103.307 785.386 Q105.645 783.28 105.645 779.668 Q105.645 776.057 103.307 773.951 Q100.969 771.844 96.9641 771.844 Q95.0891 771.844 93.2141 772.261 Q91.3623 772.678 89.4178 773.557 L89.4178 756.196 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M125.39 759.275 Q121.779 759.275 119.95 762.84 Q118.145 766.382 118.145 773.511 Q118.145 780.618 119.95 784.182 Q121.779 787.724 125.39 787.724 Q129.024 787.724 130.83 784.182 Q132.658 780.618 132.658 773.511 Q132.658 766.382 130.83 762.84 Q129.024 759.275 125.39 759.275 M125.39 755.571 Q131.2 755.571 134.256 760.178 Q137.334 764.761 137.334 773.511 Q137.334 782.238 134.256 786.844 Q131.2 791.428 125.39 791.428 Q119.58 791.428 116.501 786.844 Q113.445 782.238 113.445 773.511 Q113.445 764.761 116.501 760.178 Q119.58 755.571 125.39 755.571 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M170.575 765.294 L159.996 775.919 L170.575 786.497 L167.82 789.298 L157.195 778.673 L146.57 789.298 L143.839 786.497 L154.394 775.919 L143.839 765.294 L146.57 762.493 L157.195 773.118 L167.82 762.493 L170.575 765.294 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M176.454 786.821 L184.093 786.821 L184.093 760.456 L175.783 762.122 L175.783 757.863 L184.047 756.196 L188.723 756.196 L188.723 786.821 L196.362 786.821 L196.362 790.756 L176.454 790.756 L176.454 786.821 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M211.431 759.275 Q207.82 759.275 205.991 762.84 Q204.186 766.382 204.186 773.511 Q204.186 780.618 205.991 784.182 Q207.82 787.724 211.431 787.724 Q215.065 787.724 216.871 784.182 Q218.7 780.618 218.7 773.511 Q218.7 766.382 216.871 762.84 Q215.065 759.275 211.431 759.275 M211.431 755.571 Q217.241 755.571 220.297 760.178 Q223.375 764.761 223.375 773.511 Q223.375 782.238 220.297 786.844 Q217.241 791.428 211.431 791.428 Q205.621 791.428 202.542 786.844 Q199.487 782.238 199.487 773.511 Q199.487 764.761 202.542 760.178 Q205.621 755.571 211.431 755.571 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M236.052 738.576 L226.46 753.566 L236.052 753.566 L236.052 738.576 M235.055 735.266 L239.832 735.266 L239.832 753.566 L243.838 753.566 L243.838 756.726 L239.832 756.726 L239.832 763.346 L236.052 763.346 L236.052 756.726 L223.375 756.726 L223.375 753.058 L235.055 735.266 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M55.7404 555.198 L63.3792 555.198 L63.3792 528.832 L55.0691 530.499 L55.0691 526.24 L63.3329 524.573 L68.0088 524.573 L68.0088 555.198 L75.6477 555.198 L75.6477 559.133 L55.7404 559.133 L55.7404 555.198 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M80.7171 553.253 L85.6013 553.253 L85.6013 559.133 L80.7171 559.133 L80.7171 553.253 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M100.671 527.652 Q97.0596 527.652 95.2309 531.216 Q93.4253 534.758 93.4253 541.888 Q93.4253 548.994 95.2309 552.559 Q97.0596 556.101 100.671 556.101 Q104.305 556.101 106.11 552.559 Q107.939 548.994 107.939 541.888 Q107.939 534.758 106.11 531.216 Q104.305 527.652 100.671 527.652 M100.671 523.948 Q106.481 523.948 109.536 528.554 Q112.615 533.138 112.615 541.888 Q112.615 550.615 109.536 555.221 Q106.481 559.804 100.671 559.804 Q94.8605 559.804 91.7818 555.221 Q88.7263 550.615 88.7263 541.888 Q88.7263 533.138 91.7818 528.554 Q94.8605 523.948 100.671 523.948 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M127.684 527.652 Q124.073 527.652 122.245 531.216 Q120.439 534.758 120.439 541.888 Q120.439 548.994 122.245 552.559 Q124.073 556.101 127.684 556.101 Q131.319 556.101 133.124 552.559 Q134.953 548.994 134.953 541.888 Q134.953 534.758 133.124 531.216 Q131.319 527.652 127.684 527.652 M127.684 523.948 Q133.495 523.948 136.55 528.554 Q139.629 533.138 139.629 541.888 Q139.629 550.615 136.55 555.221 Q133.495 559.804 127.684 559.804 Q121.874 559.804 118.796 555.221 Q115.74 550.615 115.74 541.888 Q115.74 533.138 118.796 528.554 Q121.874 523.948 127.684 523.948 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M172.869 533.67 L162.291 544.295 L172.869 554.874 L170.115 557.675 L159.49 547.05 L148.865 557.675 L146.133 554.874 L156.689 544.295 L146.133 533.67 L148.865 530.869 L159.49 541.494 L170.115 530.869 L172.869 533.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M178.749 555.198 L186.388 555.198 L186.388 528.832 L178.078 530.499 L178.078 526.24 L186.342 524.573 L191.017 524.573 L191.017 555.198 L198.656 555.198 L198.656 559.133 L178.749 559.133 L178.749 555.198 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M213.726 527.652 Q210.115 527.652 208.286 531.216 Q206.48 534.758 206.48 541.888 Q206.48 548.994 208.286 552.559 Q210.115 556.101 213.726 556.101 Q217.36 556.101 219.165 552.559 Q220.994 548.994 220.994 541.888 Q220.994 534.758 219.165 531.216 Q217.36 527.652 213.726 527.652 M213.726 523.948 Q219.536 523.948 222.591 528.554 Q225.67 533.138 225.67 541.888 Q225.67 550.615 222.591 555.221 Q219.536 559.804 213.726 559.804 Q207.915 559.804 204.837 555.221 Q201.781 550.615 201.781 541.888 Q201.781 533.138 204.837 528.554 Q207.915 523.948 213.726 523.948 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M226.855 503.643 L241.769 503.643 L241.769 506.84 L230.334 506.84 L230.334 513.724 Q231.162 513.441 231.989 513.31 Q232.817 513.159 233.645 513.159 Q238.346 513.159 241.092 515.736 Q243.838 518.313 243.838 522.714 Q243.838 527.246 241.017 529.767 Q238.196 532.268 233.061 532.268 Q231.294 532.268 229.45 531.967 Q227.626 531.666 225.67 531.064 L225.67 527.246 Q227.363 528.168 229.168 528.619 Q230.974 529.071 232.986 529.071 Q236.24 529.071 238.14 527.359 Q240.039 525.648 240.039 522.714 Q240.039 519.78 238.14 518.068 Q236.24 516.357 232.986 516.357 Q231.463 516.357 229.939 516.695 Q228.435 517.034 226.855 517.748 L226.855 503.643 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M58.3329 323.574 L65.9718 323.574 L65.9718 297.209 L57.6617 298.875 L57.6617 294.616 L65.9255 292.95 L70.6014 292.95 L70.6014 323.574 L78.2402 323.574 L78.2402 327.51 L58.3329 327.51 L58.3329 323.574 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M83.3097 321.63 L88.1939 321.63 L88.1939 327.51 L83.3097 327.51 L83.3097 321.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M97.2911 323.574 L113.61 323.574 L113.61 327.51 L91.6661 327.51 L91.6661 323.574 Q94.3281 320.82 98.9114 316.19 Q103.518 311.537 104.698 310.195 Q106.944 307.672 107.823 305.936 Q108.726 304.176 108.726 302.487 Q108.726 299.732 106.782 297.996 Q104.86 296.26 101.759 296.26 Q99.5596 296.26 97.1059 297.024 Q94.6753 297.788 91.8976 299.338 L91.8976 294.616 Q94.7216 293.482 97.1753 292.903 Q99.629 292.325 101.666 292.325 Q107.036 292.325 110.231 295.01 Q113.425 297.695 113.425 302.186 Q113.425 304.315 112.615 306.237 Q111.828 308.135 109.722 310.727 Q109.143 311.399 106.041 314.616 Q102.939 317.811 97.2911 323.574 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M118.726 292.95 L137.083 292.95 L137.083 296.885 L123.009 296.885 L123.009 305.357 Q124.027 305.01 125.046 304.848 Q126.064 304.662 127.083 304.662 Q132.87 304.662 136.249 307.834 Q139.629 311.005 139.629 316.422 Q139.629 322 136.157 325.102 Q132.684 328.181 126.365 328.181 Q124.189 328.181 121.921 327.81 Q119.675 327.44 117.268 326.699 L117.268 322 Q119.351 323.135 121.573 323.69 Q123.796 324.246 126.272 324.246 Q130.277 324.246 132.615 322.139 Q134.953 320.033 134.953 316.422 Q134.953 312.811 132.615 310.704 Q130.277 308.598 126.272 308.598 Q124.397 308.598 122.522 309.014 Q120.671 309.431 118.726 310.311 L118.726 292.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M172.869 302.047 L162.291 312.672 L172.869 323.25 L170.115 326.051 L159.49 315.426 L148.865 326.051 L146.133 323.25 L156.689 312.672 L146.133 302.047 L148.865 299.246 L159.49 309.871 L170.115 299.246 L172.869 302.047 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M178.749 323.574 L186.388 323.574 L186.388 297.209 L178.078 298.875 L178.078 294.616 L186.342 292.95 L191.017 292.95 L191.017 323.574 L198.656 323.574 L198.656 327.51 L178.749 327.51 L178.749 323.574 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M213.726 296.028 Q210.115 296.028 208.286 299.593 Q206.48 303.135 206.48 310.264 Q206.48 317.371 208.286 320.936 Q210.115 324.477 213.726 324.477 Q217.36 324.477 219.165 320.936 Q220.994 317.371 220.994 310.264 Q220.994 303.135 219.165 299.593 Q217.36 296.028 213.726 296.028 M213.726 292.325 Q219.536 292.325 222.591 296.931 Q225.67 301.514 225.67 310.264 Q225.67 318.991 222.591 323.598 Q219.536 328.181 213.726 328.181 Q207.915 328.181 204.837 323.598 Q201.781 318.991 201.781 310.264 Q201.781 301.514 204.837 296.931 Q207.915 292.325 213.726 292.325 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M226.855 272.019 L241.769 272.019 L241.769 275.216 L230.334 275.216 L230.334 282.1 Q231.162 281.818 231.989 281.686 Q232.817 281.536 233.645 281.536 Q238.346 281.536 241.092 284.113 Q243.838 286.689 243.838 291.09 Q243.838 295.623 241.017 298.143 Q238.196 300.645 233.061 300.645 Q231.294 300.645 229.45 300.344 Q227.626 300.043 225.67 299.441 L225.67 295.623 Q227.363 296.545 229.168 296.996 Q230.974 297.447 232.986 297.447 Q236.24 297.447 238.14 295.736 Q240.039 294.024 240.039 291.09 Q240.039 288.156 238.14 286.445 Q236.24 284.733 232.986 284.733 Q231.463 284.733 229.939 285.072 Q228.435 285.41 226.855 286.125 L226.855 272.019 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M1237.3 28.5427 L1237.3 35.5912 Q1234.14 33.9709 1230.74 33.1607 Q1227.34 32.3505 1223.69 32.3505 Q1218.14 32.3505 1215.35 34.0519 Q1212.59 35.7533 1212.59 39.156 Q1212.59 41.7486 1214.58 43.2475 Q1216.56 44.7058 1222.56 46.0426 L1225.11 46.6097 Q1233.05 48.3111 1236.37 51.4303 Q1239.74 54.509 1239.74 60.0587 Q1239.74 66.3781 1234.71 70.0644 Q1229.73 73.7508 1220.98 73.7508 Q1217.33 73.7508 1213.36 73.0216 Q1209.43 72.3329 1205.06 70.9151 L1205.06 63.2184 Q1209.19 65.3654 1213.2 66.4591 Q1217.21 67.5124 1221.14 67.5124 Q1226.41 67.5124 1229.24 65.73 Q1232.08 63.9071 1232.08 60.6258 Q1232.08 57.5877 1230.01 55.9673 Q1227.99 54.3469 1221.06 52.8481 L1218.47 52.2405 Q1211.54 50.7821 1208.46 47.7845 Q1205.38 44.7463 1205.38 39.4801 Q1205.38 33.0797 1209.92 29.5959 Q1214.46 26.1121 1222.8 26.1121 Q1226.93 26.1121 1230.58 26.7198 Q1234.23 27.3274 1237.3 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M1254.93 14.324 L1254.93 27.2059 L1270.28 27.2059 L1270.28 32.9987 L1254.93 32.9987 L1254.93 57.6282 Q1254.93 63.1779 1256.42 64.7578 Q1257.96 66.3376 1262.62 66.3376 L1270.28 66.3376 L1270.28 72.576 L1262.62 72.576 Q1253.99 72.576 1250.71 69.3758 Q1247.43 66.1351 1247.43 57.6282 L1247.43 32.9987 L1241.96 32.9987 L1241.96 27.2059 L1247.43 27.2059 L1247.43 14.324 L1254.93 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M1304.39 34.1734 Q1303.13 33.4443 1301.63 33.1202 Q1300.17 32.7556 1298.39 32.7556 Q1292.07 32.7556 1288.67 36.8875 Q1285.31 40.9789 1285.31 48.6757 L1285.31 72.576 L1277.81 72.576 L1277.81 27.2059 L1285.31 27.2059 L1285.31 34.2544 Q1287.66 30.1225 1291.42 28.1376 Q1295.19 26.1121 1300.58 26.1121 Q1301.35 26.1121 1302.28 26.2337 Q1303.21 26.3147 1304.35 26.5172 L1304.39 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M1349.19 48.0275 L1349.19 51.6733 L1314.92 51.6733 Q1315.41 59.3701 1319.54 63.421 Q1323.71 67.4314 1331.12 67.4314 Q1335.42 67.4314 1339.43 66.3781 Q1343.48 65.3249 1347.45 63.2184 L1347.45 70.267 Q1343.44 71.9684 1339.23 72.8596 Q1335.01 73.7508 1330.68 73.7508 Q1319.82 73.7508 1313.46 67.4314 Q1307.14 61.1119 1307.14 50.3365 Q1307.14 39.1965 1313.14 32.6746 Q1319.17 26.1121 1329.38 26.1121 Q1338.54 26.1121 1343.84 32.0264 Q1349.19 37.9003 1349.19 48.0275 M1341.74 45.84 Q1341.66 39.7232 1338.29 36.0774 Q1334.97 32.4315 1329.46 32.4315 Q1323.22 32.4315 1319.46 35.9558 Q1315.73 39.4801 1315.16 45.8805 L1341.74 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M1385.93 28.5427 L1385.93 35.5912 Q1382.77 33.9709 1379.37 33.1607 Q1375.97 32.3505 1372.32 32.3505 Q1366.77 32.3505 1363.98 34.0519 Q1361.22 35.7533 1361.22 39.156 Q1361.22 41.7486 1363.21 43.2475 Q1365.19 44.7058 1371.19 46.0426 L1373.74 46.6097 Q1381.68 48.3111 1385 51.4303 Q1388.36 54.509 1388.36 60.0587 Q1388.36 66.3781 1383.34 70.0644 Q1378.36 73.7508 1369.61 73.7508 Q1365.96 73.7508 1361.99 73.0216 Q1358.06 72.3329 1353.69 70.9151 L1353.69 63.2184 Q1357.82 65.3654 1361.83 66.4591 Q1365.84 67.5124 1369.77 67.5124 Q1375.04 67.5124 1377.87 65.73 Q1380.71 63.9071 1380.71 60.6258 Q1380.71 57.5877 1378.64 55.9673 Q1376.62 54.3469 1369.69 52.8481 L1367.1 52.2405 Q1360.17 50.7821 1357.09 47.7845 Q1354.01 44.7463 1354.01 39.4801 Q1354.01 33.0797 1358.55 29.5959 Q1363.09 26.1121 1371.43 26.1121 Q1375.56 26.1121 1379.21 26.7198 Q1382.85 27.3274 1385.93 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip660)\" d=\"M 0 0 M1425.1 28.5427 L1425.1 35.5912 Q1421.94 33.9709 1418.54 33.1607 Q1415.14 32.3505 1411.49 32.3505 Q1405.94 32.3505 1403.15 34.0519 Q1400.39 35.7533 1400.39 39.156 Q1400.39 41.7486 1402.38 43.2475 Q1404.36 44.7058 1410.36 46.0426 L1412.91 46.6097 Q1420.85 48.3111 1424.17 51.4303 Q1427.53 54.509 1427.53 60.0587 Q1427.53 66.3781 1422.51 70.0644 Q1417.53 73.7508 1408.78 73.7508 Q1405.13 73.7508 1401.16 73.0216 Q1397.23 72.3329 1392.86 70.9151 L1392.86 63.2184 Q1396.99 65.3654 1401 66.4591 Q1405.01 67.5124 1408.94 67.5124 Q1414.21 67.5124 1417.04 65.73 Q1419.88 63.9071 1419.88 60.6258 Q1419.88 57.5877 1417.81 55.9673 Q1415.79 54.3469 1408.86 52.8481 L1406.27 52.2405 Q1399.34 50.7821 1396.26 47.7845 Q1393.18 44.7463 1393.18 39.4801 Q1393.18 33.0797 1397.72 29.5959 Q1402.26 26.1121 1410.6 26.1121 Q1414.73 26.1121 1418.38 26.7198 Q1422.03 27.3274 1425.1 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip662)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  338.506,1447.87 358.461,1415.93 378.416,1388.52 398.371,1364.48 418.325,1342.67 438.28,1322.37 458.235,1303.08 478.19,1284.47 498.145,1266.32 518.1,1248.48 \n",
       "  538.055,1230.85 558.01,1213.36 577.965,1195.97 597.92,1178.64 617.875,1161.35 637.83,1144.09 657.785,1126.84 677.74,1109.61 697.694,1092.39 717.649,1075.17 \n",
       "  737.604,1057.96 757.559,1040.74 777.514,1023.53 797.469,1006.31 817.424,989.099 837.379,971.883 857.334,954.666 877.289,937.448 897.244,920.228 917.199,903.008 \n",
       "  937.154,885.786 957.108,868.562 977.063,851.338 997.018,834.112 1016.97,816.885 1036.93,799.657 1056.88,782.427 1076.84,765.197 1096.79,747.965 1116.75,730.731 \n",
       "  1136.7,713.497 1156.66,696.262 1176.61,679.025 1196.57,661.787 1216.52,644.544 1236.48,627.303 1256.43,610.111 1276.39,592.898 1296.34,575.676 1316.3,558.449 \n",
       "  1336.25,541.218 1356.21,523.984 1376.16,506.748 1396.12,489.49 1416.07,472.551 1436.03,455.287 1455.98,438.027 1475.94,420.78 1495.89,403.534 1515.85,386.287 \n",
       "  1535.8,369.04 1555.76,351.793 1575.71,334.545 1595.67,317.297 1615.62,300.049 1635.58,282.799 1655.53,265.549 1675.49,248.299 1695.44,231.048 1715.4,213.796 \n",
       "  1735.35,196.544 1755.31,179.291 1775.26,162.047 1795.22,373.498 1815.17,686.76 1835.13,828.798 1855.08,940.966 1875.04,1027.89 1894.99,1094.5 1914.94,1145.57 \n",
       "  1934.9,1184.74 1954.85,1214.78 1974.81,1237.82 1994.76,1255.49 2014.72,1269.05 2034.67,1279.44 2054.63,1287.41 2074.58,1293.53 2094.54,1298.22 2114.49,1301.81 \n",
       "  2134.45,1304.57 2154.4,1306.69 2174.36,1308.31 2194.31,1309.56 2214.27,1310.51 2234.22,1311.25 2254.18,1311.81 2274.13,1312.24 2294.09,1312.57 \n",
       "  \"/>\n",
       "</svg>\n"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "plotStressTroughTimeSteps(name,100)#38"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 766,
   "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=\"clip700\">\n",
       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip700)\" 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=\"clip701\">\n",
       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip700)\" d=\"\n",
       "M255.649 1486.45 L2352.76 1486.45 L2352.76 123.472 L255.649 123.472  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip702\">\n",
       "    <rect x=\"255\" y=\"123\" width=\"2098\" height=\"1364\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  294.813,1486.45 294.813,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  799.508,1486.45 799.508,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1304.2,1486.45 1304.2,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1808.9,1486.45 1808.9,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  2313.59,1486.45 2313.59,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  255.649,1486.45 2352.76,1486.45 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  294.813,1486.45 294.813,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  799.508,1486.45 799.508,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1304.2,1486.45 1304.2,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1808.9,1486.45 1808.9,1470.09 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  2313.59,1486.45 2313.59,1470.09 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip700)\" d=\"M 0 0 M294.813 1515.64 Q291.202 1515.64 289.373 1519.2 Q287.568 1522.75 287.568 1529.87 Q287.568 1536.98 289.373 1540.55 Q291.202 1544.09 294.813 1544.09 Q298.447 1544.09 300.253 1540.55 Q302.081 1536.98 302.081 1529.87 Q302.081 1522.75 300.253 1519.2 Q298.447 1515.64 294.813 1515.64 M294.813 1511.93 Q300.623 1511.93 303.679 1516.54 Q306.757 1521.12 306.757 1529.87 Q306.757 1538.6 303.679 1543.21 Q300.623 1547.79 294.813 1547.79 Q289.003 1547.79 285.924 1543.21 Q282.869 1538.6 282.869 1529.87 Q282.869 1521.12 285.924 1516.54 Q289.003 1511.93 294.813 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M781.151 1543.18 L797.471 1543.18 L797.471 1547.12 L775.526 1547.12 L775.526 1543.18 Q778.188 1540.43 782.772 1535.8 Q787.378 1531.15 788.559 1529.81 Q790.804 1527.28 791.684 1525.55 Q792.586 1523.79 792.586 1522.1 Q792.586 1519.34 790.642 1517.61 Q788.721 1515.87 785.619 1515.87 Q783.42 1515.87 780.966 1516.63 Q778.535 1517.4 775.758 1518.95 L775.758 1514.23 Q778.582 1513.09 781.035 1512.51 Q783.489 1511.93 785.526 1511.93 Q790.897 1511.93 794.091 1514.62 Q797.285 1517.31 797.285 1521.8 Q797.285 1523.93 796.475 1525.85 Q795.688 1527.74 793.582 1530.34 Q793.003 1531.01 789.901 1534.23 Q786.799 1537.42 781.151 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M802.586 1512.56 L820.943 1512.56 L820.943 1516.5 L806.869 1516.5 L806.869 1524.97 Q807.887 1524.62 808.906 1524.46 Q809.924 1524.27 810.943 1524.27 Q816.73 1524.27 820.109 1527.44 Q823.489 1530.62 823.489 1536.03 Q823.489 1541.61 820.017 1544.71 Q816.545 1547.79 810.225 1547.79 Q808.049 1547.79 805.781 1547.42 Q803.535 1547.05 801.128 1546.31 L801.128 1541.61 Q803.211 1542.74 805.433 1543.3 Q807.656 1543.86 810.133 1543.86 Q814.137 1543.86 816.475 1541.75 Q818.813 1539.64 818.813 1536.03 Q818.813 1532.42 816.475 1530.31 Q814.137 1528.21 810.133 1528.21 Q808.258 1528.21 806.383 1528.62 Q804.531 1529.04 802.586 1529.92 L802.586 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M1280.97 1512.56 L1299.33 1512.56 L1299.33 1516.5 L1285.26 1516.5 L1285.26 1524.97 Q1286.27 1524.62 1287.29 1524.46 Q1288.31 1524.27 1289.33 1524.27 Q1295.12 1524.27 1298.5 1527.44 Q1301.88 1530.62 1301.88 1536.03 Q1301.88 1541.61 1298.4 1544.71 Q1294.93 1547.79 1288.61 1547.79 Q1286.44 1547.79 1284.17 1547.42 Q1281.92 1547.05 1279.51 1546.31 L1279.51 1541.61 Q1281.6 1542.74 1283.82 1543.3 Q1286.04 1543.86 1288.52 1543.86 Q1292.52 1543.86 1294.86 1541.75 Q1297.2 1539.64 1297.2 1536.03 Q1297.2 1532.42 1294.86 1530.31 Q1292.52 1528.21 1288.52 1528.21 Q1286.64 1528.21 1284.77 1528.62 Q1282.92 1529.04 1280.97 1529.92 L1280.97 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M1316.95 1515.64 Q1313.33 1515.64 1311.51 1519.2 Q1309.7 1522.75 1309.7 1529.87 Q1309.7 1536.98 1311.51 1540.55 Q1313.33 1544.09 1316.95 1544.09 Q1320.58 1544.09 1322.39 1540.55 Q1324.21 1536.98 1324.21 1529.87 Q1324.21 1522.75 1322.39 1519.2 Q1320.58 1515.64 1316.95 1515.64 M1316.95 1511.93 Q1322.76 1511.93 1325.81 1516.54 Q1328.89 1521.12 1328.89 1529.87 Q1328.89 1538.6 1325.81 1543.21 Q1322.76 1547.79 1316.95 1547.79 Q1311.14 1547.79 1308.06 1543.21 Q1305 1538.6 1305 1529.87 Q1305 1521.12 1308.06 1516.54 Q1311.14 1511.93 1316.95 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M1784.78 1512.56 L1807 1512.56 L1807 1514.55 L1794.45 1547.12 L1789.57 1547.12 L1801.37 1516.5 L1784.78 1516.5 L1784.78 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M1812.11 1512.56 L1830.47 1512.56 L1830.47 1516.5 L1816.4 1516.5 L1816.4 1524.97 Q1817.42 1524.62 1818.43 1524.46 Q1819.45 1524.27 1820.47 1524.27 Q1826.26 1524.27 1829.64 1527.44 Q1833.02 1530.62 1833.02 1536.03 Q1833.02 1541.61 1829.54 1544.71 Q1826.07 1547.79 1819.75 1547.79 Q1817.58 1547.79 1815.31 1547.42 Q1813.06 1547.05 1810.66 1546.31 L1810.66 1541.61 Q1812.74 1542.74 1814.96 1543.3 Q1817.18 1543.86 1819.66 1543.86 Q1823.67 1543.86 1826 1541.75 Q1828.34 1539.64 1828.34 1536.03 Q1828.34 1532.42 1826 1530.31 Q1823.67 1528.21 1819.66 1528.21 Q1817.79 1528.21 1815.91 1528.62 Q1814.06 1529.04 1812.11 1529.92 L1812.11 1512.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M2276.96 1543.18 L2284.6 1543.18 L2284.6 1516.82 L2276.29 1518.49 L2276.29 1514.23 L2284.55 1512.56 L2289.23 1512.56 L2289.23 1543.18 L2296.87 1543.18 L2296.87 1547.12 L2276.96 1547.12 L2276.96 1543.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M2311.94 1515.64 Q2308.33 1515.64 2306.5 1519.2 Q2304.69 1522.75 2304.69 1529.87 Q2304.69 1536.98 2306.5 1540.55 Q2308.33 1544.09 2311.94 1544.09 Q2315.57 1544.09 2317.38 1540.55 Q2319.2 1536.98 2319.2 1529.87 Q2319.2 1522.75 2317.38 1519.2 Q2315.57 1515.64 2311.94 1515.64 M2311.94 1511.93 Q2317.75 1511.93 2320.8 1516.54 Q2323.88 1521.12 2323.88 1529.87 Q2323.88 1538.6 2320.8 1543.21 Q2317.75 1547.79 2311.94 1547.79 Q2306.13 1547.79 2303.05 1543.21 Q2299.99 1538.6 2299.99 1529.87 Q2299.99 1521.12 2303.05 1516.54 Q2306.13 1511.93 2311.94 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M2338.95 1515.64 Q2335.34 1515.64 2333.51 1519.2 Q2331.7 1522.75 2331.7 1529.87 Q2331.7 1536.98 2333.51 1540.55 Q2335.34 1544.09 2338.95 1544.09 Q2342.58 1544.09 2344.39 1540.55 Q2346.22 1536.98 2346.22 1529.87 Q2346.22 1522.75 2344.39 1519.2 Q2342.58 1515.64 2338.95 1515.64 M2338.95 1511.93 Q2344.76 1511.93 2347.82 1516.54 Q2350.89 1521.12 2350.89 1529.87 Q2350.89 1538.6 2347.82 1543.21 Q2344.76 1547.79 2338.95 1547.79 Q2333.14 1547.79 2330.06 1543.21 Q2327.01 1538.6 2327.01 1529.87 Q2327.01 1521.12 2330.06 1516.54 Q2333.14 1511.93 2338.95 1511.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  255.649,1463.87 2352.76,1463.87 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  255.649,1252.24 2352.76,1252.24 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  255.649,1040.62 2352.76,1040.62 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  255.649,828.999 2352.76,828.999 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  255.649,617.376 2352.76,617.376 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  255.649,405.754 2352.76,405.754 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  255.649,194.132 2352.76,194.132 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  255.649,1486.45 255.649,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  255.649,1463.87 280.814,1463.87 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  255.649,1252.24 280.814,1252.24 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  255.649,1040.62 280.814,1040.62 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  255.649,828.999 280.814,828.999 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  255.649,617.376 280.814,617.376 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  255.649,405.754 280.814,405.754 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  255.649,194.132 280.814,194.132 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip700)\" d=\"M 0 0 M207.704 1449.66 Q204.093 1449.66 202.264 1453.23 Q200.459 1456.77 200.459 1463.9 Q200.459 1471.01 202.264 1474.57 Q204.093 1478.11 207.704 1478.11 Q211.338 1478.11 213.144 1474.57 Q214.973 1471.01 214.973 1463.9 Q214.973 1456.77 213.144 1453.23 Q211.338 1449.66 207.704 1449.66 M207.704 1445.96 Q213.514 1445.96 216.57 1450.57 Q219.649 1455.15 219.649 1463.9 Q219.649 1472.63 216.57 1477.23 Q213.514 1481.82 207.704 1481.82 Q201.894 1481.82 198.815 1477.23 Q195.76 1472.63 195.76 1463.9 Q195.76 1455.15 198.815 1450.57 Q201.894 1445.96 207.704 1445.96 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M59.8578 1272.04 L76.1772 1272.04 L76.1772 1275.97 L54.2328 1275.97 L54.2328 1272.04 Q56.8949 1269.28 61.4782 1264.65 Q66.0846 1260 67.2652 1258.66 Q69.5105 1256.13 70.3902 1254.4 Q71.2929 1252.64 71.2929 1250.95 Q71.2929 1248.19 69.3485 1246.46 Q67.4272 1244.72 64.3254 1244.72 Q62.1263 1244.72 59.6726 1245.49 Q57.2421 1246.25 54.4643 1247.8 L54.4643 1243.08 Q57.2884 1241.94 59.7421 1241.37 Q62.1958 1240.79 64.2328 1240.79 Q69.6031 1240.79 72.7976 1243.47 Q75.992 1246.16 75.992 1250.65 Q75.992 1252.78 75.1818 1254.7 Q74.3948 1256.6 72.2883 1259.19 Q71.7096 1259.86 68.6078 1263.08 Q65.5059 1266.27 59.8578 1272.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M81.2466 1270.09 L86.1308 1270.09 L86.1308 1275.97 L81.2466 1275.97 L81.2466 1270.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M101.2 1244.49 Q97.5891 1244.49 95.7604 1248.05 Q93.9549 1251.6 93.9549 1258.73 Q93.9549 1265.83 95.7604 1269.4 Q97.5891 1272.94 101.2 1272.94 Q104.834 1272.94 106.64 1269.4 Q108.469 1265.83 108.469 1258.73 Q108.469 1251.6 106.64 1248.05 Q104.834 1244.49 101.2 1244.49 M101.2 1240.79 Q107.01 1240.79 110.066 1245.39 Q113.145 1249.98 113.145 1258.73 Q113.145 1267.45 110.066 1272.06 Q107.01 1276.64 101.2 1276.64 Q95.39 1276.64 92.3113 1272.06 Q89.2558 1267.45 89.2558 1258.73 Q89.2558 1249.98 92.3113 1245.39 Q95.39 1240.79 101.2 1240.79 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M146.385 1250.51 L135.806 1261.13 L146.385 1271.71 L143.631 1274.51 L133.006 1263.89 L122.381 1274.51 L119.649 1271.71 L130.205 1261.13 L119.649 1250.51 L122.381 1247.71 L133.006 1258.33 L143.631 1247.71 L146.385 1250.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M152.265 1272.04 L159.904 1272.04 L159.904 1245.67 L151.593 1247.34 L151.593 1243.08 L159.857 1241.41 L164.533 1241.41 L164.533 1272.04 L172.172 1272.04 L172.172 1275.97 L152.265 1275.97 L152.265 1272.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M187.241 1244.49 Q183.63 1244.49 181.802 1248.05 Q179.996 1251.6 179.996 1258.73 Q179.996 1265.83 181.802 1269.4 Q183.63 1272.94 187.241 1272.94 Q190.876 1272.94 192.681 1269.4 Q194.51 1265.83 194.51 1258.73 Q194.51 1251.6 192.681 1248.05 Q190.876 1244.49 187.241 1244.49 M187.241 1240.79 Q193.052 1240.79 196.107 1245.39 Q199.186 1249.98 199.186 1258.73 Q199.186 1267.45 196.107 1272.06 Q193.052 1276.64 187.241 1276.64 Q181.431 1276.64 178.353 1272.06 Q175.297 1267.45 175.297 1258.73 Q175.297 1249.98 178.353 1245.39 Q181.431 1240.79 187.241 1240.79 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M211.862 1223.79 L202.27 1238.78 L211.862 1238.78 L211.862 1223.79 M210.865 1220.48 L215.643 1220.48 L215.643 1238.78 L219.649 1238.78 L219.649 1241.94 L215.643 1241.94 L215.643 1248.56 L211.862 1248.56 L211.862 1241.94 L199.186 1241.94 L199.186 1238.27 L210.865 1220.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M66.5939 1033.86 L54.7884 1052.31 L66.5939 1052.31 L66.5939 1033.86 M65.367 1029.79 L71.2466 1029.79 L71.2466 1052.31 L76.1772 1052.31 L76.1772 1056.2 L71.2466 1056.2 L71.2466 1064.35 L66.5939 1064.35 L66.5939 1056.2 L50.9921 1056.2 L50.9921 1051.69 L65.367 1029.79 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M81.2466 1058.47 L86.1308 1058.47 L86.1308 1064.35 L81.2466 1064.35 L81.2466 1058.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M101.2 1032.87 Q97.5891 1032.87 95.7604 1036.43 Q93.9549 1039.97 93.9549 1047.1 Q93.9549 1054.21 95.7604 1057.77 Q97.5891 1061.32 101.2 1061.32 Q104.834 1061.32 106.64 1057.77 Q108.469 1054.21 108.469 1047.1 Q108.469 1039.97 106.64 1036.43 Q104.834 1032.87 101.2 1032.87 M101.2 1029.16 Q107.01 1029.16 110.066 1033.77 Q113.145 1038.35 113.145 1047.1 Q113.145 1055.83 110.066 1060.44 Q107.01 1065.02 101.2 1065.02 Q95.39 1065.02 92.3113 1060.44 Q89.2558 1055.83 89.2558 1047.1 Q89.2558 1038.35 92.3113 1033.77 Q95.39 1029.16 101.2 1029.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M146.385 1038.89 L135.806 1049.51 L146.385 1060.09 L143.631 1062.89 L133.006 1052.27 L122.381 1062.89 L119.649 1060.09 L130.205 1049.51 L119.649 1038.89 L122.381 1036.09 L133.006 1046.71 L143.631 1036.09 L146.385 1038.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M152.265 1060.41 L159.904 1060.41 L159.904 1034.05 L151.593 1035.71 L151.593 1031.46 L159.857 1029.79 L164.533 1029.79 L164.533 1060.41 L172.172 1060.41 L172.172 1064.35 L152.265 1064.35 L152.265 1060.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M187.241 1032.87 Q183.63 1032.87 181.802 1036.43 Q179.996 1039.97 179.996 1047.1 Q179.996 1054.21 181.802 1057.77 Q183.63 1061.32 187.241 1061.32 Q190.876 1061.32 192.681 1057.77 Q194.51 1054.21 194.51 1047.1 Q194.51 1039.97 192.681 1036.43 Q190.876 1032.87 187.241 1032.87 M187.241 1029.16 Q193.052 1029.16 196.107 1033.77 Q199.186 1038.35 199.186 1047.1 Q199.186 1055.83 196.107 1060.44 Q193.052 1065.02 187.241 1065.02 Q181.431 1065.02 178.353 1060.44 Q175.297 1055.83 175.297 1047.1 Q175.297 1038.35 178.353 1033.77 Q181.431 1029.16 187.241 1029.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M211.862 1012.17 L202.27 1027.16 L211.862 1027.16 L211.862 1012.17 M210.865 1008.86 L215.643 1008.86 L215.643 1027.16 L219.649 1027.16 L219.649 1030.32 L215.643 1030.32 L215.643 1036.94 L211.862 1036.94 L211.862 1030.32 L199.186 1030.32 L199.186 1026.65 L210.865 1008.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M64.6495 833.583 Q61.5013 833.583 59.6495 835.736 Q57.8208 837.889 57.8208 841.639 Q57.8208 845.365 59.6495 847.541 Q61.5013 849.694 64.6495 849.694 Q67.7976 849.694 69.6263 847.541 Q71.4781 845.365 71.4781 841.639 Q71.4781 837.889 69.6263 835.736 Q67.7976 833.583 64.6495 833.583 M73.9318 818.93 L73.9318 823.19 Q72.1726 822.356 70.367 821.916 Q68.5846 821.477 66.8254 821.477 Q62.1958 821.477 59.7421 824.602 Q57.3115 827.727 56.9643 834.046 Q58.33 832.032 60.3902 830.967 Q62.4504 829.879 64.9272 829.879 Q70.1355 829.879 73.1448 833.051 Q76.1772 836.199 76.1772 841.639 Q76.1772 846.963 73.029 850.18 Q69.8809 853.398 64.6495 853.398 Q58.6541 853.398 55.4828 848.814 Q52.3116 844.208 52.3116 835.481 Q52.3116 827.287 56.2004 822.426 Q60.0893 817.541 66.6402 817.541 Q68.3994 817.541 70.1818 817.889 Q71.9874 818.236 73.9318 818.93 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M81.2466 846.847 L86.1308 846.847 L86.1308 852.726 L81.2466 852.726 L81.2466 846.847 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M101.2 821.245 Q97.5891 821.245 95.7604 824.81 Q93.9549 828.352 93.9549 835.481 Q93.9549 842.588 95.7604 846.152 Q97.5891 849.694 101.2 849.694 Q104.834 849.694 106.64 846.152 Q108.469 842.588 108.469 835.481 Q108.469 828.352 106.64 824.81 Q104.834 821.245 101.2 821.245 M101.2 817.541 Q107.01 817.541 110.066 822.148 Q113.145 826.731 113.145 835.481 Q113.145 844.208 110.066 848.814 Q107.01 853.398 101.2 853.398 Q95.39 853.398 92.3113 848.814 Q89.2558 844.208 89.2558 835.481 Q89.2558 826.731 92.3113 822.148 Q95.39 817.541 101.2 817.541 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M146.385 827.264 L135.806 837.889 L146.385 848.467 L143.631 851.268 L133.006 840.643 L122.381 851.268 L119.649 848.467 L130.205 837.889 L119.649 827.264 L122.381 824.463 L133.006 835.088 L143.631 824.463 L146.385 827.264 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M152.265 848.791 L159.904 848.791 L159.904 822.426 L151.593 824.092 L151.593 819.833 L159.857 818.166 L164.533 818.166 L164.533 848.791 L172.172 848.791 L172.172 852.726 L152.265 852.726 L152.265 848.791 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M187.241 821.245 Q183.63 821.245 181.802 824.81 Q179.996 828.352 179.996 835.481 Q179.996 842.588 181.802 846.152 Q183.63 849.694 187.241 849.694 Q190.876 849.694 192.681 846.152 Q194.51 842.588 194.51 835.481 Q194.51 828.352 192.681 824.81 Q190.876 821.245 187.241 821.245 M187.241 817.541 Q193.052 817.541 196.107 822.148 Q199.186 826.731 199.186 835.481 Q199.186 844.208 196.107 848.814 Q193.052 853.398 187.241 853.398 Q181.431 853.398 178.353 848.814 Q175.297 844.208 175.297 835.481 Q175.297 826.731 178.353 822.148 Q181.431 817.541 187.241 817.541 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M211.862 800.546 L202.27 815.536 L211.862 815.536 L211.862 800.546 M210.865 797.236 L215.643 797.236 L215.643 815.536 L219.649 815.536 L219.649 818.696 L215.643 818.696 L215.643 825.316 L211.862 825.316 L211.862 818.696 L199.186 818.696 L199.186 815.028 L210.865 797.236 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M64.3254 624.692 Q60.9921 624.692 59.0708 626.474 Q57.1726 628.257 57.1726 631.382 Q57.1726 634.507 59.0708 636.289 Q60.9921 638.072 64.3254 638.072 Q67.6587 638.072 69.58 636.289 Q71.5013 634.484 71.5013 631.382 Q71.5013 628.257 69.58 626.474 Q67.6819 624.692 64.3254 624.692 M59.6495 622.701 Q56.6402 621.961 54.9504 619.9 Q53.2838 617.84 53.2838 614.877 Q53.2838 610.734 56.2236 608.326 Q59.1865 605.919 64.3254 605.919 Q69.4874 605.919 72.4272 608.326 Q75.367 610.734 75.367 614.877 Q75.367 617.84 73.6772 619.9 Q72.0105 621.961 69.0244 622.701 Q72.404 623.488 74.279 625.78 Q76.1772 628.072 76.1772 631.382 Q76.1772 636.405 73.0985 639.09 Q70.0429 641.775 64.3254 641.775 Q58.6078 641.775 55.5291 639.09 Q52.4736 636.405 52.4736 631.382 Q52.4736 628.072 54.3717 625.78 Q56.2699 623.488 59.6495 622.701 M57.9365 615.317 Q57.9365 618.002 59.6032 619.507 Q61.293 621.012 64.3254 621.012 Q67.3346 621.012 69.0244 619.507 Q70.7374 618.002 70.7374 615.317 Q70.7374 612.632 69.0244 611.127 Q67.3346 609.623 64.3254 609.623 Q61.293 609.623 59.6032 611.127 Q57.9365 612.632 57.9365 615.317 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M81.2466 635.224 L86.1308 635.224 L86.1308 641.104 L81.2466 641.104 L81.2466 635.224 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M101.2 609.623 Q97.5891 609.623 95.7604 613.187 Q93.9549 616.729 93.9549 623.859 Q93.9549 630.965 95.7604 634.53 Q97.5891 638.072 101.2 638.072 Q104.834 638.072 106.64 634.53 Q108.469 630.965 108.469 623.859 Q108.469 616.729 106.64 613.187 Q104.834 609.623 101.2 609.623 M101.2 605.919 Q107.01 605.919 110.066 610.525 Q113.145 615.109 113.145 623.859 Q113.145 632.586 110.066 637.192 Q107.01 641.775 101.2 641.775 Q95.39 641.775 92.3113 637.192 Q89.2558 632.586 89.2558 623.859 Q89.2558 615.109 92.3113 610.525 Q95.39 605.919 101.2 605.919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M146.385 615.641 L135.806 626.266 L146.385 636.845 L143.631 639.646 L133.006 629.021 L122.381 639.646 L119.649 636.845 L130.205 626.266 L119.649 615.641 L122.381 612.84 L133.006 623.465 L143.631 612.84 L146.385 615.641 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M152.265 637.169 L159.904 637.169 L159.904 610.803 L151.593 612.47 L151.593 608.211 L159.857 606.544 L164.533 606.544 L164.533 637.169 L172.172 637.169 L172.172 641.104 L152.265 641.104 L152.265 637.169 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M187.241 609.623 Q183.63 609.623 181.802 613.187 Q179.996 616.729 179.996 623.859 Q179.996 630.965 181.802 634.53 Q183.63 638.072 187.241 638.072 Q190.876 638.072 192.681 634.53 Q194.51 630.965 194.51 623.859 Q194.51 616.729 192.681 613.187 Q190.876 609.623 187.241 609.623 M187.241 605.919 Q193.052 605.919 196.107 610.525 Q199.186 615.109 199.186 623.859 Q199.186 632.586 196.107 637.192 Q193.052 641.775 187.241 641.775 Q181.431 641.775 178.353 637.192 Q175.297 632.586 175.297 623.859 Q175.297 615.109 178.353 610.525 Q181.431 605.919 187.241 605.919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M211.862 588.924 L202.27 603.914 L211.862 603.914 L211.862 588.924 M210.865 585.614 L215.643 585.614 L215.643 603.914 L219.649 603.914 L219.649 607.073 L215.643 607.073 L215.643 613.694 L211.862 613.694 L211.862 607.073 L199.186 607.073 L199.186 603.406 L210.865 585.614 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M58.5644 425.546 L66.2033 425.546 L66.2033 399.181 L57.8931 400.847 L57.8931 396.588 L66.157 394.922 L70.8329 394.922 L70.8329 425.546 L78.4717 425.546 L78.4717 429.482 L58.5644 429.482 L58.5644 425.546 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M83.5411 423.602 L88.4254 423.602 L88.4254 429.482 L83.5411 429.482 L83.5411 423.602 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M103.495 398 Q99.8836 398 98.055 401.565 Q96.2494 405.107 96.2494 412.236 Q96.2494 419.343 98.055 422.908 Q99.8836 426.449 103.495 426.449 Q107.129 426.449 108.935 422.908 Q110.763 419.343 110.763 412.236 Q110.763 405.107 108.935 401.565 Q107.129 398 103.495 398 M103.495 394.297 Q109.305 394.297 112.36 398.903 Q115.439 403.486 115.439 412.236 Q115.439 420.963 112.36 425.57 Q109.305 430.153 103.495 430.153 Q97.6846 430.153 94.6059 425.57 Q91.5504 420.963 91.5504 412.236 Q91.5504 403.486 94.6059 398.903 Q97.6846 394.297 103.495 394.297 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M148.68 404.019 L138.101 414.644 L148.68 425.222 L145.925 428.023 L135.3 417.398 L124.675 428.023 L121.944 425.222 L132.499 414.644 L121.944 404.019 L124.675 401.218 L135.3 411.843 L145.925 401.218 L148.68 404.019 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M154.559 425.546 L162.198 425.546 L162.198 399.181 L153.888 400.847 L153.888 396.588 L162.152 394.922 L166.828 394.922 L166.828 425.546 L174.467 425.546 L174.467 429.482 L154.559 429.482 L154.559 425.546 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M189.536 398 Q185.925 398 184.096 401.565 Q182.291 405.107 182.291 412.236 Q182.291 419.343 184.096 422.908 Q185.925 426.449 189.536 426.449 Q193.17 426.449 194.976 422.908 Q196.804 419.343 196.804 412.236 Q196.804 405.107 194.976 401.565 Q193.17 398 189.536 398 M189.536 394.297 Q195.346 394.297 198.402 398.903 Q201.48 403.486 201.48 412.236 Q201.48 420.963 198.402 425.57 Q195.346 430.153 189.536 430.153 Q183.726 430.153 180.647 425.57 Q177.592 420.963 177.592 412.236 Q177.592 403.486 180.647 398.903 Q183.726 394.297 189.536 394.297 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M202.665 373.991 L217.58 373.991 L217.58 377.188 L206.145 377.188 L206.145 384.072 Q206.972 383.79 207.8 383.658 Q208.627 383.508 209.455 383.508 Q214.157 383.508 216.903 386.085 Q219.649 388.661 219.649 393.062 Q219.649 397.595 216.827 400.115 Q214.006 402.617 208.872 402.617 Q207.104 402.617 205.261 402.316 Q203.436 402.015 201.48 401.413 L201.48 397.595 Q203.173 398.516 204.979 398.968 Q206.784 399.419 208.797 399.419 Q212.05 399.419 213.95 397.708 Q215.849 395.996 215.849 393.062 Q215.849 390.128 213.95 388.417 Q212.05 386.705 208.797 386.705 Q207.273 386.705 205.75 387.044 Q204.245 387.382 202.665 388.097 L202.665 373.991 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M60.1616 213.924 L67.8005 213.924 L67.8005 187.558 L59.4903 189.225 L59.4903 184.966 L67.7542 183.299 L72.4301 183.299 L72.4301 213.924 L80.0689 213.924 L80.0689 217.859 L60.1616 217.859 L60.1616 213.924 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M85.1384 211.98 L90.0226 211.98 L90.0226 217.859 L85.1384 217.859 L85.1384 211.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M99.1198 213.924 L115.439 213.924 L115.439 217.859 L93.4948 217.859 L93.4948 213.924 Q96.1568 211.169 100.74 206.54 Q105.347 201.887 106.527 200.544 Q108.772 198.021 109.652 196.285 Q110.555 194.526 110.555 192.836 Q110.555 190.081 108.61 188.345 Q106.689 186.609 103.587 186.609 Q101.388 186.609 98.9346 187.373 Q96.504 188.137 93.7263 189.688 L93.7263 184.966 Q96.5503 183.832 99.004 183.253 Q101.458 182.674 103.495 182.674 Q108.865 182.674 112.06 185.359 Q115.254 188.044 115.254 192.535 Q115.254 194.665 114.444 196.586 Q113.657 198.484 111.55 201.077 Q110.972 201.748 107.87 204.966 Q104.768 208.16 99.1198 213.924 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M148.68 192.396 L138.101 203.021 L148.68 213.6 L145.925 216.401 L135.3 205.776 L124.675 216.401 L121.944 213.6 L132.499 203.021 L121.944 192.396 L124.675 189.595 L135.3 200.22 L145.925 189.595 L148.68 192.396 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M154.559 213.924 L162.198 213.924 L162.198 187.558 L153.888 189.225 L153.888 184.966 L162.152 183.299 L166.828 183.299 L166.828 213.924 L174.467 213.924 L174.467 217.859 L154.559 217.859 L154.559 213.924 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M189.536 186.378 Q185.925 186.378 184.096 189.943 Q182.291 193.484 182.291 200.614 Q182.291 207.72 184.096 211.285 Q185.925 214.827 189.536 214.827 Q193.17 214.827 194.976 211.285 Q196.804 207.72 196.804 200.614 Q196.804 193.484 194.976 189.943 Q193.17 186.378 189.536 186.378 M189.536 182.674 Q195.346 182.674 198.402 187.281 Q201.48 191.864 201.48 200.614 Q201.48 209.341 198.402 213.947 Q195.346 218.53 189.536 218.53 Q183.726 218.53 180.647 213.947 Q177.592 209.341 177.592 200.614 Q177.592 191.864 180.647 187.281 Q183.726 182.674 189.536 182.674 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M202.665 162.369 L217.58 162.369 L217.58 165.566 L206.145 165.566 L206.145 172.45 Q206.972 172.168 207.8 172.036 Q208.627 171.885 209.455 171.885 Q214.157 171.885 216.903 174.462 Q219.649 177.039 219.649 181.44 Q219.649 185.972 216.827 188.493 Q214.006 190.994 208.872 190.994 Q207.104 190.994 205.261 190.693 Q203.436 190.392 201.48 189.79 L201.48 185.972 Q203.173 186.894 204.979 187.345 Q206.784 187.797 208.797 187.797 Q212.05 187.797 213.95 186.085 Q215.849 184.374 215.849 181.44 Q215.849 178.506 213.95 176.794 Q212.05 175.083 208.797 175.083 Q207.273 175.083 205.75 175.421 Q204.245 175.76 202.665 176.475 L202.665 162.369 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M1050.55 76.7889 Q1047.4 84.8907 1044.4 87.3618 Q1041.4 89.8329 1036.38 89.8329 L1030.42 89.8329 L1030.42 83.5945 L1034.8 83.5945 Q1037.88 83.5945 1039.58 82.1361 Q1041.28 80.6778 1043.34 75.2496 L1044.68 71.8468 L1026.33 27.2059 L1034.23 27.2059 L1048.41 62.6918 L1062.59 27.2059 L1070.49 27.2059 L1050.55 76.7889 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M1095.88 32.4315 Q1089.89 32.4315 1086.41 37.1306 Q1082.92 41.7891 1082.92 49.9314 Q1082.92 58.0738 1086.36 62.7728 Q1089.85 67.4314 1095.88 67.4314 Q1101.84 67.4314 1105.32 62.7323 Q1108.81 58.0333 1108.81 49.9314 Q1108.81 41.8701 1105.32 37.1711 Q1101.84 32.4315 1095.88 32.4315 M1095.88 26.1121 Q1105.61 26.1121 1111.16 32.4315 Q1116.71 38.7509 1116.71 49.9314 Q1116.71 61.0714 1111.16 67.4314 Q1105.61 73.7508 1095.88 73.7508 Q1086.12 73.7508 1080.57 67.4314 Q1075.06 61.0714 1075.06 49.9314 Q1075.06 38.7509 1080.57 32.4315 Q1086.12 26.1121 1095.88 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M1123.75 54.671 L1123.75 27.2059 L1131.21 27.2059 L1131.21 54.3874 Q1131.21 60.8284 1133.72 64.0691 Q1136.23 67.2693 1141.25 67.2693 Q1147.29 67.2693 1150.77 63.421 Q1154.3 59.5726 1154.3 52.9291 L1154.3 27.2059 L1161.75 27.2059 L1161.75 72.576 L1154.3 72.576 L1154.3 65.6084 Q1151.58 69.7404 1147.98 71.7658 Q1144.41 73.7508 1139.67 73.7508 Q1131.86 73.7508 1127.81 68.8897 Q1123.75 64.0286 1123.75 54.671 M1142.51 26.1121 L1142.51 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M1199.43 49.3643 Q1199.43 41.2625 1196.06 36.8065 Q1192.74 32.3505 1186.71 32.3505 Q1180.71 32.3505 1177.35 36.8065 Q1174.03 41.2625 1174.03 49.3643 Q1174.03 57.4256 1177.35 61.8816 Q1180.71 66.3376 1186.71 66.3376 Q1192.74 66.3376 1196.06 61.8816 Q1199.43 57.4256 1199.43 49.3643 M1206.88 66.9452 Q1206.88 78.5308 1201.73 84.1616 Q1196.59 89.8329 1185.98 89.8329 Q1182.05 89.8329 1178.56 89.2252 Q1175.08 88.6581 1171.8 87.4428 L1171.8 80.1917 Q1175.08 81.9741 1178.28 82.8248 Q1181.48 83.6755 1184.8 83.6755 Q1192.13 83.6755 1195.78 79.8271 Q1199.43 76.0193 1199.43 68.282 L1199.43 64.5957 Q1197.12 68.6061 1193.51 70.5911 Q1189.91 72.576 1184.88 72.576 Q1176.54 72.576 1171.43 66.2161 Q1166.33 59.8562 1166.33 49.3643 Q1166.33 38.832 1171.43 32.472 Q1176.54 26.1121 1184.88 26.1121 Q1189.91 26.1121 1193.51 28.0971 Q1197.12 30.082 1199.43 34.0924 L1199.43 27.2059 L1206.88 27.2059 L1206.88 66.9452 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M1243.62 28.5427 L1243.62 35.5912 Q1240.46 33.9709 1237.06 33.1607 Q1233.66 32.3505 1230.01 32.3505 Q1224.46 32.3505 1221.67 34.0519 Q1218.91 35.7533 1218.91 39.156 Q1218.91 41.7486 1220.9 43.2475 Q1222.88 44.7058 1228.88 46.0426 L1231.43 46.6097 Q1239.37 48.3111 1242.69 51.4303 Q1246.05 54.509 1246.05 60.0587 Q1246.05 66.3781 1241.03 70.0644 Q1236.05 73.7508 1227.3 73.7508 Q1223.65 73.7508 1219.68 73.0216 Q1215.75 72.3329 1211.38 70.9151 L1211.38 63.2184 Q1215.51 65.3654 1219.52 66.4591 Q1223.53 67.5124 1227.46 67.5124 Q1232.72 67.5124 1235.56 65.73 Q1238.4 63.9071 1238.4 60.6258 Q1238.4 57.5877 1236.33 55.9673 Q1234.3 54.3469 1227.38 52.8481 L1224.78 52.2405 Q1217.86 50.7821 1214.78 47.7845 Q1211.7 44.7463 1211.7 39.4801 Q1211.7 33.0797 1216.24 29.5959 Q1220.77 26.1121 1229.12 26.1121 Q1233.25 26.1121 1236.9 26.7198 Q1240.54 27.3274 1243.62 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M1315.57 35.9153 Q1318.36 30.8922 1322.25 28.5022 Q1326.14 26.1121 1331.4 26.1121 Q1338.49 26.1121 1342.34 31.0947 Q1346.19 36.0368 1346.19 45.1919 L1346.19 72.576 L1338.7 72.576 L1338.7 45.4349 Q1338.7 38.913 1336.39 35.7533 Q1334.08 32.5936 1329.34 32.5936 Q1323.55 32.5936 1320.18 36.4419 Q1316.82 40.2903 1316.82 46.9338 L1316.82 72.576 L1309.33 72.576 L1309.33 45.4349 Q1309.33 38.8725 1307.02 35.7533 Q1304.71 32.5936 1299.89 32.5936 Q1294.18 32.5936 1290.81 36.4824 Q1287.45 40.3308 1287.45 46.9338 L1287.45 72.576 L1279.96 72.576 L1279.96 27.2059 L1287.45 27.2059 L1287.45 34.2544 Q1290 30.082 1293.57 28.0971 Q1297.13 26.1121 1302.04 26.1121 Q1306.98 26.1121 1310.42 28.6237 Q1313.9 31.1352 1315.57 35.9153 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M1371.59 32.4315 Q1365.59 32.4315 1362.11 37.1306 Q1358.63 41.7891 1358.63 49.9314 Q1358.63 58.0738 1362.07 62.7728 Q1365.55 67.4314 1371.59 67.4314 Q1377.54 67.4314 1381.03 62.7323 Q1384.51 58.0333 1384.51 49.9314 Q1384.51 41.8701 1381.03 37.1711 Q1377.54 32.4315 1371.59 32.4315 M1371.59 26.1121 Q1381.31 26.1121 1386.86 32.4315 Q1392.41 38.7509 1392.41 49.9314 Q1392.41 61.0714 1386.86 67.4314 Q1381.31 73.7508 1371.59 73.7508 Q1361.83 73.7508 1356.28 67.4314 Q1350.77 61.0714 1350.77 49.9314 Q1350.77 38.7509 1356.28 32.4315 Q1361.83 26.1121 1371.59 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M1430.08 34.0924 L1430.08 9.54393 L1437.54 9.54393 L1437.54 72.576 L1430.08 72.576 L1430.08 65.7705 Q1427.73 69.8214 1424.13 71.8063 Q1420.56 73.7508 1415.54 73.7508 Q1407.32 73.7508 1402.13 67.1883 Q1396.99 60.6258 1396.99 49.9314 Q1396.99 39.2371 1402.13 32.6746 Q1407.32 26.1121 1415.54 26.1121 Q1420.56 26.1121 1424.13 28.0971 Q1427.73 30.0415 1430.08 34.0924 M1404.68 49.9314 Q1404.68 58.1548 1408.05 62.8538 Q1411.45 67.5124 1417.36 67.5124 Q1423.28 67.5124 1426.68 62.8538 Q1430.08 58.1548 1430.08 49.9314 Q1430.08 41.7081 1426.68 37.0496 Q1423.28 32.3505 1417.36 32.3505 Q1411.45 32.3505 1408.05 37.0496 Q1404.68 41.7081 1404.68 49.9314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M1444.59 54.671 L1444.59 27.2059 L1452.04 27.2059 L1452.04 54.3874 Q1452.04 60.8284 1454.55 64.0691 Q1457.06 67.2693 1462.09 67.2693 Q1468.12 67.2693 1471.61 63.421 Q1475.13 59.5726 1475.13 52.9291 L1475.13 27.2059 L1482.58 27.2059 L1482.58 72.576 L1475.13 72.576 L1475.13 65.6084 Q1472.42 69.7404 1468.81 71.7658 Q1465.25 73.7508 1460.51 73.7508 Q1452.69 73.7508 1448.64 68.8897 Q1444.59 64.0286 1444.59 54.671 M1463.34 26.1121 L1463.34 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M1490.4 9.54393 L1497.86 9.54393 L1497.86 72.576 L1490.4 72.576 L1490.4 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M1504.9 54.671 L1504.9 27.2059 L1512.36 27.2059 L1512.36 54.3874 Q1512.36 60.8284 1514.87 64.0691 Q1517.38 67.2693 1522.4 67.2693 Q1528.44 67.2693 1531.92 63.421 Q1535.45 59.5726 1535.45 52.9291 L1535.45 27.2059 L1542.9 27.2059 L1542.9 72.576 L1535.45 72.576 L1535.45 65.6084 Q1532.73 69.7404 1529.13 71.7658 Q1525.56 73.7508 1520.82 73.7508 Q1513.01 73.7508 1508.96 68.8897 Q1504.9 64.0286 1504.9 54.671 M1523.66 26.1121 L1523.66 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M 0 0 M1579.64 28.5427 L1579.64 35.5912 Q1576.48 33.9709 1573.08 33.1607 Q1569.68 32.3505 1566.03 32.3505 Q1560.48 32.3505 1557.69 34.0519 Q1554.93 35.7533 1554.93 39.156 Q1554.93 41.7486 1556.92 43.2475 Q1558.9 44.7058 1564.9 46.0426 L1567.45 46.6097 Q1575.39 48.3111 1578.71 51.4303 Q1582.07 54.509 1582.07 60.0587 Q1582.07 66.3781 1577.05 70.0644 Q1572.07 73.7508 1563.32 73.7508 Q1559.67 73.7508 1555.7 73.0216 Q1551.77 72.3329 1547.4 70.9151 L1547.4 63.2184 Q1551.53 65.3654 1555.54 66.4591 Q1559.55 67.5124 1563.48 67.5124 Q1568.75 67.5124 1571.58 65.73 Q1574.42 63.9071 1574.42 60.6258 Q1574.42 57.5877 1572.35 55.9673 Q1570.33 54.3469 1563.4 52.8481 L1560.81 52.2405 Q1553.88 50.7821 1550.8 47.7845 Q1547.72 44.7463 1547.72 39.4801 Q1547.72 33.0797 1552.26 29.5959 Q1556.8 26.1121 1565.14 26.1121 Q1569.27 26.1121 1572.92 26.7198 Q1576.56 27.3274 1579.64 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  315.001,1447.87 335.189,1411.63 355.376,1380.73 375.564,1353.77 395.752,1329.44 415.94,1306.88 436.127,1285.54 456.315,1265.04 476.503,1245.13 496.691,1225.62 \n",
       "  516.879,1206.42 537.066,1187.45 557.254,1168.64 577.442,1149.97 597.63,1131.41 617.818,1112.96 638.005,1094.58 658.193,1076.29 678.381,1058.06 698.569,1039.91 \n",
       "  718.756,1021.83 738.944,1003.81 759.132,985.855 779.32,967.963 799.508,950.135 819.695,932.368 839.883,914.663 860.071,897.019 880.259,879.435 900.447,861.912 \n",
       "  920.634,844.449 940.822,827.046 961.01,809.702 981.198,792.417 1001.39,775.191 1021.57,758.024 1041.76,740.915 1061.95,723.864 1082.14,706.87 1102.32,689.934 \n",
       "  1122.51,673.055 1142.7,656.233 1162.89,639.468 1183.08,622.758 1203.26,606.101 1223.45,589.503 1243.64,573.008 1263.83,556.549 1284.01,540.138 1304.2,523.777 \n",
       "  1324.39,507.468 1344.58,491.211 1364.77,475.007 1384.95,458.837 1405.14,443.018 1425.33,426.951 1445.52,410.94 1465.7,394.996 1485.89,379.105 1506.08,363.267 \n",
       "  1526.27,347.481 1546.46,331.748 1566.64,316.066 1586.83,300.436 1607.02,284.857 1627.21,269.329 1647.39,253.852 1667.58,238.425 1687.77,223.049 1707.96,207.722 \n",
       "  1728.15,192.445 1748.33,177.217 1768.52,162.047 1788.71,350.381 1808.9,646.679 1829.08,786.902 1849.27,900.486 1869.46,990.308 1889.65,1060.23 1909.84,1114.5 \n",
       "  1930.02,1156.51 1950.21,1188.96 1970.4,1213.99 1990.59,1233.27 2010.77,1248.1 2030.96,1259.51 2051.15,1268.27 2071.34,1275 2091.53,1280.17 2111.71,1284.14 \n",
       "  2131.9,1287.19 2152.09,1289.53 2172.28,1291.32 2192.46,1292.7 2212.65,1293.75 2232.84,1294.56 2253.03,1295.19 2273.22,1295.66 2293.4,1296.03 \n",
       "  \"/>\n",
       "</svg>\n"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "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=\"clip740\">\n",
       "    <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip740)\" 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=\"clip741\">\n",
       "    <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<path clip-path=\"url(#clip740)\" d=\"\n",
       "M198.566 1474.16 L2352.76 1474.16 L2352.76 123.472 L198.566 123.472  Z\n",
       "  \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
       "<defs>\n",
       "  <clipPath id=\"clip742\">\n",
       "    <rect x=\"198\" y=\"123\" width=\"2155\" height=\"1352\"/>\n",
       "  </clipPath>\n",
       "</defs>\n",
       "<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  237.365,1474.16 237.365,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  603.447,1474.16 603.447,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  969.529,1474.16 969.529,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1335.61,1474.16 1335.61,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  1701.69,1474.16 1701.69,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  2067.78,1474.16 2067.78,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  198.566,1474.16 2352.76,1474.16 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  237.365,1474.16 237.365,1457.96 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  603.447,1474.16 603.447,1457.96 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  969.529,1474.16 969.529,1457.96 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1335.61,1474.16 1335.61,1457.96 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  1701.69,1474.16 1701.69,1457.96 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  2067.78,1474.16 2067.78,1457.96 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip740)\" d=\"M 0 0 M237.365 1503.36 Q233.754 1503.36 231.925 1506.92 Q230.12 1510.46 230.12 1517.59 Q230.12 1524.7 231.925 1528.26 Q233.754 1531.8 237.365 1531.8 Q240.999 1531.8 242.805 1528.26 Q244.634 1524.7 244.634 1517.59 Q244.634 1510.46 242.805 1506.92 Q240.999 1503.36 237.365 1503.36 M237.365 1499.65 Q243.175 1499.65 246.231 1504.26 Q249.31 1508.84 249.31 1517.59 Q249.31 1526.32 246.231 1530.92 Q243.175 1535.51 237.365 1535.51 Q231.555 1535.51 228.476 1530.92 Q225.421 1526.32 225.421 1517.59 Q225.421 1508.84 228.476 1504.26 Q231.555 1499.65 237.365 1499.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M513.355 1552.44 L529.674 1552.44 L529.674 1556.37 L507.73 1556.37 L507.73 1552.44 Q510.392 1549.68 514.975 1545.05 Q519.582 1540.4 520.762 1539.06 Q523.008 1536.53 523.887 1534.8 Q524.79 1533.04 524.79 1531.35 Q524.79 1528.59 522.846 1526.86 Q520.925 1525.12 517.823 1525.12 Q515.624 1525.12 513.17 1525.89 Q510.739 1526.65 507.962 1528.2 L507.962 1523.48 Q510.786 1522.34 513.239 1521.77 Q515.693 1521.19 517.73 1521.19 Q523.1 1521.19 526.295 1523.87 Q529.489 1526.56 529.489 1531.05 Q529.489 1533.18 528.679 1535.1 Q527.892 1537 525.786 1539.59 Q525.207 1540.26 522.105 1543.48 Q519.003 1546.67 513.355 1552.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M534.744 1550.49 L539.628 1550.49 L539.628 1556.37 L534.744 1556.37 L534.744 1550.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M544.744 1521.81 L563.1 1521.81 L563.1 1525.75 L549.026 1525.75 L549.026 1534.22 Q550.045 1533.87 551.063 1533.71 Q552.082 1533.52 553.1 1533.52 Q558.887 1533.52 562.267 1536.7 Q565.646 1539.87 565.646 1545.28 Q565.646 1550.86 562.174 1553.96 Q558.702 1557.04 552.383 1557.04 Q550.207 1557.04 547.938 1556.67 Q545.693 1556.3 543.286 1555.56 L543.286 1550.86 Q545.369 1552 547.591 1552.55 Q549.813 1553.11 552.29 1553.11 Q556.295 1553.11 558.633 1551 Q560.971 1548.9 560.971 1545.28 Q560.971 1541.67 558.633 1539.57 Q556.295 1537.46 552.29 1537.46 Q550.415 1537.46 548.54 1537.88 Q546.688 1538.29 544.744 1539.17 L544.744 1521.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M580.716 1524.89 Q577.105 1524.89 575.276 1528.46 Q573.471 1532 573.471 1539.13 Q573.471 1546.23 575.276 1549.8 Q577.105 1553.34 580.716 1553.34 Q584.35 1553.34 586.156 1549.8 Q587.984 1546.23 587.984 1539.13 Q587.984 1532 586.156 1528.46 Q584.35 1524.89 580.716 1524.89 M580.716 1521.19 Q586.526 1521.19 589.582 1525.79 Q592.66 1530.38 592.66 1539.13 Q592.66 1547.85 589.582 1552.46 Q586.526 1557.04 580.716 1557.04 Q574.906 1557.04 571.827 1552.46 Q568.771 1547.85 568.771 1539.13 Q568.771 1530.38 571.827 1525.79 Q574.906 1521.19 580.716 1521.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M625.901 1530.91 L615.322 1541.53 L625.901 1552.11 L623.146 1554.91 L612.521 1544.29 L601.896 1554.91 L599.165 1552.11 L609.72 1541.53 L599.165 1530.91 L601.896 1528.11 L612.521 1538.73 L623.146 1528.11 L625.901 1530.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M631.78 1552.44 L639.419 1552.44 L639.419 1526.07 L631.109 1527.74 L631.109 1523.48 L639.373 1521.81 L644.049 1521.81 L644.049 1552.44 L651.688 1552.44 L651.688 1556.37 L631.78 1556.37 L631.78 1552.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M666.757 1524.89 Q663.146 1524.89 661.317 1528.46 Q659.512 1532 659.512 1539.13 Q659.512 1546.23 661.317 1549.8 Q663.146 1553.34 666.757 1553.34 Q670.391 1553.34 672.197 1549.8 Q674.026 1546.23 674.026 1539.13 Q674.026 1532 672.197 1528.46 Q670.391 1524.89 666.757 1524.89 M666.757 1521.19 Q672.567 1521.19 675.623 1525.79 Q678.701 1530.38 678.701 1539.13 Q678.701 1547.85 675.623 1552.46 Q672.567 1557.04 666.757 1557.04 Q660.947 1557.04 657.868 1552.46 Q654.813 1547.85 654.813 1539.13 Q654.813 1530.38 657.868 1525.79 Q660.947 1521.19 666.757 1521.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M691.378 1504.19 L681.786 1519.18 L691.378 1519.18 L691.378 1504.19 M690.381 1500.88 L695.158 1500.88 L695.158 1519.18 L699.164 1519.18 L699.164 1522.34 L695.158 1522.34 L695.158 1528.96 L691.378 1528.96 L691.378 1522.34 L678.701 1522.34 L678.701 1518.67 L690.381 1500.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M874.564 1521.81 L892.921 1521.81 L892.921 1525.75 L878.847 1525.75 L878.847 1534.22 Q879.865 1533.87 880.884 1533.71 Q881.902 1533.52 882.921 1533.52 Q888.708 1533.52 892.088 1536.7 Q895.467 1539.87 895.467 1545.28 Q895.467 1550.86 891.995 1553.96 Q888.523 1557.04 882.203 1557.04 Q880.027 1557.04 877.759 1556.67 Q875.514 1556.3 873.106 1555.56 L873.106 1550.86 Q875.189 1552 877.412 1552.55 Q879.634 1553.11 882.111 1553.11 Q886.115 1553.11 888.453 1551 Q890.791 1548.9 890.791 1545.28 Q890.791 1541.67 888.453 1539.57 Q886.115 1537.46 882.111 1537.46 Q880.236 1537.46 878.361 1537.88 Q876.509 1538.29 874.564 1539.17 L874.564 1521.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M900.537 1550.49 L905.421 1550.49 L905.421 1556.37 L900.537 1556.37 L900.537 1550.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M920.49 1524.89 Q916.879 1524.89 915.05 1528.46 Q913.245 1532 913.245 1539.13 Q913.245 1546.23 915.05 1549.8 Q916.879 1553.34 920.49 1553.34 Q924.124 1553.34 925.93 1549.8 Q927.759 1546.23 927.759 1539.13 Q927.759 1532 925.93 1528.46 Q924.124 1524.89 920.49 1524.89 M920.49 1521.19 Q926.3 1521.19 929.356 1525.79 Q932.435 1530.38 932.435 1539.13 Q932.435 1547.85 929.356 1552.46 Q926.3 1557.04 920.49 1557.04 Q914.68 1557.04 911.601 1552.46 Q908.546 1547.85 908.546 1539.13 Q908.546 1530.38 911.601 1525.79 Q914.68 1521.19 920.49 1521.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M947.504 1524.89 Q943.893 1524.89 942.064 1528.46 Q940.259 1532 940.259 1539.13 Q940.259 1546.23 942.064 1549.8 Q943.893 1553.34 947.504 1553.34 Q951.138 1553.34 952.944 1549.8 Q954.772 1546.23 954.772 1539.13 Q954.772 1532 952.944 1528.46 Q951.138 1524.89 947.504 1524.89 M947.504 1521.19 Q953.314 1521.19 956.37 1525.79 Q959.448 1530.38 959.448 1539.13 Q959.448 1547.85 956.37 1552.46 Q953.314 1557.04 947.504 1557.04 Q941.694 1557.04 938.615 1552.46 Q935.56 1547.85 935.56 1539.13 Q935.56 1530.38 938.615 1525.79 Q941.694 1521.19 947.504 1521.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M992.689 1530.91 L982.11 1541.53 L992.689 1552.11 L989.934 1554.91 L979.309 1544.29 L968.684 1554.91 L965.953 1552.11 L976.508 1541.53 L965.953 1530.91 L968.684 1528.11 L979.309 1538.73 L989.934 1528.11 L992.689 1530.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M998.568 1552.44 L1006.21 1552.44 L1006.21 1526.07 L997.897 1527.74 L997.897 1523.48 L1006.16 1521.81 L1010.84 1521.81 L1010.84 1552.44 L1018.48 1552.44 L1018.48 1556.37 L998.568 1556.37 L998.568 1552.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1033.55 1524.89 Q1029.93 1524.89 1028.11 1528.46 Q1026.3 1532 1026.3 1539.13 Q1026.3 1546.23 1028.11 1549.8 Q1029.93 1553.34 1033.55 1553.34 Q1037.18 1553.34 1038.98 1549.8 Q1040.81 1546.23 1040.81 1539.13 Q1040.81 1532 1038.98 1528.46 Q1037.18 1524.89 1033.55 1524.89 M1033.55 1521.19 Q1039.36 1521.19 1042.41 1525.79 Q1045.49 1530.38 1045.49 1539.13 Q1045.49 1547.85 1042.41 1552.46 Q1039.36 1557.04 1033.55 1557.04 Q1027.73 1557.04 1024.66 1552.46 Q1021.6 1547.85 1021.6 1539.13 Q1021.6 1530.38 1024.66 1525.79 Q1027.73 1521.19 1033.55 1521.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1058.17 1504.19 L1048.57 1519.18 L1058.17 1519.18 L1058.17 1504.19 M1057.17 1500.88 L1061.95 1500.88 L1061.95 1519.18 L1065.95 1519.18 L1065.95 1522.34 L1061.95 1522.34 L1061.95 1528.96 L1058.17 1528.96 L1058.17 1522.34 L1045.49 1522.34 L1045.49 1518.67 L1057.17 1500.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1239.76 1521.81 L1261.98 1521.81 L1261.98 1523.8 L1249.43 1556.37 L1244.55 1556.37 L1256.35 1525.75 L1239.76 1525.75 L1239.76 1521.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1267.05 1550.49 L1271.93 1550.49 L1271.93 1556.37 L1267.05 1556.37 L1267.05 1550.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1277.05 1521.81 L1295.4 1521.81 L1295.4 1525.75 L1281.33 1525.75 L1281.33 1534.22 Q1282.35 1533.87 1283.37 1533.71 Q1284.38 1533.52 1285.4 1533.52 Q1291.19 1533.52 1294.57 1536.7 Q1297.95 1539.87 1297.95 1545.28 Q1297.95 1550.86 1294.48 1553.96 Q1291 1557.04 1284.69 1557.04 Q1282.51 1557.04 1280.24 1556.67 Q1278 1556.3 1275.59 1555.56 L1275.59 1550.86 Q1277.67 1552 1279.89 1552.55 Q1282.12 1553.11 1284.59 1553.11 Q1288.6 1553.11 1290.94 1551 Q1293.27 1548.9 1293.27 1545.28 Q1293.27 1541.67 1290.94 1539.57 Q1288.6 1537.46 1284.59 1537.46 Q1282.72 1537.46 1280.84 1537.88 Q1278.99 1538.29 1277.05 1539.17 L1277.05 1521.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1313.02 1524.89 Q1309.41 1524.89 1307.58 1528.46 Q1305.77 1532 1305.77 1539.13 Q1305.77 1546.23 1307.58 1549.8 Q1309.41 1553.34 1313.02 1553.34 Q1316.65 1553.34 1318.46 1549.8 Q1320.29 1546.23 1320.29 1539.13 Q1320.29 1532 1318.46 1528.46 Q1316.65 1524.89 1313.02 1524.89 M1313.02 1521.19 Q1318.83 1521.19 1321.88 1525.79 Q1324.96 1530.38 1324.96 1539.13 Q1324.96 1547.85 1321.88 1552.46 Q1318.83 1557.04 1313.02 1557.04 Q1307.21 1557.04 1304.13 1552.46 Q1301.07 1547.85 1301.07 1539.13 Q1301.07 1530.38 1304.13 1525.79 Q1307.21 1521.19 1313.02 1521.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1358.2 1530.91 L1347.63 1541.53 L1358.2 1552.11 L1355.45 1554.91 L1344.82 1544.29 L1334.2 1554.91 L1331.47 1552.11 L1342.02 1541.53 L1331.47 1530.91 L1334.2 1528.11 L1344.82 1538.73 L1355.45 1528.11 L1358.2 1530.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1364.08 1552.44 L1371.72 1552.44 L1371.72 1526.07 L1363.41 1527.74 L1363.41 1523.48 L1371.68 1521.81 L1376.35 1521.81 L1376.35 1552.44 L1383.99 1552.44 L1383.99 1556.37 L1364.08 1556.37 L1364.08 1552.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1399.06 1524.89 Q1395.45 1524.89 1393.62 1528.46 Q1391.81 1532 1391.81 1539.13 Q1391.81 1546.23 1393.62 1549.8 Q1395.45 1553.34 1399.06 1553.34 Q1402.69 1553.34 1404.5 1549.8 Q1406.33 1546.23 1406.33 1539.13 Q1406.33 1532 1404.5 1528.46 Q1402.69 1524.89 1399.06 1524.89 M1399.06 1521.19 Q1404.87 1521.19 1407.93 1525.79 Q1411 1530.38 1411 1539.13 Q1411 1547.85 1407.93 1552.46 Q1404.87 1557.04 1399.06 1557.04 Q1393.25 1557.04 1390.17 1552.46 Q1387.12 1547.85 1387.12 1539.13 Q1387.12 1530.38 1390.17 1525.79 Q1393.25 1521.19 1399.06 1521.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1423.68 1504.19 L1414.09 1519.18 L1423.68 1519.18 L1423.68 1504.19 M1422.68 1500.88 L1427.46 1500.88 L1427.46 1519.18 L1431.47 1519.18 L1431.47 1522.34 L1427.46 1522.34 L1427.46 1528.96 L1423.68 1528.96 L1423.68 1522.34 L1411 1522.34 L1411 1518.67 L1422.68 1500.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1607.98 1552.44 L1615.62 1552.44 L1615.62 1526.07 L1607.31 1527.74 L1607.31 1523.48 L1615.57 1521.81 L1620.25 1521.81 L1620.25 1552.44 L1627.89 1552.44 L1627.89 1556.37 L1607.98 1556.37 L1607.98 1552.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1632.96 1550.49 L1637.84 1550.49 L1637.84 1556.37 L1632.96 1556.37 L1632.96 1550.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1652.91 1524.89 Q1649.3 1524.89 1647.47 1528.46 Q1645.66 1532 1645.66 1539.13 Q1645.66 1546.23 1647.47 1549.8 Q1649.3 1553.34 1652.91 1553.34 Q1656.54 1553.34 1658.35 1549.8 Q1660.18 1546.23 1660.18 1539.13 Q1660.18 1532 1658.35 1528.46 Q1656.54 1524.89 1652.91 1524.89 M1652.91 1521.19 Q1658.72 1521.19 1661.78 1525.79 Q1664.85 1530.38 1664.85 1539.13 Q1664.85 1547.85 1661.78 1552.46 Q1658.72 1557.04 1652.91 1557.04 Q1647.1 1557.04 1644.02 1552.46 Q1640.97 1547.85 1640.97 1539.13 Q1640.97 1530.38 1644.02 1525.79 Q1647.1 1521.19 1652.91 1521.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1679.92 1524.89 Q1676.31 1524.89 1674.48 1528.46 Q1672.68 1532 1672.68 1539.13 Q1672.68 1546.23 1674.48 1549.8 Q1676.31 1553.34 1679.92 1553.34 Q1683.56 1553.34 1685.36 1549.8 Q1687.19 1546.23 1687.19 1539.13 Q1687.19 1532 1685.36 1528.46 Q1683.56 1524.89 1679.92 1524.89 M1679.92 1521.19 Q1685.73 1521.19 1688.79 1525.79 Q1691.87 1530.38 1691.87 1539.13 Q1691.87 1547.85 1688.79 1552.46 Q1685.73 1557.04 1679.92 1557.04 Q1674.11 1557.04 1671.04 1552.46 Q1667.98 1547.85 1667.98 1539.13 Q1667.98 1530.38 1671.04 1525.79 Q1674.11 1521.19 1679.92 1521.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1725.11 1530.91 L1714.53 1541.53 L1725.11 1552.11 L1722.35 1554.91 L1711.73 1544.29 L1701.1 1554.91 L1698.37 1552.11 L1708.93 1541.53 L1698.37 1530.91 L1701.1 1528.11 L1711.73 1538.73 L1722.35 1528.11 L1725.11 1530.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1730.99 1552.44 L1738.63 1552.44 L1738.63 1526.07 L1730.32 1527.74 L1730.32 1523.48 L1738.58 1521.81 L1743.26 1521.81 L1743.26 1552.44 L1750.9 1552.44 L1750.9 1556.37 L1730.99 1556.37 L1730.99 1552.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1765.97 1524.89 Q1762.35 1524.89 1760.53 1528.46 Q1758.72 1532 1758.72 1539.13 Q1758.72 1546.23 1760.53 1549.8 Q1762.35 1553.34 1765.97 1553.34 Q1769.6 1553.34 1771.4 1549.8 Q1773.23 1546.23 1773.23 1539.13 Q1773.23 1532 1771.4 1528.46 Q1769.6 1524.89 1765.97 1524.89 M1765.97 1521.19 Q1771.78 1521.19 1774.83 1525.79 Q1777.91 1530.38 1777.91 1539.13 Q1777.91 1547.85 1774.83 1552.46 Q1771.78 1557.04 1765.97 1557.04 Q1760.16 1557.04 1757.08 1552.46 Q1754.02 1547.85 1754.02 1539.13 Q1754.02 1530.38 1757.08 1525.79 Q1760.16 1521.19 1765.97 1521.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1779.09 1500.88 L1794.01 1500.88 L1794.01 1504.08 L1782.57 1504.08 L1782.57 1510.96 Q1783.4 1510.68 1784.23 1510.55 Q1785.06 1510.4 1785.88 1510.4 Q1790.59 1510.4 1793.33 1512.97 Q1796.08 1515.55 1796.08 1519.95 Q1796.08 1524.49 1793.26 1527.01 Q1790.44 1529.51 1785.3 1529.51 Q1783.53 1529.51 1781.69 1529.21 Q1779.87 1528.91 1777.91 1528.3 L1777.91 1524.49 Q1779.6 1525.41 1781.41 1525.86 Q1783.21 1526.31 1785.23 1526.31 Q1788.48 1526.31 1790.38 1524.6 Q1792.28 1522.89 1792.28 1519.95 Q1792.28 1517.02 1790.38 1515.31 Q1788.48 1513.6 1785.23 1513.6 Q1783.7 1513.6 1782.18 1513.93 Q1780.67 1514.27 1779.09 1514.99 L1779.09 1500.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1975.36 1552.44 L1983 1552.44 L1983 1526.07 L1974.69 1527.74 L1974.69 1523.48 L1982.95 1521.81 L1987.63 1521.81 L1987.63 1552.44 L1995.27 1552.44 L1995.27 1556.37 L1975.36 1556.37 L1975.36 1552.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M2000.33 1550.49 L2005.22 1550.49 L2005.22 1556.37 L2000.33 1556.37 L2000.33 1550.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M2014.32 1552.44 L2030.64 1552.44 L2030.64 1556.37 L2008.69 1556.37 L2008.69 1552.44 Q2011.35 1549.68 2015.94 1545.05 Q2020.54 1540.4 2021.72 1539.06 Q2023.97 1536.53 2024.85 1534.8 Q2025.75 1533.04 2025.75 1531.35 Q2025.75 1528.59 2023.81 1526.86 Q2021.89 1525.12 2018.78 1525.12 Q2016.58 1525.12 2014.13 1525.89 Q2011.7 1526.65 2008.92 1528.2 L2008.92 1523.48 Q2011.75 1522.34 2014.2 1521.77 Q2016.65 1521.19 2018.69 1521.19 Q2024.06 1521.19 2027.26 1523.87 Q2030.45 1526.56 2030.45 1531.05 Q2030.45 1533.18 2029.64 1535.1 Q2028.85 1537 2026.75 1539.59 Q2026.17 1540.26 2023.07 1543.48 Q2019.96 1546.67 2014.32 1552.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M2035.75 1521.81 L2054.11 1521.81 L2054.11 1525.75 L2040.03 1525.75 L2040.03 1534.22 Q2041.05 1533.87 2042.07 1533.71 Q2043.09 1533.52 2044.11 1533.52 Q2049.89 1533.52 2053.27 1536.7 Q2056.65 1539.87 2056.65 1545.28 Q2056.65 1550.86 2053.18 1553.96 Q2049.71 1557.04 2043.39 1557.04 Q2041.21 1557.04 2038.95 1556.67 Q2036.7 1556.3 2034.29 1555.56 L2034.29 1550.86 Q2036.38 1552 2038.6 1552.55 Q2040.82 1553.11 2043.3 1553.11 Q2047.3 1553.11 2049.64 1551 Q2051.98 1548.9 2051.98 1545.28 Q2051.98 1541.67 2049.64 1539.57 Q2047.3 1537.46 2043.3 1537.46 Q2041.42 1537.46 2039.55 1537.88 Q2037.7 1538.29 2035.75 1539.17 L2035.75 1521.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M2089.89 1530.91 L2079.32 1541.53 L2089.89 1552.11 L2087.14 1554.91 L2076.52 1544.29 L2065.89 1554.91 L2063.16 1552.11 L2073.71 1541.53 L2063.16 1530.91 L2065.89 1528.11 L2076.52 1538.73 L2087.14 1528.11 L2089.89 1530.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M2095.77 1552.44 L2103.41 1552.44 L2103.41 1526.07 L2095.1 1527.74 L2095.1 1523.48 L2103.37 1521.81 L2108.04 1521.81 L2108.04 1552.44 L2115.68 1552.44 L2115.68 1556.37 L2095.77 1556.37 L2095.77 1552.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M2130.75 1524.89 Q2127.14 1524.89 2125.31 1528.46 Q2123.51 1532 2123.51 1539.13 Q2123.51 1546.23 2125.31 1549.8 Q2127.14 1553.34 2130.75 1553.34 Q2134.39 1553.34 2136.19 1549.8 Q2138.02 1546.23 2138.02 1539.13 Q2138.02 1532 2136.19 1528.46 Q2134.39 1524.89 2130.75 1524.89 M2130.75 1521.19 Q2136.56 1521.19 2139.62 1525.79 Q2142.7 1530.38 2142.7 1539.13 Q2142.7 1547.85 2139.62 1552.46 Q2136.56 1557.04 2130.75 1557.04 Q2124.94 1557.04 2121.86 1552.46 Q2118.81 1547.85 2118.81 1539.13 Q2118.81 1530.38 2121.86 1525.79 Q2124.94 1521.19 2130.75 1521.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M2143.88 1500.88 L2158.79 1500.88 L2158.79 1504.08 L2147.36 1504.08 L2147.36 1510.96 Q2148.19 1510.68 2149.01 1510.55 Q2149.84 1510.4 2150.67 1510.4 Q2155.37 1510.4 2158.12 1512.97 Q2160.86 1515.55 2160.86 1519.95 Q2160.86 1524.49 2158.04 1527.01 Q2155.22 1529.51 2150.09 1529.51 Q2148.32 1529.51 2146.48 1529.21 Q2144.65 1528.91 2142.7 1528.3 L2142.7 1524.49 Q2144.39 1525.41 2146.19 1525.86 Q2148 1526.31 2150.01 1526.31 Q2153.27 1526.31 2155.16 1524.6 Q2157.06 1522.89 2157.06 1519.95 Q2157.06 1517.02 2155.16 1515.31 Q2153.27 1513.6 2150.01 1513.6 Q2148.49 1513.6 2146.96 1513.93 Q2145.46 1514.27 2143.88 1514.99 L2143.88 1500.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  198.566,1450.49 2352.76,1450.49 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  198.566,1220.9 2352.76,1220.9 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  198.566,991.308 2352.76,991.308 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  198.566,761.717 2352.76,761.717 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  198.566,532.125 2352.76,532.125 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
       "  198.566,302.533 2352.76,302.533 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  198.566,1474.16 198.566,123.472 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  198.566,1450.49 224.416,1450.49 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  198.566,1220.9 224.416,1220.9 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  198.566,991.308 224.416,991.308 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  198.566,761.717 224.416,761.717 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  198.566,532.125 224.416,532.125 \n",
       "  \"/>\n",
       "<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  198.566,302.533 224.416,302.533 \n",
       "  \"/>\n",
       "<path clip-path=\"url(#clip740)\" d=\"M 0 0 M51.6634 1463.84 L59.3023 1463.84 L59.3023 1437.47 L50.9921 1439.14 L50.9921 1434.88 L59.256 1433.21 L63.9319 1433.21 L63.9319 1463.84 L71.5707 1463.84 L71.5707 1467.77 L51.6634 1467.77 L51.6634 1463.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M76.6401 1461.89 L81.5244 1461.89 L81.5244 1467.77 L76.6401 1467.77 L76.6401 1461.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M96.5937 1436.29 Q92.9826 1436.29 91.1539 1439.86 Q89.3484 1443.4 89.3484 1450.53 Q89.3484 1457.63 91.1539 1461.2 Q92.9826 1464.74 96.5937 1464.74 Q100.228 1464.74 102.034 1461.2 Q103.862 1457.63 103.862 1450.53 Q103.862 1443.4 102.034 1439.86 Q100.228 1436.29 96.5937 1436.29 M96.5937 1432.59 Q102.404 1432.59 105.459 1437.19 Q108.538 1441.78 108.538 1450.53 Q108.538 1459.25 105.459 1463.86 Q102.404 1468.44 96.5937 1468.44 Q90.7836 1468.44 87.7049 1463.86 Q84.6494 1459.25 84.6494 1450.53 Q84.6494 1441.78 87.7049 1437.19 Q90.7836 1432.59 96.5937 1432.59 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M123.607 1436.29 Q119.996 1436.29 118.168 1439.86 Q116.362 1443.4 116.362 1450.53 Q116.362 1457.63 118.168 1461.2 Q119.996 1464.74 123.607 1464.74 Q127.242 1464.74 129.047 1461.2 Q130.876 1457.63 130.876 1450.53 Q130.876 1443.4 129.047 1439.86 Q127.242 1436.29 123.607 1436.29 M123.607 1432.59 Q129.418 1432.59 132.473 1437.19 Q135.552 1441.78 135.552 1450.53 Q135.552 1459.25 132.473 1463.86 Q129.418 1468.44 123.607 1468.44 Q117.797 1468.44 114.719 1463.86 Q111.663 1459.25 111.663 1450.53 Q111.663 1441.78 114.719 1437.19 Q117.797 1432.59 123.607 1432.59 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M150.621 1436.29 Q147.01 1436.29 145.181 1439.86 Q143.376 1443.4 143.376 1450.53 Q143.376 1457.63 145.181 1461.2 Q147.01 1464.74 150.621 1464.74 Q154.255 1464.74 156.061 1461.2 Q157.89 1457.63 157.89 1450.53 Q157.89 1443.4 156.061 1439.86 Q154.255 1436.29 150.621 1436.29 M150.621 1432.59 Q156.431 1432.59 159.487 1437.19 Q162.566 1441.78 162.566 1450.53 Q162.566 1459.25 159.487 1463.86 Q156.431 1468.44 150.621 1468.44 Q144.811 1468.44 141.732 1463.86 Q138.677 1459.25 138.677 1450.53 Q138.677 1441.78 141.732 1437.19 Q144.811 1432.59 150.621 1432.59 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M54.256 1234.25 L61.8948 1234.25 L61.8948 1207.88 L53.5847 1209.55 L53.5847 1205.29 L61.8485 1203.62 L66.5245 1203.62 L66.5245 1234.25 L74.1633 1234.25 L74.1633 1238.18 L54.256 1238.18 L54.256 1234.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M79.2327 1232.3 L84.1169 1232.3 L84.1169 1238.18 L79.2327 1238.18 L79.2327 1232.3 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M99.1863 1206.7 Q95.5752 1206.7 93.7465 1210.26 Q91.941 1213.81 91.941 1220.93 Q91.941 1228.04 93.7465 1231.61 Q95.5752 1235.15 99.1863 1235.15 Q102.821 1235.15 104.626 1231.61 Q106.455 1228.04 106.455 1220.93 Q106.455 1213.81 104.626 1210.26 Q102.821 1206.7 99.1863 1206.7 M99.1863 1203 Q104.996 1203 108.052 1207.6 Q111.131 1212.18 111.131 1220.93 Q111.131 1229.66 108.052 1234.27 Q104.996 1238.85 99.1863 1238.85 Q93.3762 1238.85 90.2975 1234.27 Q87.2419 1229.66 87.2419 1220.93 Q87.2419 1212.18 90.2975 1207.6 Q93.3762 1203 99.1863 1203 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M120.228 1234.25 L136.547 1234.25 L136.547 1238.18 L114.603 1238.18 L114.603 1234.25 Q117.265 1231.49 121.848 1226.86 Q126.455 1222.21 127.635 1220.87 Q129.881 1218.34 130.76 1216.61 Q131.663 1214.85 131.663 1213.16 Q131.663 1210.4 129.719 1208.67 Q127.797 1206.93 124.695 1206.93 Q122.496 1206.93 120.043 1207.69 Q117.612 1208.46 114.834 1210.01 L114.834 1205.29 Q117.658 1204.15 120.112 1203.57 Q122.566 1203 124.603 1203 Q129.973 1203 133.168 1205.68 Q136.362 1208.37 136.362 1212.86 Q136.362 1214.99 135.552 1216.91 Q134.765 1218.81 132.658 1221.4 Q132.08 1222.07 128.978 1225.29 Q125.876 1228.48 120.228 1234.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M141.663 1203.62 L160.019 1203.62 L160.019 1207.56 L145.945 1207.56 L145.945 1216.03 Q146.964 1215.68 147.982 1215.52 Q149.001 1215.33 150.019 1215.33 Q155.806 1215.33 159.186 1218.5 Q162.566 1221.68 162.566 1227.09 Q162.566 1232.67 159.093 1235.77 Q155.621 1238.85 149.302 1238.85 Q147.126 1238.85 144.857 1238.48 Q142.612 1238.11 140.205 1237.37 L140.205 1232.67 Q142.288 1233.81 144.51 1234.36 Q146.732 1234.92 149.209 1234.92 Q153.214 1234.92 155.552 1232.81 Q157.89 1230.7 157.89 1227.09 Q157.89 1223.48 155.552 1221.37 Q153.214 1219.27 149.209 1219.27 Q147.334 1219.27 145.459 1219.68 Q143.607 1220.1 141.663 1220.98 L141.663 1203.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M52.6588 1004.65 L60.2976 1004.65 L60.2976 978.288 L51.9875 979.954 L51.9875 975.695 L60.2513 974.028 L64.9272 974.028 L64.9272 1004.65 L72.5661 1004.65 L72.5661 1008.59 L52.6588 1008.59 L52.6588 1004.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M77.6355 1002.71 L82.5197 1002.71 L82.5197 1008.59 L77.6355 1008.59 L77.6355 1002.71 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M97.5891 977.107 Q93.978 977.107 92.1493 980.672 Q90.3438 984.213 90.3438 991.343 Q90.3438 998.45 92.1493 1002.01 Q93.978 1005.56 97.5891 1005.56 Q101.223 1005.56 103.029 1002.01 Q104.858 998.45 104.858 991.343 Q104.858 984.213 103.029 980.672 Q101.223 977.107 97.5891 977.107 M97.5891 973.403 Q103.399 973.403 106.455 978.01 Q109.533 982.593 109.533 991.343 Q109.533 1000.07 106.455 1004.68 Q103.399 1009.26 97.5891 1009.26 Q91.7789 1009.26 88.7003 1004.68 Q85.6447 1000.07 85.6447 991.343 Q85.6447 982.593 88.7003 978.01 Q91.7789 973.403 97.5891 973.403 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M114.649 974.028 L133.006 974.028 L133.006 977.964 L118.932 977.964 L118.932 986.436 Q119.95 986.088 120.969 985.926 Q121.987 985.741 123.006 985.741 Q128.793 985.741 132.172 988.913 Q135.552 992.084 135.552 997.5 Q135.552 1003.08 132.08 1006.18 Q128.607 1009.26 122.288 1009.26 Q120.112 1009.26 117.844 1008.89 Q115.598 1008.52 113.191 1007.78 L113.191 1003.08 Q115.274 1004.21 117.496 1004.77 Q119.719 1005.32 122.195 1005.32 Q126.2 1005.32 128.538 1003.22 Q130.876 1001.11 130.876 997.5 Q130.876 993.889 128.538 991.783 Q126.2 989.676 122.195 989.676 Q120.32 989.676 118.445 990.093 Q116.594 990.51 114.649 991.389 L114.649 974.028 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M150.621 977.107 Q147.01 977.107 145.181 980.672 Q143.376 984.213 143.376 991.343 Q143.376 998.45 145.181 1002.01 Q147.01 1005.56 150.621 1005.56 Q154.255 1005.56 156.061 1002.01 Q157.89 998.45 157.89 991.343 Q157.89 984.213 156.061 980.672 Q154.255 977.107 150.621 977.107 M150.621 973.403 Q156.431 973.403 159.487 978.01 Q162.566 982.593 162.566 991.343 Q162.566 1000.07 159.487 1004.68 Q156.431 1009.26 150.621 1009.26 Q144.811 1009.26 141.732 1004.68 Q138.677 1000.07 138.677 991.343 Q138.677 982.593 141.732 978.01 Q144.811 973.403 150.621 973.403 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M53.5616 775.061 L61.2004 775.061 L61.2004 748.696 L52.8903 750.362 L52.8903 746.103 L61.1541 744.437 L65.83 744.437 L65.83 775.061 L73.4689 775.061 L73.4689 778.997 L53.5616 778.997 L53.5616 775.061 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M78.5383 773.117 L83.4225 773.117 L83.4225 778.997 L78.5383 778.997 L78.5383 773.117 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M98.4919 747.515 Q94.8808 747.515 93.0521 751.08 Q91.2465 754.622 91.2465 761.751 Q91.2465 768.858 93.0521 772.422 Q94.8808 775.964 98.4919 775.964 Q102.126 775.964 103.932 772.422 Q105.76 768.858 105.76 761.751 Q105.76 754.622 103.932 751.08 Q102.126 747.515 98.4919 747.515 M98.4919 743.812 Q104.302 743.812 107.358 748.418 Q110.436 753.001 110.436 761.751 Q110.436 770.478 107.358 775.085 Q104.302 779.668 98.4919 779.668 Q92.6817 779.668 89.603 775.085 Q86.5475 770.478 86.5475 761.751 Q86.5475 753.001 89.603 748.418 Q92.6817 743.812 98.4919 743.812 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M114.325 744.437 L136.547 744.437 L136.547 746.427 L124.001 778.997 L119.117 778.997 L130.922 748.372 L114.325 748.372 L114.325 744.437 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M141.663 744.437 L160.019 744.437 L160.019 748.372 L145.945 748.372 L145.945 756.844 Q146.964 756.497 147.982 756.335 Q149.001 756.149 150.019 756.149 Q155.806 756.149 159.186 759.321 Q162.566 762.492 162.566 767.909 Q162.566 773.487 159.093 776.589 Q155.621 779.668 149.302 779.668 Q147.126 779.668 144.857 779.297 Q142.612 778.927 140.205 778.186 L140.205 773.487 Q142.288 774.622 144.51 775.177 Q146.732 775.733 149.209 775.733 Q153.214 775.733 155.552 773.626 Q157.89 771.52 157.89 767.909 Q157.89 764.298 155.552 762.191 Q153.214 760.085 149.209 760.085 Q147.334 760.085 145.459 760.501 Q143.607 760.918 141.663 761.798 L141.663 744.437 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M52.8903 545.47 L60.5291 545.47 L60.5291 519.104 L52.219 520.771 L52.219 516.511 L60.4828 514.845 L65.1587 514.845 L65.1587 545.47 L72.7976 545.47 L72.7976 549.405 L52.8903 549.405 L52.8903 545.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M77.867 543.525 L82.7512 543.525 L82.7512 549.405 L77.867 549.405 L77.867 543.525 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M88.6308 545.47 L96.2697 545.47 L96.2697 519.104 L87.9595 520.771 L87.9595 516.511 L96.2234 514.845 L100.899 514.845 L100.899 545.47 L108.538 545.47 L108.538 549.405 L88.6308 549.405 L88.6308 545.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M123.607 517.923 Q119.996 517.923 118.168 521.488 Q116.362 525.03 116.362 532.159 Q116.362 539.266 118.168 542.831 Q119.996 546.372 123.607 546.372 Q127.242 546.372 129.047 542.831 Q130.876 539.266 130.876 532.159 Q130.876 525.03 129.047 521.488 Q127.242 517.923 123.607 517.923 M123.607 514.22 Q129.418 514.22 132.473 518.826 Q135.552 523.409 135.552 532.159 Q135.552 540.886 132.473 545.493 Q129.418 550.076 123.607 550.076 Q117.797 550.076 114.719 545.493 Q111.663 540.886 111.663 532.159 Q111.663 523.409 114.719 518.826 Q117.797 514.22 123.607 514.22 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M150.621 517.923 Q147.01 517.923 145.181 521.488 Q143.376 525.03 143.376 532.159 Q143.376 539.266 145.181 542.831 Q147.01 546.372 150.621 546.372 Q154.255 546.372 156.061 542.831 Q157.89 539.266 157.89 532.159 Q157.89 525.03 156.061 521.488 Q154.255 517.923 150.621 517.923 M150.621 514.22 Q156.431 514.22 159.487 518.826 Q162.566 523.409 162.566 532.159 Q162.566 540.886 159.487 545.493 Q156.431 550.076 150.621 550.076 Q144.811 550.076 141.732 545.493 Q138.677 540.886 138.677 532.159 Q138.677 523.409 141.732 518.826 Q144.811 514.22 150.621 514.22 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M55.4828 315.878 L63.1217 315.878 L63.1217 289.512 L54.8115 291.179 L54.8115 286.92 L63.0754 285.253 L67.7513 285.253 L67.7513 315.878 L75.3901 315.878 L75.3901 319.813 L55.4828 319.813 L55.4828 315.878 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M80.4596 313.933 L85.3438 313.933 L85.3438 319.813 L80.4596 319.813 L80.4596 313.933 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M91.2234 315.878 L98.8622 315.878 L98.8622 289.512 L90.5521 291.179 L90.5521 286.92 L98.8159 285.253 L103.492 285.253 L103.492 315.878 L111.131 315.878 L111.131 319.813 L91.2234 319.813 L91.2234 315.878 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M120.228 315.878 L136.547 315.878 L136.547 319.813 L114.603 319.813 L114.603 315.878 Q117.265 313.123 121.848 308.493 Q126.455 303.841 127.635 302.498 Q129.881 299.975 130.76 298.239 Q131.663 296.48 131.663 294.79 Q131.663 292.035 129.719 290.299 Q127.797 288.563 124.695 288.563 Q122.496 288.563 120.043 289.327 Q117.612 290.091 114.834 291.642 L114.834 286.92 Q117.658 285.785 120.112 285.207 Q122.566 284.628 124.603 284.628 Q129.973 284.628 133.168 287.313 Q136.362 289.998 136.362 294.489 Q136.362 296.619 135.552 298.54 Q134.765 300.438 132.658 303.031 Q132.08 303.702 128.978 306.919 Q125.876 310.114 120.228 315.878 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M141.663 285.253 L160.019 285.253 L160.019 289.188 L145.945 289.188 L145.945 297.66 Q146.964 297.313 147.982 297.151 Q149.001 296.966 150.019 296.966 Q155.806 296.966 159.186 300.137 Q162.566 303.308 162.566 308.725 Q162.566 314.304 159.093 317.405 Q155.621 320.484 149.302 320.484 Q147.126 320.484 144.857 320.114 Q142.612 319.743 140.205 319.003 L140.205 314.304 Q142.288 315.438 144.51 315.993 Q146.732 316.549 149.209 316.549 Q153.214 316.549 155.552 314.443 Q157.89 312.336 157.89 308.725 Q157.89 305.114 155.552 303.007 Q153.214 300.901 149.209 300.901 Q147.334 300.901 145.459 301.318 Q143.607 301.734 141.663 302.614 L141.663 285.253 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M959.893 28.5427 L959.893 35.5912 Q956.733 33.9709 953.33 33.1607 Q949.928 32.3505 946.282 32.3505 Q940.732 32.3505 937.937 34.0519 Q935.182 35.7533 935.182 39.156 Q935.182 41.7486 937.167 43.2475 Q939.152 44.7058 945.147 46.0426 L947.7 46.6097 Q955.639 48.3111 958.961 51.4303 Q962.323 54.509 962.323 60.0587 Q962.323 66.3781 957.3 70.0644 Q952.318 73.7508 943.568 73.7508 Q939.922 73.7508 935.952 73.0216 Q932.023 72.3329 927.648 70.9151 L927.648 63.2184 Q931.779 65.3654 935.79 66.4591 Q939.8 67.5124 943.73 67.5124 Q948.996 67.5124 951.831 65.73 Q954.667 63.9071 954.667 60.6258 Q954.667 57.5877 952.601 55.9673 Q950.576 54.3469 943.649 52.8481 L941.056 52.2405 Q934.129 50.7821 931.05 47.7845 Q927.972 44.7463 927.972 39.4801 Q927.972 33.0797 932.509 29.5959 Q937.046 26.1121 945.391 26.1121 Q949.522 26.1121 953.168 26.7198 Q956.814 27.3274 959.893 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M977.514 14.324 L977.514 27.2059 L992.867 27.2059 L992.867 32.9987 L977.514 32.9987 L977.514 57.6282 Q977.514 63.1779 979.013 64.7578 Q980.552 66.3376 985.211 66.3376 L992.867 66.3376 L992.867 72.576 L985.211 72.576 Q976.582 72.576 973.301 69.3758 Q970.02 66.1351 970.02 57.6282 L970.02 32.9987 L964.551 32.9987 L964.551 27.2059 L970.02 27.2059 L970.02 14.324 L977.514 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1026.98 34.1734 Q1025.72 33.4443 1024.22 33.1202 Q1022.76 32.7556 1020.98 32.7556 Q1014.66 32.7556 1011.26 36.8875 Q1007.9 40.9789 1007.9 48.6757 L1007.9 72.576 L1000.4 72.576 L1000.4 27.2059 L1007.9 27.2059 L1007.9 34.2544 Q1010.25 30.1225 1014.01 28.1376 Q1017.78 26.1121 1023.17 26.1121 Q1023.94 26.1121 1024.87 26.2337 Q1025.8 26.3147 1026.94 26.5172 L1026.98 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1071.78 48.0275 L1071.78 51.6733 L1037.51 51.6733 Q1037.99 59.3701 1042.13 63.421 Q1046.3 67.4314 1053.71 67.4314 Q1058.01 67.4314 1062.02 66.3781 Q1066.07 65.3249 1070.04 63.2184 L1070.04 70.267 Q1066.03 71.9684 1061.81 72.8596 Q1057.6 73.7508 1053.27 73.7508 Q1042.41 73.7508 1036.05 67.4314 Q1029.73 61.1119 1029.73 50.3365 Q1029.73 39.1965 1035.73 32.6746 Q1041.76 26.1121 1051.97 26.1121 Q1061.12 26.1121 1066.43 32.0264 Q1071.78 37.9003 1071.78 48.0275 M1064.33 45.84 Q1064.24 39.7232 1060.88 36.0774 Q1057.56 32.4315 1052.05 32.4315 Q1045.81 32.4315 1042.05 35.9558 Q1038.32 39.4801 1037.75 45.8805 L1064.33 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1108.52 28.5427 L1108.52 35.5912 Q1105.36 33.9709 1101.96 33.1607 Q1098.56 32.3505 1094.91 32.3505 Q1089.36 32.3505 1086.56 34.0519 Q1083.81 35.7533 1083.81 39.156 Q1083.81 41.7486 1085.79 43.2475 Q1087.78 44.7058 1093.78 46.0426 L1096.33 46.6097 Q1104.27 48.3111 1107.59 51.4303 Q1110.95 54.509 1110.95 60.0587 Q1110.95 66.3781 1105.93 70.0644 Q1100.95 73.7508 1092.2 73.7508 Q1088.55 73.7508 1084.58 73.0216 Q1080.65 72.3329 1076.28 70.9151 L1076.28 63.2184 Q1080.41 65.3654 1084.42 66.4591 Q1088.43 67.5124 1092.36 67.5124 Q1097.62 67.5124 1100.46 65.73 Q1103.29 63.9071 1103.29 60.6258 Q1103.29 57.5877 1101.23 55.9673 Q1099.2 54.3469 1092.28 52.8481 L1089.68 52.2405 Q1082.76 50.7821 1079.68 47.7845 Q1076.6 44.7463 1076.6 39.4801 Q1076.6 33.0797 1081.14 29.5959 Q1085.67 26.1121 1094.02 26.1121 Q1098.15 26.1121 1101.8 26.7198 Q1105.44 27.3274 1108.52 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1147.69 28.5427 L1147.69 35.5912 Q1144.53 33.9709 1141.13 33.1607 Q1137.73 32.3505 1134.08 32.3505 Q1128.53 32.3505 1125.74 34.0519 Q1122.98 35.7533 1122.98 39.156 Q1122.98 41.7486 1124.97 43.2475 Q1126.95 44.7058 1132.95 46.0426 L1135.5 46.6097 Q1143.44 48.3111 1146.76 51.4303 Q1150.12 54.509 1150.12 60.0587 Q1150.12 66.3781 1145.1 70.0644 Q1140.12 73.7508 1131.37 73.7508 Q1127.72 73.7508 1123.75 73.0216 Q1119.82 72.3329 1115.45 70.9151 L1115.45 63.2184 Q1119.58 65.3654 1123.59 66.4591 Q1127.6 67.5124 1131.53 67.5124 Q1136.8 67.5124 1139.63 65.73 Q1142.47 63.9071 1142.47 60.6258 Q1142.47 57.5877 1140.4 55.9673 Q1138.38 54.3469 1131.45 52.8481 L1128.86 52.2405 Q1121.93 50.7821 1118.85 47.7845 Q1115.77 44.7463 1115.77 39.4801 Q1115.77 33.0797 1120.31 29.5959 Q1124.85 26.1121 1133.19 26.1121 Q1137.32 26.1121 1140.97 26.7198 Q1144.61 27.3274 1147.69 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1213.24 28.5427 L1213.24 35.5912 Q1210.08 33.9709 1206.67 33.1607 Q1203.27 32.3505 1199.63 32.3505 Q1194.08 32.3505 1191.28 34.0519 Q1188.53 35.7533 1188.53 39.156 Q1188.53 41.7486 1190.51 43.2475 Q1192.5 44.7058 1198.49 46.0426 L1201.04 46.6097 Q1208.98 48.3111 1212.3 51.4303 Q1215.67 54.509 1215.67 60.0587 Q1215.67 66.3781 1210.64 70.0644 Q1205.66 73.7508 1196.91 73.7508 Q1193.27 73.7508 1189.3 73.0216 Q1185.37 72.3329 1180.99 70.9151 L1180.99 63.2184 Q1185.12 65.3654 1189.13 66.4591 Q1193.14 67.5124 1197.07 67.5124 Q1202.34 67.5124 1205.18 65.73 Q1208.01 63.9071 1208.01 60.6258 Q1208.01 57.5877 1205.94 55.9673 Q1203.92 54.3469 1196.99 52.8481 L1194.4 52.2405 Q1187.47 50.7821 1184.39 47.7845 Q1181.32 44.7463 1181.32 39.4801 Q1181.32 33.0797 1185.85 29.5959 Q1190.39 26.1121 1198.73 26.1121 Q1202.87 26.1121 1206.51 26.7198 Q1210.16 27.3274 1213.24 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1230.86 14.324 L1230.86 27.2059 L1246.21 27.2059 L1246.21 32.9987 L1230.86 32.9987 L1230.86 57.6282 Q1230.86 63.1779 1232.36 64.7578 Q1233.9 66.3376 1238.55 66.3376 L1246.21 66.3376 L1246.21 72.576 L1238.55 72.576 Q1229.93 72.576 1226.64 69.3758 Q1223.36 66.1351 1223.36 57.6282 L1223.36 32.9987 L1217.89 32.9987 L1217.89 27.2059 L1223.36 27.2059 L1223.36 14.324 L1230.86 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1280.32 34.1734 Q1279.06 33.4443 1277.56 33.1202 Q1276.11 32.7556 1274.32 32.7556 Q1268 32.7556 1264.6 36.8875 Q1261.24 40.9789 1261.24 48.6757 L1261.24 72.576 L1253.75 72.576 L1253.75 27.2059 L1261.24 27.2059 L1261.24 34.2544 Q1263.59 30.1225 1267.36 28.1376 Q1271.12 26.1121 1276.51 26.1121 Q1277.28 26.1121 1278.21 26.2337 Q1279.14 26.3147 1280.28 26.5172 L1280.32 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1308.76 49.7694 Q1299.72 49.7694 1296.24 51.8354 Q1292.76 53.9013 1292.76 58.8839 Q1292.76 62.8538 1295.35 65.2034 Q1297.98 67.5124 1302.48 67.5124 Q1308.68 67.5124 1312.4 63.1374 Q1316.17 58.7219 1316.17 51.4303 L1316.17 49.7694 L1308.76 49.7694 M1323.62 46.6907 L1323.62 72.576 L1316.17 72.576 L1316.17 65.6895 Q1313.62 69.8214 1309.81 71.8063 Q1306 73.7508 1300.49 73.7508 Q1293.53 73.7508 1289.39 69.8619 Q1285.3 65.9325 1285.3 59.3701 Q1285.3 51.7138 1290.41 47.825 Q1295.55 43.9361 1305.72 43.9361 L1316.17 43.9361 L1316.17 43.2069 Q1316.17 38.0623 1312.77 35.2672 Q1309.4 32.4315 1303.29 32.4315 Q1299.4 32.4315 1295.71 33.3632 Q1292.03 34.295 1288.62 36.1584 L1288.62 29.2718 Q1292.72 27.692 1296.56 26.9223 Q1300.41 26.1121 1304.06 26.1121 Q1313.9 26.1121 1318.76 31.2163 Q1323.62 36.3204 1323.62 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1331.44 27.2059 L1338.9 27.2059 L1338.9 72.576 L1331.44 72.576 L1331.44 27.2059 M1331.44 9.54393 L1338.9 9.54393 L1338.9 18.9825 L1331.44 18.9825 L1331.44 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1384.43 45.1919 L1384.43 72.576 L1376.97 72.576 L1376.97 45.4349 Q1376.97 38.994 1374.46 35.7938 Q1371.95 32.5936 1366.93 32.5936 Q1360.89 32.5936 1357.41 36.4419 Q1353.92 40.2903 1353.92 46.9338 L1353.92 72.576 L1346.43 72.576 L1346.43 27.2059 L1353.92 27.2059 L1353.92 34.2544 Q1356.6 30.163 1360.2 28.1376 Q1363.85 26.1121 1368.59 26.1121 Q1376.41 26.1121 1380.42 30.9732 Q1384.43 35.7938 1384.43 45.1919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1451.27 28.9478 L1451.27 35.9153 Q1448.11 34.1734 1444.91 33.3227 Q1441.75 32.4315 1438.51 32.4315 Q1431.26 32.4315 1427.25 37.0496 Q1423.24 41.6271 1423.24 49.9314 Q1423.24 58.2358 1427.25 62.8538 Q1431.26 67.4314 1438.51 67.4314 Q1441.75 67.4314 1444.91 66.5807 Q1448.11 65.6895 1451.27 63.9476 L1451.27 70.8341 Q1448.15 72.2924 1444.79 73.0216 Q1441.46 73.7508 1437.7 73.7508 Q1427.45 73.7508 1421.41 67.3098 Q1415.38 60.8689 1415.38 49.9314 Q1415.38 38.832 1421.45 32.472 Q1427.57 26.1121 1438.18 26.1121 Q1441.63 26.1121 1444.91 26.8413 Q1448.19 27.5299 1451.27 28.9478 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1458.32 54.671 L1458.32 27.2059 L1465.77 27.2059 L1465.77 54.3874 Q1465.77 60.8284 1468.28 64.0691 Q1470.79 67.2693 1475.82 67.2693 Q1481.85 67.2693 1485.34 63.421 Q1488.86 59.5726 1488.86 52.9291 L1488.86 27.2059 L1496.31 27.2059 L1496.31 72.576 L1488.86 72.576 L1488.86 65.6084 Q1486.15 69.7404 1482.54 71.7658 Q1478.98 73.7508 1474.24 73.7508 Q1466.42 73.7508 1462.37 68.8897 Q1458.32 64.0286 1458.32 54.671 M1477.07 26.1121 L1477.07 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1530.42 34.1734 Q1529.17 33.4443 1527.67 33.1202 Q1526.21 32.7556 1524.43 32.7556 Q1518.11 32.7556 1514.7 36.8875 Q1511.34 40.9789 1511.34 48.6757 L1511.34 72.576 L1503.85 72.576 L1503.85 27.2059 L1511.34 27.2059 L1511.34 34.2544 Q1513.69 30.1225 1517.46 28.1376 Q1521.23 26.1121 1526.61 26.1121 Q1527.38 26.1121 1528.32 26.2337 Q1529.25 26.3147 1530.38 26.5172 L1530.42 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1532.89 27.2059 L1540.79 27.2059 L1554.97 65.2844 L1569.15 27.2059 L1577.05 27.2059 L1560.03 72.576 L1549.91 72.576 L1532.89 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M 0 0 M1623.67 48.0275 L1623.67 51.6733 L1589.4 51.6733 Q1589.89 59.3701 1594.02 63.421 Q1598.19 67.4314 1605.61 67.4314 Q1609.9 67.4314 1613.91 66.3781 Q1617.96 65.3249 1621.93 63.2184 L1621.93 70.267 Q1617.92 71.9684 1613.71 72.8596 Q1609.5 73.7508 1605.16 73.7508 Q1594.3 73.7508 1587.94 67.4314 Q1581.63 61.1119 1581.63 50.3365 Q1581.63 39.1965 1587.62 32.6746 Q1593.66 26.1121 1603.87 26.1121 Q1613.02 26.1121 1618.33 32.0264 Q1623.67 37.9003 1623.67 48.0275 M1616.22 45.84 Q1616.14 39.7232 1612.78 36.0774 Q1609.46 32.4315 1603.95 32.4315 Q1597.71 32.4315 1593.94 35.9558 Q1590.21 39.4801 1589.65 45.8805 L1616.22 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip742)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
       "  259.533,1435.94 310.023,1404.34 353.333,1377.26 391.339,1353.48 425.802,1331.9 457.894,1311.79 488.386,1292.69 517.799,1274.25 546.484,1256.27 574.677,1238.59 \n",
       "  602.54,1221.12 630.181,1203.79 657.673,1186.55 685.064,1169.37 712.389,1152.23 739.669,1135.13 766.921,1118.03 794.154,1100.96 821.375,1083.88 848.588,1066.82 \n",
       "  875.798,1049.75 903.006,1032.69 930.213,1015.62 957.42,998.561 984.629,981.497 1011.84,964.432 1039.05,947.366 1066.26,930.299 1093.48,913.231 1120.7,896.161 \n",
       "  1147.92,879.09 1175.14,862.018 1202.36,844.945 1229.59,827.87 1256.81,810.794 1284.04,793.717 1311.27,776.638 1338.51,759.559 1365.74,742.478 1392.98,725.396 \n",
       "  1420.22,708.313 1447.46,691.228 1474.7,674.143 1501.95,657.056 1529.2,639.965 1556.45,622.875 1583.62,605.834 1610.83,588.772 1638.05,571.7 1665.27,554.624 \n",
       "  1692.51,537.544 1719.74,520.462 1746.99,503.377 1774.26,486.273 1801.04,469.481 1828.32,452.366 1855.6,435.259 1882.86,418.163 1910.12,401.068 1937.38,383.972 \n",
       "  1964.63,366.877 1991.89,349.781 2019.15,332.685 2046.41,315.588 2073.68,298.49 2100.94,281.392 2128.2,264.294 2155.47,247.195 2182.73,230.095 2210,212.994 \n",
       "  2237.27,195.893 2264.53,178.792 2291.79,161.699 1957.59,382.123 1462.48,685.52 1237.98,825.425 1060.7,936.084 923.317,1021.79 818.045,1087.46 737.323,1137.82 \n",
       "  675.415,1176.44 627.935,1206.06 591.521,1228.78 563.592,1246.2 542.172,1259.56 525.743,1269.81 513.143,1277.67 503.479,1283.7 496.066,1288.33 490.381,1291.87 \n",
       "  486.02,1294.59 482.675,1296.68 480.109,1298.28 478.141,1299.51 476.631,1300.45 475.472,1301.17 474.584,1301.73 473.902,1302.15 473.378,1302.48 \n",
       "  \"/>\n",
       "</svg>\n"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "plotStressStrainTroughTimeSteps(name,100)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Julia 1.5.2",
   "language": "julia",
   "name": "julia-1.5"
  },
  "language_info": {
   "file_extension": ".jl",
   "mimetype": "application/julia",
   "name": "julia",
   "version": "1.5.2"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 2
}